This list will include my pc building resources as well as a few programming resources
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 co.ryred.rybot; | |
import java.util.HashMap; | |
import java.util.Iterator; | |
import java.util.Map; | |
import java.util.concurrent.ConcurrentHashMap; | |
import java.util.concurrent.TimeUnit; | |
/** | |
* Created by rissa on 01/07/2015. |
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
/* | |
* Copyright (c) 2015. Starlis LLC / dba Empire Minecraft | |
* | |
* This source code is proprietary software and must not be redistributed without Starlis LLC's approval | |
* | |
*/ | |
package com.empireminecraft.util.serialization; | |
import com.empireminecraft.util.Util; |
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
#!/bin/zsh | |
ws1= # main | |
ws2= # web | |
ws3= # mail | |
ws4= # code | |
ws5= # math [infinity] (term icon) | |
ws6= # media | |
ws7= # misc (9 squares icon) | |
ws8= # notes/docs (pdf icon) |
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
/**ALLOW HIDDEN FOLDER**/ | |
defaults write com.apple.finder AppleShowAllFiles YES | |
sudo killall Finder | |
/**APACHE**/ | |
sudo apachectl start | |
sudo apachectl stop | |
sudo apachectl restart |
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
import urllib #importing urllib | |
import json #importing json | |
#requesting a json file url | |
url = raw_input("Enter the URL:") | |
#load json file as list -info | |
info = json.loads(urllib.urlopen(url).read()) | |
x = 0 | |
#loop through each item in list comments |
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
So, I usually don't make posts like this on Facebook, but this one is truly important to myself and should be important to practically everyone in the United States and around the world. I'm talking about Net Neutrality. | |
A great video explanation of what Net Neutrality is. (With CC) | |
https://vimeo.com/222706185 | |
Here are a couple of good articles. | |
https://www.savetheinternet.com/net-neutrality-what-you-need-know-now | |
https://www.battleforthenet.com/#widget-learn-more |
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
# Leaving this public for all to notate and to read. | |
# Updated, 27/08/2017 - EJS. | |
# Special mentions to my mom. for finding this data. | |
http://m.huffpost.com/us/entry/us_57f8399fe4b0b665ad817fea | |
https://www.google.com/amp/s/www.psychologytoday.com/blog/attention-please/201501/adult-pandas-seek-and-ye-shall-find%3famp | |
https://www.psychologytoday.com/blog/attention-please/201102/evil-pandas-scourge-the-brain |
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
Salsa : | |
Llorarás- Oscar D’León | |
El Cantante -Héctor Lavoe | |
El Preso- Fruko y sus Tesos | |
La Rebelión -Joe Arroyo | |
Cali Pachanguero-Grupo Niche | |
Carnaval -Celia Cruz | |
Aguanile -Marc Anthony | |
La Murga- Héctor Lavoe & Willie Colon | |
Idilio-Willie Colin |
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
#!/bin/bash | |
echo "Starting file system backup." | |
cd | |
cd Desktop | |
if [! -d "$backups" ]; | |
then mkdir "$backups" ; | |
# Not sure if I did this correctly. Will test tomorrow... | |
tar -cvpzf parrotos-backup.tar.gz --exclude=/parrotos-backup.tar.gz \ --exclude=/proc \ --exclude=/tmp \ --exclude=/mnt \ --exclude=/dev \ --exclude=/sys \ --exclude=/run \ --exclude=/media \ --exclude=/var/cache/apt/archives \ --exclude=/usr/src/linux-headers* \ --exclude=/home/*/.gvfs \ --exclude=/home/*/.cache / |