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
| # generate private key | |
| openssl genrsa -out private.pem 2048 | |
| # extatract public key from it | |
| openssl rsa -in private.pem -pubout > public.pem |
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
| /* | |
| ThumbnailSheet uses MediaToolkit (https://github.com/AydinAdn/MediaToolkit) and Magick.NET (https://magick.codeplex.com/) | |
| to create a sheet of timestamped thumbnails for a given video file. | |
| Preview: http://imgur.com/a/iLGMs | |
| Use Nuget to Install-Package MediaToolKit, and download a copy of Magick.NET, add it to your project's /bin folder and | |
| create a reference to the .dll. | |
| Usage example: |
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; | |
| namespace TopologicalSort { | |
| static class Program { | |
| static void Main() { | |
| // | |
| // digraph G { | |
| // "7" -> "11" |
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
| bindkey '^[[2~' overwrite-mode | |
| bindkey '\e[H' beginning-of-line | |
| bindkey '^[[5~' up-line-or-history | |
| bindkey '^[[3~' delete-char | |
| bindkey '\e[F' end-of-line | |
| bindkey '^[[6~' down-line-or-history | |
| bindkey '^[[A' up-line-or-search | |
| bindkey '^[[D' backward-char | |
| bindkey '^[[B' down-line-or-search | |
| bindkey '^[[C' forward-char |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
๐
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Demo"> | |
| <!-- Demonstrates how you can convert a relative path to a full path in MSBuild --> | |
| <PropertyGroup> | |
| <Filepath>sample\file.txt</Filepath> | |
| </PropertyGroup> | |
| <Target Name="Demo"> | |
| <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
| <Project> | |
| <!-- the usual stuff --> | |
| <!-- BEGIN disable default compile and copy binary behaviour --> | |
| <Target Name="CoreCompile" /> | |
| <PropertyGroup> | |
| <SkipCopyBuildProduct>true</SkipCopyBuildProduct> | |
| </PropertyGroup> | |
| <!-- END disable default compile and copy binary behaviour --> |