I hereby claim:
- I am hmemcpy on github.
- I am hmemcpy (https://keybase.io/hmemcpy) on keybase.
- I have a public key whose fingerprint is 84D6 40BB 0374 D721 2744 9731 45E3 7E44 9CA7 AA0D
To claim this, I am signing this object:
| // ReSharper IntelliJ keybindings for Visual Studio Code | |
| // This is a work in progress... | |
| [ | |
| { "key": "ctrl+b", "command": "editor.action.goToDeclaration", | |
| "when": "editorTextFocus" }, | |
| { "key": "alt+f7", "command": "editor.action.referenceSearch.trigger", | |
| "when": "editorTextFocus" } | |
| ] |
I hereby claim:
To claim this, I am signing this object:
Here's how to disable the package that is responsible for loading the Git source control support in Visual Studio. Use at your own risk!
devenv.exe in you Visual Studio's Common7\IDE (you'll need elevation for this)[$RootKey$\Packages\{7fe30a77-37f9-4cf2-83dd-96b207028e1b}]
[$RootKey$\SourceControlProviders\{11b8e6d7-c08b-4385-b321-321078cdd1f8}]
devenv /updateconfigurationWhat am I doing wrong here?
var ns = XNamespace.Xmlns + "guid";
var doc = new XDocument(
new XElement("root",
new XAttribute(ns, "Guid"),
new XElement(ns + "MyValue", "{4258b6f1-2c60-4723-8d99-a458d05104b6}")));
// doc.ToString() throws an exception: Prefix "xmlns" is reserved for use by XML.
| CitizenMatt PreviewTab build 1.2.0 on 2015-08-07 09:38:44Z. | |
| ConfigureAwaitChecker v9 build 0.4.0.1 on 2015-08-07 09:38:44Z. | |
| EtherealCode ReSpeller build 4.1.9.0 on 2015-08-07 09:38:44Z. | |
| EtherealCode ReSpellerPro build 4.1.9.0 on 2015-08-07 09:38:44Z. | |
| JetBrains Mnemonics build 1.1.1 on 2015-08-07 09:38:44Z. | |
| JLebosquain EnhancedTooltip build 2.3.1 on 2015-08-07 09:38:44Z. | |
| JoarOyen ReSharper.LiveTemplates build 2.0.1.0 on 2015-08-07 09:38:44Z. | |
| ReSharper AgentMulder build 1.2.0 on 2015-08-07 09:38:44Z. | |
| ReSharper HeapView.R90 build 0.9.7 on 2015-08-07 09:38:44Z. | |
| ReSharper Postfix.R90 build 2.1.1 on 2015-08-07 09:38:44Z. |
| let unionCases<'a> = | |
| FSharpType.GetUnionCases(typeof<'a>) | |
| |> Array.map (fun x -> FSharpValue.MakeUnion(x, [||]) :?> 'a) | |
| |> Array.toList | |
| let deck : Deck = | |
| (unionCases<Suit>, unionCases<Rank>) ||> cartesianProduct |
| ## Ignore Visual Studio temporary files, build results, and | |
| ## files generated by popular Visual Studio add-ons. | |
| # User-specific files | |
| *.suo | |
| *.user | |
| *.userosscache | |
| *.sln.docstates | |
| # User-specific files (MonoDevelop/Xamarin Studio) |
I've taken a bunch of RAMDisk solutions from this 3year old article, and tried them on my own machine (Ivy Bridge i7/16GB RAM).
Using Crystal Disk Mark with 50MiB files on 1GB RAMDisk images, formatted with FAT32. Here are my results (yours may vary):
Note: 14 day trial
(in no particular order)
| #!/bin/sh | |
| # Shrinks the PDF by compressing images to JPEG using highest quality | |
| # Original code from http://www.alfredklomp.com/programming/shrinkpdf/ | |
| # Modified with command taken from https://stackoverflow.com/questions/40849325/ghostscript-pdfwrite-specify-jpeg-quality | |
| shrink () | |
| { | |
| echo "Converting $IFILE > $OFILE" |