start
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
start [2009/01/14 23:00] – stephen | start [2024/08/24 01:22] (current) – [Running with Rubix] stephen | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Stephen' | ====== Stephen' | ||
- | * [[Private: | + | Welcome to Stephen' |
- | * [[Terminology]] | + | |
- | * [[Code Snippets]] | + | |
- | * [[Keyboard Shortcuts]] | + | |
- | * [[General IT]] | + | |
- | * [[Reading List]] | + | |
- | * [[Networking]] | + | |
- | * [[Essential Software]] | + | |
- | * [[Fractals]] | + | |
- | * [[Regular Expression Reference]] | + | |
- | ===== Code Snippets | + | ====== Stephen' |
- | {{topic> | + | This is a collection of random stuff I want to record for future reference. Probably not much use to anyone else. |
- | ===== Reference | + | ===== .NET Logging Levels |
- | {{topic> | + | Trace = 0, Debug = 1, Information = 2, Warning = 3, Error = 4, Critical = 5, and None = 6. |
- | ===== Settings | + | ===== Running with Rubix ===== |
- | {{topic> | + | Rubix and I did approximately 1,547 runs and covered 16,347kms together. First run was 2015-08-24, last was around 2024-07-24. |
- | ===== Christchurch City Council | + | ===== Restart Garmin Forerunner 235 ===== |
- | {{topic> | + | Hold down the ☀️ button for ages. Watch will power off. Press it again to power on. Settings etc. are not lost. |
- | ===== Info Archive | + | ===== Set Environment Variable in Unit Test ===== |
- | Older stuff that is probably useless. | + | Create a '' |
- | {{topic>old_stuff}} | + | <code xml> |
+ | <?xml version=" | ||
+ | <!-- File name extension must be .runsettings --> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <!-- List of environment variables we want to set--> | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </code> | ||
+ | Getting Visual Studio to use the file is a bit tricky. Try Test -> Configure Test Settings. You may need the ' | ||
- | ===== Archived Info ===== | + | To test, debug and stop at a breakpoint. Run '' |
- | Older stuff that is probably useless. | + | ===== Direct Object Creation with Ninject ===== |
- | {{topic> | + | This will only work inside an ASP.NET project. |
- | ===== Running Goal ===== | + | <code c#> |
+ | using System.Web.Mvc; | ||
- | ^ 10km ^^^^^^^^^^^ | + | private ILog _log; |
- | ^ Attempt One ^ Run 1 | 2009-01-12, Pass, 1:02 ^ Run 2 | (Pending) ^ Run 3 | (Pending) ^ Run 4 | (Pending) ^ Run 5 | (Pending) | | + | private ILog Log => _log ?? (_log = (ILog)DependencyResolver.Current.GetService(typeof(ILog))); |
+ | </ | ||
+ | ===== Azure Virtual Machine Windows Activation Problems ===== | ||
+ | Running this worked on my Azure Dev VM: | ||
+ | <code powershell> | ||
+ | ForEach-Object { Invoke-Expression " | ||
+ | </ | ||
+ | More details at [[https:// | ||
+ | |||
+ | ===== Log all TypeScript functions ===== | ||
+ | |||
+ | Search: ''< | ||
+ | |||
+ | Replace: ''< | ||
+ | |||
+ | ===== Stupid Roslyn Error ===== | ||
+ | |||
+ | < | ||
+ | Could not find a part of the path ' | ||
+ | </ | ||
+ | |||
+ | Run this in the Package Manager Console: | ||
+ | < | ||
+ | Update-Package Microsoft.CodeDom.Providers.DotNetCompilerPlatform -r | ||
+ | </ | ||
+ | |||
+ | ===== Use PowerShellGet behind a corporate proxy ===== | ||
+ | |||
+ | <code powershell> | ||
+ | notepad $PROFILE | ||
+ | </ | ||
+ | |||
+ | Add this to the top: | ||
+ | <code powershell> | ||
+ | [system.net.webrequest]:: | ||
+ | |||
+ | # To use your current Windows account to log on to the proxy: | ||
+ | [system.net.webrequest]:: | ||
+ | |||
+ | # To use a different Windows account: | ||
+ | $Username=" | ||
+ | $Password=" | ||
+ | [system.net.webrequest]:: | ||
+ | |||
+ | [system.net.webrequest]:: | ||
+ | </ | ||
+ | |||
+ | Restart your PowerShell session. Fix up the repository source: | ||
+ | <code powershell> | ||
+ | Register-PSRepository -Default | ||
+ | </ | ||
+ | |||
+ | Check you have a repository: | ||
+ | <code powershell> | ||
+ | Get-PSRepository | ||
+ | </ | ||
+ | |||
+ | Should get '' | ||
+ | |||
+ | |||
+ | ===== Add the IIS Development certificate to the Trusted Root Certificates ===== | ||
+ | |||
+ | - Open MMC. | ||
+ | - Add the Certificates snap-in for ' | ||
+ | - Console Root > Certificates (Local Computer) > Personal > Certificates. | ||
+ | - localhost (IIS Express Development Certificate) > Right click > Copy. | ||
+ | - Console Root > Certificates (Local Computer) > Trusted Root Certification Authorities > Certificates. | ||
+ | - Actions (right panel) > More Actions > Paste | ||
+ | |||
+ | ===== Kill Chrome instances from automated testing ===== | ||
+ | |||
+ | <code powershell> | ||
+ | (Get-WmiObject Win32_Process -Filter "name = ' | ||
+ | </ | ||
+ | |||
+ | And if you want to get rid of the Chrome driver as well (which is always a good idea): | ||
+ | |||
+ | <code powershell> | ||
+ | (Get-WmiObject Win32_Process -Filter "name = ' | ||
+ | </ | ||
+ | |||
+ | ===== Faking DateTime.Now() ===== | ||
+ | |||
+ | <code c#> | ||
+ | using (ShimsContext.Create()) | ||
+ | { | ||
+ | System.Fakes.ShimDateTime.NowGet = () => new DateTime(2019, | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Chrome Dev Tools - Show only bad network requests ===== | ||
+ | |||
+ | Copy and paste the below into the filter. | ||
+ | |||
+ | '' | ||
+ | |||
+ | ===== Unit testing - test a method on a property is executed ===== | ||
+ | |||
+ | Requires the [[https:// | ||
+ | |||
+ | <code c#> | ||
+ | [TestMethod] | ||
+ | public void MealViewModel_Banana_EatMethodIsCalled_DrinkIsNot() | ||
+ | { | ||
+ | IUtensil spoon = new Spoon(); | ||
+ | var mockBanana = new Mock< | ||
+ | var test = new MealViewModel(); | ||
+ | testMeal.Banana = mockBanana.Object; | ||
+ | |||
+ | // Calling Eat() on the meal should also call Eat() on the banana. | ||
+ | testMeal.Eat(spoon); | ||
+ | |||
+ | mockBanana.Verify(banana => banana.Eat | ||
+ | mockBanana.Verify(banana => banana.Drink(It.IsAny< | ||
+ | // Not sure if an interface will work here -------^^^^^^^^ | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Visual Studio can't open CSHTML files ===== | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | Fix it thusly: | ||
+ | |||
+ | - Close Visual Studio. | ||
+ | - Delete everything in '' | ||
+ | - Open Visual Studio. | ||
+ | |||
+ | ===== Append randomness to start of a filename ===== | ||
+ | |||
+ | <code powershell> | ||
+ | Get-ChildItem *.mp3 | ForEach-Object{Rename-Item $_ -NewName " | ||
+ | </ | ||
+ | |||
+ | ===== Why did Windows wake from sleep? ===== | ||
+ | |||
+ | Run this and find out: | ||
+ | |||
+ | < | ||
+ | |||
+ | ===== HTML Sanitation ===== | ||
+ | |||
+ | Add the ' | ||
+ | |||
+ | <code c#> | ||
+ | var input = " | ||
+ | |||
+ | var output = Microsoft.Security.Application.Sanitizer.GetSafeHtmlFragment(input); | ||
+ | // fjkdlsjf < | ||
+ | </ | ||
+ | |||
+ | ===== Setting up a Database User ===== | ||
+ | |||
+ | - [SQL Server Management] Right click the **server**, Properties. | ||
+ | - [SQL Server Management, Server Properties] Security -> Server Authentication -> SQL Server and Windows Authentication mode | ||
+ | - [SQL Server Management, Server Properties] Ok | ||
+ | - [SQL Server Management] Right click (Server) -> Security -> Logins, New Login... | ||
+ | - [SQL Server Management, Login - New] General -> Fill in details. | ||
+ | - [SQL Server Management, Login - New] Server Roles -> public only. | ||
+ | - [SQL Server Management, Login - New] Ok | ||
+ | - [SQL Server Management] Right click (Server) -> Databases -> (Database) -> Security -> Users, New User... | ||
+ | - [SQL Server Management, Database User - New] General -> Fill in details. | ||
+ | - [SQL Server Management, Database User - New] Membership -> Fill in details. | ||
+ | - [SQL Server Management, Database User - New] Ok. | ||
+ | |||
+ | ===== Reading Event Logs with PowerShell ===== | ||
+ | |||
+ | <code powershell> | ||
+ | # Logs that contain ' | ||
+ | Get-EventLog Application -Source M.pad -newest 20 -message " | ||
+ | |||
+ | # Logs that do not contain ' | ||
+ | Get-EventLog Application -Source M.pad -newest 2000 | Where { $_.Message -notmatch ' | ||
+ | </ | ||
+ | |||
+ | ===== Unit Testing Private Methods ===== | ||
+ | |||
+ | Ignoring the argument as to whether a private method //should// be unit tested... | ||
+ | |||
+ | <code c#> | ||
+ | using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
+ | |||
+ | public class Banana { | ||
+ | private int _count; | ||
+ | private static int Add(int n1, int n2) { | ||
+ | return n1 + n2; | ||
+ | } | ||
+ | |||
+ | private int Inc() { | ||
+ | _count = Add(_count, 2); | ||
+ | return _count; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | class Program { | ||
+ | static void Main(string[] args) { | ||
+ | PrivateType bananaTest1 = new PrivateType(typeof(Banana)); | ||
+ | int result1 = (int)bananaTest1.InvokeStatic(" | ||
+ | |||
+ | PrivateObject bananaTest2 = new PrivateObject(new Banana()); | ||
+ | int result2 = (int)bananaTest2.Invoke(" | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Enable external web requests (Win8) ===== | ||
+ | |||
+ | - Open ' | ||
+ | - Add an Inbound Rule | ||
+ | - Local port 80 (and 443 if HTTPS is required). | ||
+ | |||
+ | ===== When HTTPS requests always return 404s ===== | ||
+ | |||
+ | - [IIS Manager] Select the //Default Web Site//. | ||
+ | - [IIS Manager] On the right, under Actions, Edit site, select // | ||
+ | - [IIS Manager, Site Bindings] There should be two entries, http & https. Select //https//, select //Edit...// | ||
+ | - [IIS Manager, Edit Site Binding] SSL certificate should be selected (e.g. PKS1684.corp.ps.co.nz). | ||
+ | |||
+ | ===== Poor Man's Dependency Injection ===== | ||
+ | |||
+ | Chris used an abstract base class. The following should be adapted for an interface, if possible. | ||
+ | |||
+ | <code c#> | ||
+ | /* | ||
+ | < | ||
+ | <add key=" | ||
+ | </ | ||
+ | */ | ||
+ | public abstract class DefinitionService | ||
+ | { | ||
+ | public abstract List< | ||
+ | // ... | ||
+ | |||
+ | public static DefinitionService Current | ||
+ | { | ||
+ | get | ||
+ | { | ||
+ | var activeServiceName = WebConfigurationManager.AppSettings[" | ||
+ | if (string.IsNullOrWhiteSpace(activeServiceName)) | ||
+ | throw new ConfigurationErrorsException(" | ||
+ | |||
+ | var serviceType = typeof(DefinitionService).Assembly.GetType(activeServiceName); | ||
+ | if (serviceType == null || !typeof(DefinitionService).IsAssignableFrom(serviceType)) | ||
+ | throw new ConfigurationErrorsException(" | ||
+ | |||
+ | var defaultConstructor = serviceType.GetConstructor(Type.EmptyTypes); | ||
+ | if (defaultConstructor == null) | ||
+ | throw new ConfigurationErrorsException(" | ||
+ | |||
+ | return (DefinitionService)defaultConstructor.Invoke(null); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== How to view LINQ Generated SQL statements ===== | ||
+ | |||
+ | <code c#> | ||
+ | ((System.Data.Objects.ObjectQuery)myQuery).ToTraceString() | ||
+ | </ | ||
+ | |||
+ | Or, if you want an extension method: | ||
+ | |||
+ | <code c#> | ||
+ | public static class IQueryableExtensions | ||
+ | { | ||
+ | public static string ToTraceString< | ||
+ | { | ||
+ | ObjectQuery< | ||
+ | | ||
+ | return oqt == null ? string.Empty : oqt.ToTraceString(); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Windows Azure Regional Response Times ===== | ||
+ | |||
+ | ^ Region ^ Free ^^ Standard ^^ | ||
+ | ^ ^ Mean ^ StdDev ^ Mean ^ StdDev ^ | ||
+ | | West US | 160.03 | 23.97 | 155.72 | 12.17 | | ||
+ | | East Asia | 163.13 | 22.12 | 159.67 | 13.76 | | ||
+ | | North Central US | 205.12 | 11.56 | 207.13 | 15.07 | | ||
+ | | East US | 212.42 | 9.47 | 213.05 | 12.15 | | ||
+ | | North Europe | ||
+ | | West Europe | ||
+ | |||
+ | [[http:// | ||
+ | |||
+ | Just use **Australia East**. | ||
+ | ===== Unget Files from TFS ===== | ||
+ | |||
+ | - [Visual Studio] Open Source Control Explorer. | ||
+ | - [Visual Studio - Source Control Explorer] Right click the branch or folder to be ungetted. | ||
+ | - [Visual Studio - Source Control Explorer] Select 'Get Specific Version...' | ||
+ | - [Visual Studio - Get dialogue] Type: Changeset. | ||
+ | - [Visual Studio - Get dialogue] Changeset: 1. | ||
+ | - [Visual Studio - Get dialogue] Click Get. Bye bye local files and the branch / folder is updated correctly in the Source Control Explorer. | ||
+ | |||
+ | ===== Caches along a trail ===== | ||
+ | |||
+ | - Open this page in a **new** browser window. | ||
+ | - Setup a [[http:// | ||
+ | - Create a new or reuse an existing [[http:// | ||
+ | - Create a run-once pocket query based on the route. | ||
+ | - Sort the results by favourites and open each in separate browser tab. | ||
+ | - Send each one to c:geo. | ||
+ | - Bookmark the first one and add it to the list. | ||
+ | - Bookmark all the rest. | ||
+ | - Go back to the [[http:// | ||
+ | - Check lots of boxes and Use the " | ||
+ | - Go to [[http:// | ||
+ | - Wait for email. | ||
+ | - Upload attached GPX file to phone. | ||
+ | - Import caches into Locus. | ||
+ | - Use [[http:// | ||
+ | - Create new map and upload GPX file. | ||
+ | |||
+ | To print: | ||
+ | |||
+ | - Open uMap page in Firefox. | ||
+ | - F11 to full screen. | ||
+ | - Ctrl + PrnScn (or whatever it is). | ||
+ | - Open Paint.NET, paste & print. | ||
+ | - Untick 'Fit picture to frame' | ||
+ | ===== How to enable Service Tracing ===== | ||
+ | |||
+ | - [Visual Studio] Tools -> WCF Service Configuration Editor | ||
+ | - [Microsoft Service Configuration Editor] File -> Open -> Config File... | ||
+ | - [Microsoft Service Configuration Editor] (Open the Web.config file) | ||
+ | - [Microsoft Service Configuration Editor] Diagnostics (not a subnode) | ||
+ | - [Microsoft Service Configuration Editor] Click Enable MessageLogging | ||
+ | - [Microsoft Service Configuration Editor] Click Enable Tracing | ||
+ | - [Microsoft Service Configuration Editor] File -> Save | ||
+ | - [] Rerun app and reproduce error or whatever. | ||
+ | - [Windows Explorer] Open directory with Web.config in it. | ||
+ | - [Windows Explorer] Double click Web_messages.svclog and Web_tracelog.svclog. | ||
+ | |||
+ | ===== MVC Date binding ===== | ||
+ | |||
+ | <code c#> | ||
+ | [DataType(DataType.Date)] | ||
+ | [DisplayName(" | ||
+ | [DisplayFormat(DataFormatString = " | ||
+ | [Date(ErrorMessage = " | ||
+ | public DateTime StartDate { get; set; } | ||
+ | </ | ||
+ | |||
+ | ===== Get a connection string using a GUI ===== | ||
+ | |||
+ | - Minimise all windows. | ||
+ | - On the desktop, create a new file and name it ' | ||
+ | - Double click it. | ||
+ | - Select Provider and connection settings and play with them until they work. | ||
+ | - Click ok. | ||
+ | - Open ' | ||
+ | |||
+ | ===== Delete a TFS Workspace that does not exist ===== | ||
+ | |||
+ | Visual Studio can sometimes get a bit confused about which TFS workspaces exist and which don't. Sort it out with the Visual Studio Command Prompt. | ||
+ | |||
+ | Figure out what workspaces really exist: | ||
+ | < | ||
+ | tf workspaces / | ||
+ | </ | ||
+ | |||
+ | Well and truly delete the motherfucker: | ||
+ | < | ||
+ | tf workspace /delete workspacename | ||
+ | </ | ||
+ | |||
+ | If '' | ||
+ | < | ||
+ | tf workspaces / | ||
+ | </ | ||
+ | |||
+ | ===== Rob Connery' | ||
+ | |||
+ | ^ Library ^ Conceptual Density ^ Googles/ | ||
+ | | Knockout | Fairly Low | 6 - 8 | 20, 25, 50, 90 | 80% of the time | | ||
+ | | Backbone | High | 25 - 30 | 50, 30, 20, 20 | | | ||
+ | | Angular | Medium/ High | 10 - 20 | 10, 20, 70, 90 | Simple JS App | | ||
+ | | Ember | Extreme | *² | 90, 25, 20, 10 | Big JS App | | ||
+ | |||
+ | ¹ Simple, Moderate, Advanced, Enterprise\\ | ||
+ | ² Gave up googling, api changes often, lots of out-of-date info on web. | ||
+ | |||
+ | ===== Conditional Attributes in Razor ===== | ||
+ | |||
+ | <code html> | ||
+ | <div @(item.Selected ? string.Empty : " | ||
+ | </ | ||
+ | |||
+ | Note that Razor is quite fussy about the format of the '' | ||
+ | |||
+ | A less nice method that also works is: | ||
+ | |||
+ | <code html> | ||
+ | <div class=" | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== ASP.NET MVC Security Check List ===== | ||
+ | |||
+ | See [[asp_net_mvc_security_check_list|ASP.NET MVC Security Check List]]. | ||
+ | |||
+ | ===== Problem Steps Recorder ===== | ||
+ | |||
+ | On Windows 7 and above: | ||
+ | |||
+ | - Start button. | ||
+ | - Type '' | ||
+ | - Click ' | ||
+ | - Be amazed. | ||
+ | |||
+ | ===== Updating NuGet VS2010 WinXP ===== | ||
+ | |||
+ | - Download '' | ||
+ | - Uninstall NuGet from within Visual Studio. | ||
+ | - Close Visual Studio. | ||
+ | - Run the '' | ||
+ | |||
+ | ===== Log Parser Examples ===== | ||
+ | |||
+ | Search the application event log on the local machine: | ||
+ | < | ||
+ | LogParser.exe -i:evt -rtp:-1 " | ||
+ | </ | ||
+ | |||
+ | Search the standard three event logs on the local machine: | ||
+ | < | ||
+ | LogParser.exe -i:evt -rtp:-1 " | ||
+ | </ | ||
+ | |||
+ | Search the application event log on a remote machine (may take a while): | ||
+ | < | ||
+ | LogParser.exe -i:evt -rtp: | ||
+ | </ | ||
+ | |||
+ | The '' | ||
+ | |||
+ | ===== Batch Convert Image Format ===== | ||
+ | |||
+ | In a Powershell console: | ||
+ | |||
+ | <code powershell> | ||
+ | Get-Item *.jpg | ForEach-Object { magick convert $_ " | ||
+ | </ | ||
+ | |||
+ | This also works: | ||
+ | |||
+ | <code powershell> | ||
+ | Get-ChildItem ' | ||
+ | </ | ||
+ | |||
+ | For canvas prints through pixelpaint.co.nz, | ||
+ | |||
+ | <code powershell> | ||
+ | Get-ChildItem | Foreach { magick convert $_.FullName -quality 98 " | ||
+ | </ | ||
+ | |||
+ | For any that are still bigger than 15MB, decrease quality and / or size ('' | ||
+ | ===== Firefox Command Line Parameters ===== | ||
+ | |||
+ | | -ProfileManager | Starts Firefox with the Firefox Profile Manager. | | ||
+ | | -P " | ||
+ | | -safe-mode | Starts Firefox in "Safe Mode" - useful when extensions go awry. | | ||
+ | | -no-remote | Permits multiple instances of Firefox using separate profiles. | | ||
+ | |||
+ | ===== Enabling NTLM Authentication (Single Sign-On) in Firefox ===== | ||
+ | |||
+ | - Open Firefox and type '' | ||
+ | - In the //Filter// field enter '' | ||
+ | - Set the value to a comma separated list of sites:< | ||
+ | |||
+ | ===== Binding a Drop Down to a Value That Might Not Exist ===== | ||
+ | |||
+ | How do I fix the following error: | ||
+ | |||
+ | < | ||
+ | |||
+ | - Remove the // | ||
+ | - In the code behind, add the following to the PreRender of the FormView:< | ||
+ | If EmployeeDetailsFormView.CurrentMode = FormViewMode.Edit Then | ||
+ | Dim Location_DropDownList As DropDownList = CType(EmployeeDetailsFormView.FindControl(" | ||
+ | |||
+ | Dim rowView As DataRowView = CType(EmployeeDetailsFormView.DataItem, | ||
+ | If IsNothing(rowView) Then Return ' Or perhaps throw an exception. | ||
+ | |||
+ | Dim locationId As String = rowView(" | ||
+ | |||
+ | If Not IsNothing(Location_DropDownList.Items.FindByValue(locationId)) Then | ||
+ | Location_DropDownList.SelectedValue = locationId | ||
+ | Else | ||
+ | ' TODO: Set the value to whatever it should be if there is no match. | ||
+ | Location_DropDownList.SelectedValue = " | ||
+ | End If | ||
+ | End If | ||
+ | End Sub</ | ||
+ | - Then add the following the ItemUpdating of the FormView:< | ||
+ | Dim Location_DropDownList As DropDownList = CType(EmployeeDetailsFormView.FindControl(" | ||
+ | |||
+ | e.NewValues(" | ||
+ | End Sub</ | ||
+ | |||
+ | ===== Breaking Excel VBA Project Passwords ===== | ||
+ | |||
+ | - Open the Excel file in a Hex Editor (XVI32 will do nicely). | ||
+ | - Search for the text string " | ||
+ | - Change it to " | ||
+ | - Save and close. | ||
+ | - Open in Excel. | ||
+ | - Open VBA project (Alt + F11) - ignore errors. | ||
+ | - Right click the project and select //Foo Properties...// | ||
+ | - Change the password and save. | ||
+ | |||
+ | ===== Running Unit Tests with Code Coverage ===== | ||
+ | |||
+ | ==== Create the Test Settings ==== | ||
+ | |||
+ | - In Visual Studio, from the main menu, select //Test// → //Edit Test Settings// → //Local (Local.testsettings)// | ||
+ | - [Test Settings] Select the //Save As// button. | ||
+ | - [Save As] Enter ' | ||
+ | - [Test Settings] Select //Data and Diagnostics// | ||
+ | - [Test Settings] Enable //Code Coverage//. | ||
+ | - [Test Settings] Double-click //Code Coverage//. | ||
+ | - [Code Coverage Detail] Select the assembly or assemblies that you wish to have code coverage for. Normally this would be the non-test assemblies. | ||
+ | - [Code Coverage Detail] Select OK. | ||
+ | - [Test Settings] Select //Apply// and then //Close//. | ||
+ | - [Save Dialog] Select //Yes//. | ||
+ | - Done. Test settings should be checked into source control. | ||
+ | ==== Running Unit Test with Code Coverage ==== | ||
+ | |||
+ | - In Visual Studio, from the main menu, select //Test// → //Select Active Test Settings// → //Local (CodeCoverage.testsettings)// | ||
+ | - Change the build configuration to **Debug**. | ||
+ | - From the main menu, select //Build// → // | ||
+ | - [Configuration Manager] Set the //Active Solution Configuration// | ||
+ | - [Configuration Manager] Select //Close//. | ||
+ | - If the target is signed, temporarily remove it. | ||
+ | - Open the project properties. | ||
+ | - Select the //Signing// tab. | ||
+ | - Uncheck the //Sign the assembly// check box. | ||
+ | - Save the project. | ||
+ | - Run the unit tests. | ||
+ | - Turn the Code Coverage Colouring on and off in the Code Coverage Results window. | ||
+ | |||
+ | ===== Converting a Web Site Project to a Web Application Project ===== | ||
+ | |||
+ | ...and maintaining version history. | ||
+ | |||
+ | - [SubVersion] Export the trunk to a temp directory. | ||
+ | * '' | ||
+ | - [Text Editor] In the temp solution, open the solution file. | ||
+ | * '' | ||
+ | - [Text Editor] Find the section that has Web Site Project. It will look something like:< | ||
+ | ProjectSection(WebsiteProperties) = preProject | ||
+ | ... | ||
+ | ProjectReferences = " | ||
+ | ... | ||
+ | EndProjectSection | ||
+ | EndProject | ||
+ | </ | ||
+ | - [Text Editor] Note down any project references for later. In the example above, the Web Site Project references '' | ||
+ | - [Text Editor] Delete the entire Web Site Project (from '' | ||
+ | - [Windows Explorer] In the temp solution, delete the entire Web Site Project directory | ||
+ | * '' | ||
+ | - [Visual Studio] Open the temp solution. | ||
+ | - [Visual Studio] Create a new ASP.NET Empty Web Application in the old Web Site Project directory. **Make sure it is the correct language (VB or C#)!** The language of new ASP.NET Empty Web Application **must** match the existing Web Site Project. | ||
+ | * C: | ||
+ | - [Visual Studio] Save and close. | ||
+ | - [SubVersion] Copy and rename to a branch. | ||
+ | * '' | ||
+ | - [Text Editor] In the branch solution, open the solution file. | ||
+ | * '' | ||
+ | - [Text Editor] Remove the Web Site Project and save. | ||
+ | - [Windows Explorer] Copy from the temp solution to the branch solution: | ||
+ | * (C#) '' | ||
+ | * (VB) '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | - [Text Editor] The Web.config in the branch solution probably does not need to be changed, but open both and check just in case. | ||
+ | * '' | ||
+ | * '' | ||
+ | - [Visual Studio] Open the branch solution. | ||
+ | - [Visual Studio] In the Solution Explorer, turn on Show All files. | ||
+ | - [Visual Studio] In the Web App project, include all the file and directories except the Bin and Obj directories. | ||
+ | - [Visual Studio] Right click the Web App project and select Manage NuGet Packages. | ||
+ | - [Visual Studio, Manage NuGet Packages dialog] If there is a message about restoring NuGet packages, do it. | ||
+ | - [Visual Studio] Add the project references noted down in step 4. | ||
+ | - [Visual Studio] Right click each '' | ||
+ | - [Visual Studio] Set the Web App project as the start up project, and set the appropriate start page. | ||
+ | - [Visual Studio] Cross fingers and run it. | ||
+ | |||
+ | ===== Click To Reveal Row ===== | ||
+ | |||
+ | <code html> | ||
+ | <script src=" | ||
+ | <script type=" | ||
+ | $(document).ready(function () { | ||
+ | $(" | ||
+ | $(this).next().toggle(); | ||
+ | |||
+ | if ($(this).next().is(': | ||
+ | $(this).addClass(' | ||
+ | else | ||
+ | $(this).removeClass(' | ||
+ | }); | ||
+ | }); | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <code html> | ||
+ | < | ||
+ | < | ||
+ | <table class=" | ||
+ | <tr class=" | ||
+ | < | ||
+ | ... | ||
+ | </ | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | FirstPageText=" | ||
+ | NextPageText=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | <tr class='< | ||
+ | < | ||
+ | ... | ||
+ | </ | ||
+ | <tr class=" | ||
+ | < | ||
+ | ... | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | <code vb> | ||
+ | Private _alternateRow As Boolean | ||
+ | Protected ReadOnly Property AlternatingGridRowClass() As String | ||
+ | Get | ||
+ | _alternateRow = Not _alternateRow | ||
+ | Return If(_alternateRow, | ||
+ | End Get | ||
+ | End Property | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Debug Update Parameters ===== | ||
+ | |||
+ | <code vb> | ||
+ | Protected Sub Foo_ObjectDataSource_Updating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs) _ | ||
+ | Handles Foo_ObjectDataSource.Updating | ||
+ | |||
+ | Dim iod As IOrderedDictionary = e.InputParameters | ||
+ | For Each de As DictionaryEntry In iod | ||
+ | System.Diagnostics.debug.print(de.Key & " | ||
+ | Next | ||
+ | End Sub | ||
+ | </ | ||
+ | |||
+ | ===== XhtmlConformance Breaks UpdatePanel ===== | ||
+ | |||
+ | ASP.NET' | ||
+ | |||
+ | <code xml> | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | Take it out of the '' | ||
+ | |||
+ | ===== Set Up VLC Remote ===== | ||
+ | |||
+ | With **administrator** privileges, edit the '' | ||
+ | |||
+ | < | ||
+ | ::/0 | ||
+ | 0.0.0.0/0 | ||
+ | </ | ||
+ | |||
+ | This will probably need to be done every time a new version of VLC is installed. | ||
+ | |||
+ | ===== Netcetera Internal Server Error ===== | ||
+ | |||
+ | {{:: | ||
+ | |||
+ | Probably caused by the '' | ||
+ | |||
+ | <code xml> | ||
+ | <section name=" | ||
+ | |||
+ | <section name=" | ||
+ | <section name=" | ||
+ | <section name=" | ||
+ | <section name=" | ||
+ | </ | ||
+ | |||
+ | Removing these from the '' |
start.1231974051.txt.gz · Last modified: 2017/01/01 19:52 (external edit)