This file contains 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
#!/bin/sh | |
alias such = git | |
alias very = git | |
alias wow = 'git status' | |
# wow | |
# such commit | |
# very push |
This file contains 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
void Main() | |
{ | |
Expression<Func<Article, bool>> expression = a => a.Title == "Something"; | |
Console.WriteLine(expression.NodeType); | |
var lambdaExpression = (LambdaExpression)expression; | |
Console.WriteLine(lambdaExpression.Body.NodeType); | |
This file contains 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
void Main() | |
{ | |
var a = new List<List<int>> | |
{ | |
new List<int> { 1, 2, 3 }, | |
new List<int> { 4, 5, 6, 7, 8, 9 } | |
}; | |
Console.WriteLine(a.Count); | |
Console.WriteLine(a[0].Count); |
This file contains 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
protected function getParameterAs($key, $type, $default = null, $validation = ValidationType::None, $validationData = null) | |
{ | |
if (!isset($this->passedArgs[$key])) | |
{ | |
return $default; | |
} | |
// NOTE: Not sure if this is needed, my PHP-fu is weak. | |
$value = null; |
This file contains 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
// Variant 1 | |
var lines = File.ReadAllLines("in.txt"); | |
var output = new StringBuilder(); | |
foreach (var line in lines) | |
{ | |
if (ShouldUseThisLine(line)) | |
{ | |
output.AppendLine(line); |
This file contains 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
class AlbumCollection | |
{ | |
public List<Album> Albums { get; set; } | |
} | |
class Album | |
{ | |
public int Id { get; set; } | |
public string Name { get; set; } | |
} |
This file contains 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
xbuild Kumiko.Todo.sln /t:Rebuild /p:SolutionDir=/home/hagbard/projects/Kumiko.Todo/ /p:Configuration=Debug /verbosity:diagnostic |
This file contains 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
// In BusinessLayer.dll | |
using System; | |
public class User | |
{ | |
public User(string username) | |
{ | |
Id = Guid.NewGuid(); | |
CreatedOn = DateTime.UtcNow; | |
Username = username; |
This file contains 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
void Main() | |
{ | |
var list = new List<int> { 1, 2, 3, 4, 5, 6 }; | |
var sumOfAllItems = list.Sum(_ => Print(_)); | |
Console.WriteLine(sumOfAllItems); | |
} | |
static int Print<T>(T item) |
This file contains 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
private IEnumerable<DataRow> RetrieveVendor(string table, string system, string region, params string[] fields) | |
{ | |
var table = new DataTable(); | |
var databaseFile = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "inu.db3"); | |
if (!System.IO.File.Exists(databaseFile)) | |
{ | |
MessageBox.Show(string.Format("I couldn't find the file `{0}'!", databaseFile)); | |
} |