Skip to content

Instantly share code, notes, and snippets.

View Lull3rSkat3r's full-sized avatar
🎯
Focusing

Corey Stubbs Lull3rSkat3r

🎯
Focusing
  • Austin, TX
View GitHub Profile
@Lull3rSkat3r
Lull3rSkat3r / systemml-in-toree.ipynb
Created September 15, 2016 14:48
How To Load SysteML in Toree
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OS/2É#‹' NVDMX`pg…\‡cmapz«˚<äcvt $Ä »fpgm…`±õ ËSgasp <glyfÌ/À¢ L∆Bhead’ÛKÉ—ê6hheaˆÁ—»$hmtxO «—Ï–kern;‘ºloca{ªJÄ‘‘jmaxpƒÎ÷@ name∏öD9÷`Ÿposté ‹ñŸ<œprepñpÌ
€ TvêÃÃÃÃ2˙Äpyrs@ ‡ ˇ8„  ¯ˇˇ˚ ˇ˚
ˇ˙ ˇ˙ ˇ˘
ˇ˘ˇ¯ˇ¯ˇ˜ˇ˜ˇˆˇˆˇıˇıˇÙˇÙˇÛˇÚˇÚˇÒˇÒˇˇˇÔ ˇÔ!!ˇÓ""ˇÓ##ˇÌ$$ˇÌ%%ˇÏ&&ˇÏ''ˇÎ((ˇÎ))ˇÍ**ˇÍ++ˇÈ,,ˇÈ--ˇË..ˇË//ˇÁ00ˇÊ11ˇÊ22ˇÂ33ˇÂ44ˇ‰55ˇ‰66ˇ„77ˇ„88ˇ‚99ˇ‚::ˇ·;;ˇ·<<ˇ‡==ˇ‡>>ˇfl??ˇfl@@ˇfiAAˇfiBBˇ›CCˇ›DDˇ‹EEˇ‹FFˇ€GGˇ€HHˇ⁄IIˇŸJJˇŸKKˇÿLLˇÿMMˇ◊NNˇ◊OOˇ÷PPˇ÷QQˇ’RRˇ’SSˇ‘TTˇ‘UUˇ”VVˇ”WWˇ“XXˇ“YYˇ—ZZˇ—[[ˇ–\\ˇ–]]ˇœ^^ˇœ__ˇŒ``ˇÕaaˇÕbbˇÃccˇÃddˇÀeeˇÀffˇ ggˇ hhˇ…iiˇ…jjˇ»kkˇ»llˇ«mmˇ«nnˇ∆ooˇ∆ppˇ≈qqˇ≈rrˇƒssˇƒttˇ√uuˇ√

Solution *

This is the output we expect and should be the same regardless of any solution. Note that WSRewriter and ProxySocket receive different values and the client receives only one message.

Dashboard Server

> node streams.js
Solution *
WSRewriter: 
@Lull3rSkat3r
Lull3rSkat3r / WordsOfWisdomApi-Empty.ipynb
Last active January 15, 2016 22:25
A collection of code snippets for the "Words Of Wisdom" API.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Lull3rSkat3r
Lull3rSkat3r / SimpleMicroserviceApi.ipynb
Last active December 7, 2015 17:35
A simple Swagger Spec
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Lull3rSkat3r
Lull3rSkat3r / Color Palette Is Not Aligned With Series.ipynb
Created November 3, 2015 21:48
Color Palette Is Not Aligned With Series
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Lull3rSkat3r
Lull3rSkat3r / Better Add
Created August 17, 2013 05:46
Clojure-Add
(defn add [x]
(apply + x))
@Lull3rSkat3r
Lull3rSkat3r / Makefile
Created November 14, 2012 00:29
A file system I made for an operating systems class.
# CMPSC 473, Project 4
# Corey Stubbs, 90201575, cas5542@psu.edu
# Jeremy Ploumis, 974335459, jep5190@psu.edu
SRC = pr4.c
#LIB =
#INC =
#$(LIB) $(INC)
pr3: $(SRC)
gcc -std=c99 -Wall -Wextra -o pr4 $(SRC)
@Lull3rSkat3r
Lull3rSkat3r / Quine.js
Created November 12, 2012 20:01
This a a javascript program that uses the concept of self description when adding two numbers.
/* Author: Corey Stubbs cas5542 (AT) gmail [DOT] com
* Date: 11/12/2012
* About: This a a javascript program that uses the concept of self description when adding two numbers.
* The main purpose of this program is found within the addTwo function of Program. The function
* will add the two numbers, a and b, iff the third parameter, string, is the string encoding of Program.
* If string is not the encoding, the function will always return 0. Very strange, I know, but this is a
* very important concept in computer science and is made possible via the recursion theorem. This
* particular kind of program is know as a quine. I have provided two links in regards to recursion
* theorem and quines. If you have any questions let me know!
*