This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Overlay bill due dates on desktop | |
# Use hints from this page | |
# https://www.reddit.com/r/linux4noobs/comments/2upg57/custom_cheat_sheet_wallpaper_anyone/ | |
# | |
DTPIC=/usr/share/backgrounds/System76-Fractal_Mountains-by_Kate_Hazen_of_System76.png | |
CURR_WALLPAPER=$HOME/Pictures/mywallpaper.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JAVA | |
import clojure.lang.RT; | |
import clojure.lang.Var; | |
public class TestCloj { | |
public static void main(String[] args) { | |
try { | |
RT.loadResourceScript("printer.clj"); | |
RT.var("printer", "print-string").invoke(args[0]); | |
} | |
catch (java.lang.Exception e) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a test RSS feed based on the .mp3 files in the current directory. | |
# Usage: ruby rssfeed.rb > rss.xml | |
# ==== RSS header =========================================================== | |
header_markup = '<?xml version="1.0" encoding="utf-8"?> | |
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<channel> | |
<title>Your title goes here</title> | |
<description>Your RSS feed description goes here</description> | |
<link>http://www.rssFeedFolder.com/</link> |