Skip to content

Instantly share code, notes, and snippets.

View tallpeak's full-sized avatar

Aaron William West tallpeak

View GitHub Profile
@tallpeak
tallpeak / c0ffee.c
Created August 21, 2020 16:02
Find words like "coffee" (#C0FFEE) which can be written as hexadecimal number.
// rewrite of Haskell to C
// from https://github.com/mitsuji/c0ffee
// Find words like "coffee" (#C0FFEE) which can be written as hexadecimal number.
// I made a couple of careless pointer errors
// Proof I should use Haskell more, and C less?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@tallpeak
tallpeak / upc_checkdigit.txt
Last active August 7, 2020 17:19
UPC checkdigit calculation as a Postgresql C extension function
~/src/postgresql-12.2/src/tutorial# cat upc_checksum.c
#include "postgres.h"
#include <string.h>
#include "fmgr.h"
#include "utils/geo_decls.h"
PG_MODULE_MAGIC;
/* by value */
@tallpeak
tallpeak / extsum.jl
Created May 19, 2020 16:18
Summary of file sizes for a directory tree, by extension
using Printf
using Formatting
d=Dict{String, Integer}()
for (root, dirs, files) in walkdir(".")
for file in files
ff=joinpath(root, file)
fs=filesize(ff)
ar=rsplit(file,".";limit=2)
ext=pop!(ar)
@tallpeak
tallpeak / CompareDirectories.fsx
Last active February 4, 2020 18:27
Compare directories
// compare.fsx
// for each file, get name-only and hash.
// eliminate files with matching hashes
// display differences for files with the same name-only
// display files not found in destination by name-only
// display files not found in source by name-only
let srcDir = @"C:\temp\xxxx_ProductionInitializeDeploymentScripts"
let destDir = @"C:\Users\[myusername]\Source\Repos\[DH-ODP]\Main\Scripts"
open System
@tallpeak
tallpeak / CIMS_AIMS_4yr.jl
Created January 16, 2020 06:28
export some data from SQL to XLSX using Julia
import DataFrames, XLSX
getsqlpass() = string(strip( open(h->read(h,String), "/home/aaron/secrets/sqlpassword") ,['\r','\n',' ','\t']))
import ODBC
coals = [("CIMS",1016),("AIMS",1019)]
asv = ["A","v"]
yr = 20
for (coalName,coalNum) in coals
for aors in asv
tn = string("top_", coalName, "_sales_", aors)
@tallpeak
tallpeak / exportProcs.fsx
Last active November 7, 2019 19:48
Script all stored procedures for all MSSQL databases for select servers
// edit these lines for your liking:
let servers = ["server1"; "server2"]
let baseDir = @"c:\temp"
let getConnectionString (serverName:string) =
sprintf @"Data Source=%s;Initial Catalog=master;Integrated Security=True" serverName
#I """../exportProcs\packages\System.Data.SqlClient\lib\net461"""
#r """System.Data.SqlClient.dll"""
-- 1) Upgraded to Data.Time 2) Added some timings. 3) 10 million.
-- Otherwise unchanged
-- Result: 14 seconds versus 70 seconds for List.sort, 2.1 GB ram used
-- google: haskell etl
-- > https://www.reddit.com/r/ocaml/comments/3ifwe9/what_are_ocamlers_critiques_of_haskell/
-- > https://www.reddit.com/r/haskell/comments/3inqzk/an_optimal_haskell_quicksort/
-- > http://flyingfrogblog.blogspot.com/2010/08/parallel-generic-quicksort-in-haskell.html
{-# LANGUAGE FlexibleContexts #-}
-- import System.Time
; find the combinations of letters which have the most anagrams
; word list is from
; https://raw.githubusercontent.com/dolph/dictionary/master/enable1.txt
(ns anagrams-sort
(:require [clojure.string :as cs]) )
(def words
(let [ home (System/getenv "HOME")
filename (str home "/Downloads/enable1.txt")
words (->> filename slurp cs/split-lines)
] words )
-- find the combinations of letters which have the most anagrams
import qualified Data.Map as M
import Data.List(words,sortBy,sort,groupBy,map,intercalate)
import Text.Printf(printf)
import System.Environment(getEnv)
type Anagrams = (Int,String,[String])
printer :: Anagrams -> IO ()
printer (len,sortword,words) = putStrLn $
-- based on
-- https://stackoverflow.com/questions/4522387/how-can-i-emulate-gos-channels-with-haskell
-- but this version encodes end-of-stream on the communication channel, as a Nothing
-- I could not get Intero or ghc to accept a type-annotation for the helper function,
-- even using the exact inferred type from Intero.
import Control.Monad (forM_)
import Control.Concurrent (forkIO, ThreadId, threadDelay)