View personal bash.rc
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
#This was done automatically by: https://github.com/glenpike/npm-g_nosudo | |
NPM_PACKAGES="/home/torch2424/.npm-packages" | |
NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH" | |
PATH="$NPM_PACKAGES/bin:$PATH" | |
# Unset manpath so we can inherit from /etc/manpath via the `manpath` | |
# command | |
unset MANPATH # delete if you already modified MANPATH elsewhere in your config | |
MANPATH="$NPM_PACKAGES/share/man:$(manpath)" | |
View Ascii Art to jpg
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
import java.awt.Color; | |
import java.awt.Graphics2D; | |
import java.awt.RenderingHints; | |
import java.awt.geom.AffineTransform; | |
import java.awt.image.AffineTransformOp; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; | |
import java.util.Random; | |
import java.util.Scanner; |
View Macro-MicrosoftOffice-SaveEveryIndividualPageAs-HTML
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
/********************************* | |
COMMENTS - DO NOT COPY THIS CODE | |
Worked in the past, I remember having to do this weird thing to get the pages to save a certain place, but I forget. | |
You may need to adjust "For idx = 1 To numPages" to numPages being the actual pages, as the loop broke on me once. | |
Also, If you navigate to the desired output folder with the "save as" button, |
View JDBC Java
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 CODE--- | |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. |
View JDBC SQL Database Project
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
---SQL CODE--- | |
/* Create Our Tables */ | |
CREATE TABLE recgroup | |
( | |
groupname VARCHAR(15) NOT NULL, | |
leadsinger VARCHAR(15), | |
yearformed VARCHAR(20) NOT NULL, | |
genre VARCHAR(15), |
View SqlPractice
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 TABLE authors | |
( | |
au_id CHAR(3) NOT NULL, | |
au_fname VARCHAR(15) NOT NULL, | |
au_lname VARCHAR(15) NOT NULL, | |
phone VARCHAR(12) , | |
address VARCHAR(20) , | |
city VARCHAR(15) , | |
state CHAR(2) , | |
zip CHAR(5) , |
NewerOlder