Skip to content

Instantly share code, notes, and snippets.

View vjktm's full-sized avatar
💭
new

Vp vjktm

💭
new
View GitHub Profile
@nikolavojicic
nikolavojicic / leiningen-windows.md
Last active November 13, 2024 14:34
Installing Leiningen on Windows

Leiningen on Windows

Create folder C:\Users\USER\.lein with

  • folder bin with file lein.bat
  • folder self-installs with file leiningen-VERSION-standalone.jar
  • file profiles.clj with content: {:user {:java-cmd "C:\\Program Files\\Java\\jdk-VERSION\\bin\\java.exe"}}

Computer -> Properties -> Advanced system settings -> Environment Variables -> User variables for USER

  • Path -> Edit...
    Variable value: (append with ;) C:\Users\USER\.lein\bin
@D4koon
D4koon / xmlTreeview.py
Created April 14, 2020 08:38
Python XML-Treeview
#-*- encoding: utf8 -*-
# Call with "python parseXML.py test.xml"
# Tested with Python 3.5
from tkinter import *
from tkinter.ttk import Treeview
import xml.etree.ElementTree as ET
class App: