Skip to content

Instantly share code, notes, and snippets.

@jokimaki
jokimaki / backup.cmd
Last active December 10, 2021 17:08
Create unique .7z file by using current date and time. Copy-paste to notepad to get correct file encoding.
@echo off
setlocal enabledelayedexpansion
REM Assume this file is Windows-1252 encoded
REM (default when editing with Notepad)
chcp 1252>nul
REM Set 7zip to PATH
set _7ZIP_INSTALLATION=C:\Program Files\7-Zip
set PATH=%_7ZIP_INSTALLATION%;%PATH%
@jokimaki
jokimaki / core.clj
Last active October 28, 2015 06:33
ClojureBridge/global-growth modifications
(ns clojurebridge.core
(:require [clojure.edn :as edn]
[clj-http.client :as client]
[cheshire.core :as json]))
(defproject parser-vuln-test "1.0" :dependencies [[org.clojure/clojure "1.6.0"]])