Skip to content

Instantly share code, notes, and snippets.

@aburok
aburok / gist:b29f2002c283dac0c61e
Created March 25, 2015 09:45
Adding block to content area programatically
GetBlocks(aboutPage.TopLeftContentBox)
.Select(block => new ContentAreaItem()
{
ContentLink = ((IContent)block).ContentLink
})
.ToList()
.ForEach(cai => aboutPage.AdditionalContent.Items.Add(cai));
_contentRepository.Save(aboutPage, SaveAction.Publish);
@aburok
aburok / gist:b0037c5e53b6ad915f10
Created March 25, 2015 09:52
powershell Get n biggest files from directory ( without directories )
Get-ChildItem -Recures -Include *
| Where-Object { -not $_.PSIsContainer }
| Sort-Object Length -descending
| Select-Object -First 10
| Select Name, Length
-- OR --
gci -re -in *
| ?{-not $_.PSIsContainer}
@aburok
aburok / gist:7665c0206d26e6b4dd89
Created March 25, 2015 09:53
Powershell search files and echo full path
Get-ChildItem "C:\" -Recurse
| Where-Object {$_.extension -eq ".txt" }
| ForEach-Object { Write-Host $_.FullName }
-- OR --
gci "C:\" -re
| ? { $_.extension -eq ".txt" }
| % { echo $_.FullName }
@aburok
aburok / gist:26fe3e13766d06337ca7
Created March 25, 2015 09:53
Get last n lines of file , powershell, tail
Get-Content "path/to/file" | Select-Object -Last 10
OR
gc "path/to/file" | select -Last 10
@aburok
aburok / gist:c366d7cdb319b3a6252a
Created March 25, 2015 09:54
Get Directory Size
Get-ChildItem -Recurse | Measure-Object -Sum Length
OR
ls -r | measure -s Length
@aburok
aburok / vs_code_colors
Last active August 29, 2015 14:18
Visual Studio code colors
<UserSettings>
<ApplicationIdentity version="11.0"/>
<ToolsOptions>
<ToolsOptionsCategory name="Environment" RegisteredName="Environment"/>
</ToolsOptions>
<Category name="Environment_Group" RegisteredName="Environment_Group">
<Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package">
<PropertyValue name="Version">2</PropertyValue>
<FontsAndColors Version="2.0">
<Categories>
@aburok
aburok / _vsvimrc
Last active August 22, 2023 05:57
Visual Studio VsVim configuration file
" Ctrl + Alt + I - ReSharper generate file beside
" Ctrl + Alt + S - Resharper surrand with template
" File {{{
nmap zX :vsc Edit.UndoClose<CR>
nnoremap Q :vsc File.SaveSelectedItems<CR> :vsc File.Close<CR>
" }}}
" Build {{{
@aburok
aburok / _vimrc
Last active September 20, 2016 04:45
Vim common configuration for GVim and VsVim
augroup filetype_vim
autocmd!
autocmd FileType vim setlocal foldmethod=marker
augroup END
" Vim ESCAPE Combinations{{{
imap jj <esc>
imap <S-Space> <Esc>
vnoremap <S-Space> <Esc>
" }}}
@aburok
aburok / koparka
Created December 26, 2015 08:29
sketchyphysics koparka model
if frame < 1.00
@SlideBase = 1.00
@SlideBaseStep = 0.01
@RotBase = 0.5
@RotBaseStep = 0.002
@SliderArm1 = 1
@SliderArm1Step = 0.01
@aburok
aburok / SQLTables.sql
Created February 22, 2017 15:49
Generate c# const string class with SQL Server table and column names
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ output extension=".cs" #>
<#@ assembly name = "Microsoft.CSharp" #>
<#@ assembly name = "System.Data" #>
<#@ import namespace = "System.Dynamic" #>
<#@ import namespace = "System.Data.SqlClient" #>