Skip to content

Instantly share code, notes, and snippets.

View Zeklandia's full-sized avatar
🦄
Doing things.

Zeklandia Zeklandia

🦄
Doing things.
View GitHub Profile

Keybase proof

I hereby claim:

  • I am zeklandia on github.
  • I am zeklandia (https://keybase.io/zeklandia) on keybase.
  • I have a public key ASCcS9Yx9e1ImaSBzM-EOjhJN5kiXdi1WiIlqCLq4f6aIgo

To claim this, I am signing this object:

@Zeklandia
Zeklandia / designer.html
Last active August 29, 2015 14:13
designer
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<polymer-element name="music-demo">
<template>
@Zeklandia
Zeklandia / designer.html
Last active August 29, 2015 14:13
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
@Zeklandia
Zeklandia / designer.html
Last active August 29, 2015 14:11
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../core-icon/core-icon.html">
@Zeklandia
Zeklandia / Automated Upgrade Script
Last active December 25, 2015 17:59
Simple script to take care of routine upgrades.
#!/bin/bash
init () {
set_vars
get_root
linker
}
get_root () {
echo -en "Getting Root..."
@Zeklandia
Zeklandia / Bash Prefix
Last active December 16, 2015 23:59
The environmental variable for the bash prefix to your commands. This can also be set in `/etc/bash.bashrc`
#!/bin/bash
PS1='\[\e[0;0m\e[1;30m\][\[\e[1;97m\]\d\[\e[1;30m\], \[\e[1;97m\]\t\[\e[1;30m\]]\n\[\e[1;30m\][\[\e[0;36m\]\u\[\e[1;30m\]@\[\e[0;36m\]\h\[\e[1;30m\]]\n\[\e[1;30m\][\[\e[0;37m\]\w\[\e[1;30m\]] \[\e[1;37m\]\$\[\e[0m\] '
@Zeklandia
Zeklandia / UpdateCheck.java
Created April 19, 2013 00:44
Java check-for-update function.
import java.awt.*;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import javax.swing.*;