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
| " --- General Settings --- | |
| set nocompatible " Disable Vi compatibility to enable powerful Vim features | |
| set encoding=utf-8 " Force UTF-8 encoding | |
| filetype plugin indent on " Enable filetype detection, plugins, and indentation rules | |
| syntax on " Enable syntax highlighting | |
| " --- UI & Visuals --- | |
| set number " Show line numbers | |
| set ruler " Show cursor position (row, col) in status line | |
| set showcmd " Show partial commands in the bottom right |
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
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "time" | |
| ) | |
| func main() { | |
| // Address to listen for incoming UDP packets |
We can't make this file beautiful and searchable because it's too large.
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
| si14/desktop-config | |
| nachivpn/replay | |
| McGizzle/haxchange | |
| vapourismo/type-interpreter | |
| nicholaspun/learnYouAHaskell | |
| EmileDreyer/Stuffs | |
| easimonenko/haskell-examples | |
| bsdlp/zsh-git-prompt | |
| fosskers/servant-xml | |
| tully-gray/FuglyBot |
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 LC where | |
| import Data.Char (ord, chr) | |
| {-# Rules | |
| "f/case" forall x. foo2int x = case x of | |
| Bar n -> n | |
| Baz n c -> ord c; | |
| #-} |
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
| # table.py | |
| import sys | |
| from pathlib import Path | |
| from math import log2 | |
| def H(p): | |
| """Return the value of the entropy function a p.""" |