People often ask me how to find F# jobs. I don't have any special connections to companies using F#, and I don't have any special tricks either. I wish I did!
So, given that, here's my take on F# jobs.
For job hunting my suggestions are:
Param ( | |
[string]$LeftFolder, | |
[string]$RightFolder | |
) | |
function CreateFolderStructure([string]$Path) | |
{ | |
if (-not [string]::IsNullOrWhiteSpace($Path)) | |
{ | |
if (-not (Test-Path $Path)) |
module.exports = { | |
setup: function setup () { | |
window.__expectations = []; | |
window.__requests = []; | |
var _XHR = window.XMLHttpRequest; | |
window.XMLHttpRequest = function () { | |
var xhr = new _XHR(); | |
var originalOpen = xhr.open; | |
var lastMethod; | |
xhr.open = function () { |
(* | |
This script analyzes the dependencies between top level types in a .NET Assembly. | |
It is then used to compare the dependency relationships in some F# projects with those in some C# projects. | |
Note that no attempt has been made to optimize the code yet! | |
REQUIRES: | |
* Mono.Cecil for code analysis | |
From http://www.mono-project.com/Cecil#Download |