title |
---|
YAML Spec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" See runtime/defaults.vim | |
" vim 8.0+ adds runtime/defaults.vim that gets loaded if there is no .vimrc | |
set history=200 | |
set scrolloff=5 | |
set incsearch | |
set nrformats-=octal | |
" vim-sensible settings that work in IdeaVim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Net; | |
using System.Net.NetworkInformation; | |
using System.Net.Sockets; | |
using System.Text; | |
namespace UdpTest | |
{ | |
internal class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Count of .cs.meta files. Prefab, scene and asset file counts can be inferred from file lists | |
# Yeah, this is ugly. Don't care, you're only going to run it once | |
Write-Output "*.cs.meta: $((Get-ChildItem -recurse -filter *.cs.meta).Count)" | |
# Individual sizes of .unity, .prefab and .asset files | |
$results = Get-ChildItem -recurse | where {$_.extension -in ".unity", ".prefab", ".asset"} | Select-Object Name, Extension, Length | |
$results | Sort-Object -Property Extension | Out-Host | |
# | Out-File $destination |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Microsoft Visual Studio Solution File, Format Version 12.00 | |
# Visual Studio 2013 | |
VisualStudioVersion = 12.0.0.0 | |
MinimumVisualStudioVersion = 10.0.0.1 | |
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Whatever", "Whatever\Whatever.xproj", "{A2B3B3E1-6D88-4BF8-A709-4F2F3296E21E}" | |
EndProject | |
Global | |
GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
Debug|Any CPU = Debug|Any CPU |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace CyclomaticComplexityTest | |
{ | |
class Result | |
{ |
I hereby claim:
- I am citizenmatt on github.
- I am citizenmatt (https://keybase.io/citizenmatt) on keybase.
- I have a public key ASAtfaQASdAEkt3Is_SoaicG6Ws2-pcbM_VWR5yFATcx4wo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<!-- For some reason, msbuild will sometimes duplicate all references in @(ReferencePath), | |
which, given a particularly meaty nuget package (*cough*JetBrains.ReSharper.SDK*cough*), | |
can overwhelm the command line. This little hack will de-duplicate references to | |
reduce the pressure, but it's still going to hurt at some point... | |
I'd really like to figure out why msbuild is duplicating. Given a simple test with | |
just e.g. nunit, it works as expected. Perhaps it's something to do with the ReSharper | |
SDK nuget, but I can't see it --> | |
<PropertyGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Restoring build tools... | |
Restoring all package dependencies... | |
Restoring all package dependencies... | |
C:\Users\matt\Code\forks\GitHub\dotnet\corefx\packages\Microsoft.DotNet.BuildTools.1.0.22-prerelease\lib\packageresolve.targets(25,5): warning : Unable to resolve the assets of System.Runtime: Couldn't find a matching group [C:\Users\matt\Code\forks\GitHub\dotnet\corefx\src\Microsoft.Win32.Primitives\src\Microsoft.Win32.Primitives.csproj] | |
C:\Users\matt\Code\forks\GitHub\dotnet\corefx\packages\Microsoft.DotNet.BuildTools.1.0.22-prerelease\lib\packageresolve.targets(25,5): warning : Unable to resolve the assets of System.Runtime.InteropServices: Couldn't find a matching group [C:\Users\matt\Code\forks\GitHub\dotnet\corefx\src\Microsoft.Win32.Primitives\src\Microsoft.Win32.Primitives.csproj] | |
C:\Users\matt\Code\forks\GitHub\dotnet\corefx\packages\Microsoft.DotNet.BuildTools.1.0.22-prerelease\lib\packageresolve.targets(25,5): warning : Unable to resolve the assets of System.Resources.ResourceManager: Couldn't |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | |
<metadata> | |
<id>SpecsFor.Templates</id> | |
<title>SpecsFor File & Live Templates</title> | |
<version>2.0.0</version> | |
<authors>Matt Honeycutt</authors> | |
<owners>Matt Honeycutt</owners> | |
<licenseUrl>https://github.com/MattHoneycutt/SpecsFor/blob/master/LICENSE.md</licenseUrl> | |
<projectUrl>http://specsfor.com/</projectUrl> |
NewerOlder