Skip to content

Instantly share code, notes, and snippets.

View VxJasonxV's full-sized avatar
💻
Using GitHub

Jason Salaz VxJasonxV

💻
Using GitHub
  • Castle Rock, CO, USA
View GitHub Profile

❤️❤️❤️❤️💚💚💚❤️❤️❤️❤️❤️💚💚💚❤️❤️❤️❤️
❤️❤️💚💚❤️❤️❤️💚💚❤️💚💚❤️❤️❤️💚💚❤️❤️
❤️💚❤️❤️❤️❤️❤️❤️❤️💚❤️❤️❤️❤️❤️❤️❤️💚❤️
❤️💚❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️💚❤️
❤️❤️💚❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️💚❤️❤️
❤️❤️❤️💚💚❤️❤️❤️❤️❤️❤️❤️❤️❤️💚💚❤️❤️❤️
❤️❤️❤️❤️❤️💚:green_hea

@VxJasonxV
VxJasonxV / keybase.md
Last active August 29, 2015 13:59
keybase.md

Keybase proof

I hereby claim:

  • I am VxJasonxV on github.
  • I am vxjasonxv (https://keybase.io/vxjasonxv) on keybase.
  • I have a public key whose fingerprint is A785 914E B2F0 40BC 9271 6590 7200 058C E5BE 5C1D

To claim this, I am signing this object:

One Two Three

|

  • one
  • two
  • three
    | two | three |
One Two Three
@VxJasonxV
VxJasonxV / 2580.session
Created June 30, 2014 07:36
Serato Session File
#!/usr/bin/perl
use warnings;
use strict;
use feature ':5.10';
use Carp qw(croak);
sub strip_non_main_artists
{
javascript: {
var color = null;
var c = $('canvas.sketchpad')[0];
var swidth = 32;
var sheight = 32;
var emojiX = 0;
var emojiY = 0;
function changeColor(newColor) {
<?php
if(strcmp($difficulty,"Challenge")==0) // Dammit RoXoR
{ $difficulty = "Expert"; } // Be consistent >=\
?>
# I need to add this into my dotfiles repo. But for now, this is a cool way of getting you into your existing screen session, and get out when you detach.
# Put this at the bottom of your ~/.bash_profile and:
# 1) Upon login... it should be obvious what happens.
# 2) When you detach the screen session, you log out of the server.
# I'm a `screen` junkie when it comes to remote linux servers I rarely work outside of screen. If I need to, you can always ^C as soon as you ssh in and see "Reattaching [...]".
if [ -z $STY ]
then
echo "Reattaching screen in 3 seconds..."
@VxJasonxV
VxJasonxV / prowl output
Created July 1, 2010 08:01
Sample output of Prowl when using the service hook from GitHub
Application: GitHub
Event: user/repo (ex. mojombo/grit)
3 commits pushed to GitHub (a47fd41f..06f63b43)
Latest Commit by Tom Preston-Werner
a47fd31f add more comments throughout
@VxJasonxV
VxJasonxV / Unescaping mostly unescaped characters.rb
Created November 28, 2010 22:47
A test to see the effects of unescaping unescaped characters.
>> string = "&gt; &lt; & < > \' \""
=> "&gt; &lt; & < > ' \""
>> require 'CGI'
=> true
>> CGI.unescapeHTML(string)
=> "> < & < > ' \""
>>