Skip to content

Instantly share code, notes, and snippets.

@underlow
underlow / main.kt
Created November 14, 2019 19:17
xmlutil exception
@Serializable
data class Tree(val node1: Node1)
@Serializable
@SerialName("node1")
data class Node1(
@XmlValue(true) val text: String = "",
val subnode1: Subnode1
)
@underlow
underlow / git clone from opened safari chrome tab.applescript
Created May 30, 2019 12:41
Script for alfred workflow to git clone opened github repo in safari tab
set gitUrl to ""
-- set to directory for code
set projectPath to ""
set nameOfActiveApp to (path to frontmost application as text)
-- console command to run ide
set ideName to "idea"