This file contains hidden or 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
"use strict"; | |
class Input | |
{ | |
constructor(startButton) | |
{ | |
this.startButton = startButton; | |
startButton.onclick = this.start; | |
} | |
start() | |
{ |
This file contains hidden or 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
sudo apt-get purge mono-common ttf-arabeyes ttf-arphic-uming ttf-indic-fonts-core ttf-kochi-gothic ttf-kochi-mincho ttf-lao ttf-malayalam-fonts ttf-thai-tlwg ttf-unfonts-core bluez-audio bluez-cups bluez-gnome bluez-utils ppp pppconfig pppoeconf wvdial gnome-orca brltty brltty-x11 gnome-accessibility-themes gnome-mag libgnome-mag2 libgtk-vnc-1.0-0 vinagre vino espeak espeak-data libespeak1 libgnome-speech7 evolution-common evolution-data-server evolution-exchange evolution-plugins evolution-webcal fortune-mod libbeagle1 contact-lookup-applet diveintopython example-content gnome-games gnome-games-data gnome-cards-data totem totem-gstreamer totem-plugins totem-common totem-mozilla rhythmbox transmission-common transmission-gtk account-* libreoffice* |
This file contains hidden or 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
export JAVA_HOME="/opt/java/jdk1.8.0_65" | |
export M2_HOME="/opt/maven/apache-maven-3.3.3" | |
PATH="$JAVA_HOME/bin:$PATH" | |
PATH="$M2_HOME/bin:$PATH" |
This file contains hidden or 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
#stuff I removed after installing xubuntu | |
sudo apt-get purge xchat dc transmission* thunderbird* pidgin* abiword* firefox* gimp* gnomine* gmusicbrowser software-center parole gnome-sudoku evince* gnumeric* ristretto* libreoffice* xfburn gnome-mines nano && sudo apt-get --purge autoremove |
This file contains hidden or 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
#put at the end of .bashrc | |
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O | |
# Reset |
This file contains hidden or 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
# Configuration file for ddclient generated by debconf | |
# | |
# /etc/ddclient.conf | |
use=web | |
web=dynamicdns.park-your-domain.com/getip | |
# updates the host @ | |
protocol=namecheap, server=dynamicdns.park-your-domain.com login=yourdomain.com password=<pass> \ | |
@ |
This file contains hidden or 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
public class backendKlass | |
{ | |
public Users[] getUsers() | |
{ | |
using (entity db = new entity()) | |
{ | |
Users[] list = db.getUsers(); /* stored procedure i db */ | |
list = formatUsers(list); | |
return list; | |
} |
This file contains hidden or 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
package richo.testproject.other; | |
import javax.inject.Inject; | |
/** | |
* Created by tjerngrr on 2014-10-31. | |
*/ | |
public class GuiKlass | |
{ |
This file contains hidden or 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
package richo.testproject.other; | |
import org.junit.Test; | |
public class TryFinallyReturnTest | |
{ | |
private static final int NOT_SET = 0; | |
private static final int TRY = 1; | |
private static final int FINALLY = 2; |
NewerOlder