- http://jashkenas.github.com/coffee-script/ Unfancy JavaScript
- [https://github.com/michaelficarra/CoffeeScriptRedux](CoffeeScript II: The Wrath of Khan "wikilink") Rewrite of the CS compiler
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
dotspacemacs-default-font '("Source Code Pro" | |
:size 18 | |
:weight normal | |
:width normal | |
:powerline-scale 1.1) | |
(server-start) | |
(setq haskell-default-program "stack ghci") |
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
#!/usr/bin/env zsh | |
# ---------------------------------------------------------------------- | |
# Send the standard input into a running emacs server, either on the | |
# kill ring, in a specified register, or in a new buffer. Examples: | |
# echo -n some text into the kill ring | into-emacs | |
# echo -n other text into register 1 | into-emacs -r 1 | |
# long_command | into-emacs -b "long command output" |
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
; See http://www.haskell.org/haddock/doc/html/ch03s08.html#idp1371070500 | |
; and http://www.haskell.org/haddock/doc/html/ch03s08.html#idp1371060908 | |
; | |
; Examples: | |
; \, /, ', `, ", @, < ===> \\, \/, \', \`, \", \@, \< | |
; foo `fmap` bar "/a/b" ===> foo \`fmap\` bar \"\/a\/b\" | |
(defun haddock-escape (start end) | |
"Escape symbols that have special meaning in Haddock comments." | |
(interactive "r") | |
(replace-regexp "\\([^\\\\]?\\)\\(`\\|'\\|\\\"\\|@\\|<\\|/\\|\\\\\\)" "\\1\\\\\\2" nil start end)) |
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
{-| | |
Module : module documentation | |
Description : as;ldkjf | |
Copyright : >implying | |
License : >implying | |
Maintainer : lol | |
Stability : not | |
Portability : what | |
Module description here |
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
#!/bin/bash | |
# This scripts lets you check which minimum GLIBC version an executable requires. | |
# Simply run './glibc-check.sh path/to/your/binary' | |
# | |
# You can set `MAX_VER` however low you want, although I (fasterthanlime) | |
# feel like `2.13` is a good target (For reference, Ubuntu 12.04 has GLIBC 2.15) | |
MAX_VER=2.13 | |
SCRIPTPATH=$( cd $(dirname $0) ; pwd -P ) |
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
(* | |
My training.Translating C# code to F#. | |
http://www.fincher.org/tips/Languages/csharp.shtml | |
*) | |
open System | |
open System.IO | |
open System.Net | |
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
// MIT License - Copyright (c) 2016 Can Güney Aksakalli | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Net.Sockets; | |
using System.Net; | |
using System.IO; | |
using System.Threading; |