Skip to content

Instantly share code, notes, and snippets.

View JayKickliter's full-sized avatar
💭
Cache Rules Everything Around Me

Jay Kickliter JayKickliter

💭
Cache Rules Everything Around Me
View GitHub Profile

Functional

  • Haskell
  • Lisp
  • Erlang (underrated. Heavily used at Helium)

Concatative

  • APL/J/K/Q
  • FORTH
@JayKickliter
JayKickliter / jeep-mods.md
Last active January 31, 2024 21:21
My Jeep mods

DSCF7893-HDR

  • Teraflex Falcon Nexus EF 2.2 Steering Stabilizer
  • Teraflex Falcon Shocks 3.3 Adjustable Piggyback front & rear. Rear has skid plate.
  • 3" lift
  • TigerShark Super Winch 9500 With Synthetic Line
  • Metal cloak Frame built Front bumper
  • Metal cloak front and rear Control Arms
  • Metal cloak Rear Track Bar (installed 6Months ago.
  • Metal cloak Tie rod and Drag link
impl CurveAffine for G1Affine {
type Engine = Bls12;
type Scalar = Fr;
type Base = Fq;
type Prepared = G1Prepared;
type Projective = G1;
type Uncompressed = G1Uncompressed;
type Compressed = G1Compressed;
type Pair = G2Affine;
type PairingResult = Fq12;
@JayKickliter
JayKickliter / eu868_map.erl
Last active February 12, 2021 19:13
RSSIS to SNR curvefit
{
-7 => 7.6,
-8 => 7.8,
-9 => 7.8,
-10 => 7.9,
-11 => 8.0,
-12 => 8.0,
-13 => 8.0,
-14 => 8.0,
-15 => 8.0,
@JayKickliter
JayKickliter / main.rs
Created February 8, 2021 22:38
Remove line and block comments from a &str in Rust
fn main() {
let decommented = decomment(INPUT);
println!("{}", decommented);
}
/// Removes both c-style block comments and c++-style line comments from a str.
pub fn decomment(src: &str) -> String {
let mut in_line_comment = false;
let mut in_block_comment = false;
let mut decommented = String::with_capacity(src.len());
@JayKickliter
JayKickliter / .ccls
Created July 31, 2020 16:57
ccls file for arm cortex-m4 project
%compile_commands.json
--target=armv7m-none-eabi
--sysroot=/Users/jay/.local/gcc-arm-none-eabi-9-2019-q4-major/bin/../arm-none-eabi
-isystem/Users/jay/.local/gcc-arm-none-eabi-9-2019-q4-major/bin/../arm-none-eabi/include/c++/9.2.1
-isystem/Users/jay/.local/gcc-arm-none-eabi-9-2019-q4-major/arm-none-eabi/include/c++/9.2.1/arm-none-eabi/thumb/v7-m/nofp
-mfpu=none
@JayKickliter
JayKickliter / erlang-macos.md
Created June 27, 2020 21:54
How I compile Erlang from source on macOS

How I compile Erlang from source on macOS

CFLAGS="-Og -ggdb3 -fno-omit-frame-pointer" \
CXXFLAGS="-Og -ggdb3 -fno-omit-frame-pointer" \
./configure \
      --prefix=$HOME/.local \
      --disable-silent-rules \
      --enable-dynamic-ssl-lib \
 --with-ssl=/usr/local/opt/openssl \
@JayKickliter
JayKickliter / ASan.cmake
Created May 22, 2020 23:56
Defines a custom CMake build type ASan for use with the address santizier
# This file provides a custom build type, `CMAKE_BUILD_TYPE_ASAN`
set(CMAKE_C_FLAGS_ASAN "${CMAKE_C_FLAGS_RELWITHDEBINFO} -fsanitize=address -fno-omit-frame-pointer -fno-common" CACHE STRING "" FORCE)
set(CMAKE_CXX_FLAGS_ASAN "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -fsanitize=address -fno-omit-frame-pointer -fno-common" CACHE STRING "" FORCE)
set(CMAKE_EXE_LINKER_FLAGS_ASAN "${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO} -fsanitize=address" CACHE STRING "" FORCE)
set(CMAKE_SHARED_LINKER_FLAGS_ASAN "${CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO} -fsanitize=address" CACHE STRING "" FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo" "ASan")
@JayKickliter
JayKickliter / FindErlang.cmake
Created May 22, 2020 22:42
Provides CMake `find_package(Erlang)` using modern cmake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
FindErlang
-------
Finds Erlang libraries.
Imported Targets
@JayKickliter
JayKickliter / main.c
Created February 27, 2020 19:26
Serializing LoRa packets into JSON with parson
#include "parson.h"
#include <stdio.h>
/* EXPECTED OUTPUT */
/*
{
"rxpkt": [
{
"chan": 0,
"codr": "4\/5",