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
type Message<'S> = | |
| Query of ('S -> unit) | |
| Command of ('S -> 'S) | |
| Kill | |
type CQAgent<'S>(state: 'S) = | |
let innerModel = | |
MailboxProcessor<Message<'S>>.Start(fun inbox -> | |
let rec messageLoop (state: 'S) = | |
async { |
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
Here's a little programming challenge, the kind you might be asked in a job interview. | |
Write a function that can tell if a sequence of characters can be rearranged to form a palindrome. | |
And here's a solution in C (The kind you might be expected to write in a job interview) | |
http://geeksquiz.com/check-characters-given-string-can-rearranged-form-palindrome/ | |
bool canFormPalindrome(char *str) | |
{ | |
// Create a count array and initialize all values as 0 |
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
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
cinst visualstudio2013professional -InstallArguments "/Features:'Blend WebTools'" | |
cinst vs2013.4 | |
cinst visualstudio2013-sdk | |
cinst visualstudio2013-modelingsdk | |
cinst sublimetext2 | |
cinst virtualbox | |
cinst vagrant |
NewerOlder