Skip to content

Instantly share code, notes, and snippets.

View jlleblanc's full-sized avatar
📈
Investing

Joe LeBlanc jlleblanc

📈
Investing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jlleblanc on github.
  • I am jlleblanc (https://keybase.io/jlleblanc) on keybase.
  • I have a public key ASBKAh4rNT-IIeKwhEmzGoeV4kZDgaOyIqSE2EoUugNlggo

To claim this, I am signing this object:

module Main exposing (..)
import Html exposing (Html, text, div, img, button)
import Html.Events exposing (..)
import Http
import Json.Decode as Decode
type Msg
= TruffleFeed (Result Http.Error String)
@jlleblanc
jlleblanc / centerpiece.html
Created February 5, 2018 22:41
A centerpiece for new browser windows
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#centerpiece {
position: absolute;
width: 99%;
@jlleblanc
jlleblanc / generage_project_docs.py
Created July 12, 2024 15:50
Claude’s current preferred way of importing a file structure and contents
import os
def create_file_structure(base_path="."):
file_structure = {}
for root, dirs, files in os.walk(base_path):
relative_path = os.path.relpath(root, base_path)
for dir_name in dirs:
file_structure[os.path.join(relative_path, dir_name)] = {}