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:
I hereby claim:
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) |
| <!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%; |
| 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)] = {} |