Skip to content

Instantly share code, notes, and snippets.

View nchapon's full-sized avatar

Nicolas Chapon nchapon

View GitHub Profile
@nchapon
nchapon / fizzbuzz.html
Created November 30, 2015 22:01
FizzBuzz in html
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FizzBuzz en HTML</title>
</head>
<body>
<div>
<style>
body {

Keybase proof

I hereby claim:

  • I am nchapon on github.
  • I am nchapon (https://keybase.io/nchapon) on keybase.
  • I have a public key ASABTj5GZN8vRoVOT_zR-ndEPDTsHtdI1NJ03EUcSFBHLgo

To claim this, I am signing this object:

@nchapon
nchapon / emacs-puml-snippets.clj
Last active May 16, 2023 16:15
Convert Plant UML VSCode Snippets to Emacs Yasnippets with Babashka
(require '[babashka.http-client :as http])
(require '[cheshire.core :as json])
(require '[clojure.string :as str])
(require '[babashka.fs :as fs])
(defn get-url
"Get URL"
[url]
(println "Downloading url:" url)
(http/get url))