Skip to content

Instantly share code, notes, and snippets.

View evokelektrique's full-sized avatar
🌱

EVOKE evokelektrique

🌱
View GitHub Profile
@ShinyObjectLabs
ShinyObjectLabs / BaseForm.tsx
Last active July 21, 2024 15:08
Framer Form Component
/*
MIT License
Copyright © Joel Whitaker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@chuckxD
chuckxD / __HEY.md
Last active May 27, 2024 10:47
ffz/bttv known API end-points quick list
@bryanhunter
bryanhunter / bumper.exs
Created January 20, 2015 21:18
Example of Elixir and the bit-syntax to read a Bitmap image
defmodule Bumper do
@doc ~S"""
Reads a Bitmap (24-bit) and displays width, height, and the RGB of each pixel
"""
def show(filename) do
{:ok, bindata} = File.read(filename)
<< "BM",
_::size(64),
offset_to_pixels::size(32)-little,