- Requires Google Chrome or Firefox on Desctop
- Has iPad and Android apps, does not have WindowsRT app
- Syncs read items with Google Reader
- Guys does not like Windows
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
Show hidden characters
{ | |
"cmd": ["javac", "$file"], | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": "source.java", | |
"shell": true, | |
"variants": | |
[ | |
{ | |
"name": "Run", | |
"cmd": ["javac", "${file}", "&", "java", "${file_base_name}"] |
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
процедура MergeSort (мод a: t) це | |
процедура Merge(арг a: t; Size: нат; рез b: t) це | |
змін i, j, k, r1, r2: нат; | |
поч | |
k <- 1; | |
поки k<=n повт | |
{визначення границь підмасивів} | |
i <- k; r1 <- i+Size-1; | |
якщо r1>n то r1 <- n кр; | |
j <- r1+1; r2 <- j+Size-1; |
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
# You should have pswatch installed (http://psget.net/directory/pswatch/) | |
# You need small modification to the FSharpKoans/PathToEnlightenment.fs to make sure that you will not need to press any key | |
# Comment out | |
# printf "Press any key to continue..." | |
# System.Console.ReadKey() |> ignore | |
# 1. Open separate powershell window | |
# 2. Make sure you are in FSharpKoans solution folder | |
# 3. Run watch_fsharpkoans.ps1 | |
# 4. Make both your visual studio and powershell window visitble at the same time | |
# 5. Enjoy! |
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
cd c:\freedos | |
wget http://downloads.sourceforge.net/project/fdnpkg/fdnpkg/v0.97/fdnpkg.zip | |
unzip fdnpkg.zip |
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
namespace Utils | |
{ | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
public static class TaskExtensions | |
{ | |
public static Task<T[]> WhenAll<T>(this IEnumerable<Task<T>> tasks) | |
{ | |
return Task.WhenAll(tasks); |
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
cinst git | |
cinst gitextensions | |
cinst paint.net | |
cinst Inkscape | |
cinst skydrive | |
cinst sublimetext2 | |
cinst VisualStudio2012Professional # requires modification to install web tools | |
cinst resharper | |
cinst winmerge | |
cinst 7zip |
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
open System | |
open System.Net | |
let download(url : string) = | |
async { | |
let client = new WebClient() | |
let! html = client.DownloadStringTaskAsync(url) | |
return html | |
} |