Skip to content

Instantly share code, notes, and snippets.

View syncsynchalt's full-sized avatar
🏝️
Retired

Michael Driscoll syncsynchalt

🏝️
Retired
View GitHub Profile
$ units
You have: 40 rods/hogshead
You want: mpg
* 0.001984127
/ 504
.glitch:after {
animation: glitch-animation 5s infinite linear alternate-reverse;
background: #fff;
clip: rect(0, 900px, 0, 0);
color: #222323;
content: attr(data-text);
left: 50%;
transform: translateX(-49%);
overflow: hidden;
position: absolute;
echo ')B#?1)BB(?.)B/?+)B&B?%B&B?()B&B?+B&B?%)B&B?1B&B?")cblB$?+?+B&B)B$?.?.B
$)B#?/?/B#)B#?#H~G?N~"GH~!G?N~!{?H~#G?"B#)B#?#N~{H?!~!{N?N?H?n?!GN~!?N?#B#)B
#?#{?N?{?~?N{?!G?{?!N?{?~"G?"B#)B#?$~?"~"?!~!?"~!?"~#?#B#)B#?"N~!G?!H~!G?!H~
!GN~{N~{N~GH~{?B#)B#??N??H?N~!?H?N~!?H?{?#NG?~!?H?B#)B#?H?N{?G{?~??G{?~??G?{
~?N?{?GH?N?B#)B#??~??~??~#??~#?"~~?"~??~??B#)B#?/?/B#)B#?+B&B?+B#)B#?(B-?(B
#)B#?%B&B?#B&B?%B#)B#?"B&B?(?B&B?"B#)B+?/B+)B(?*?*B()B%?-?-B%)B"?0?0B"
' | perl -0777ne '@_=map{ord($_)-31}/\S/g;while(@_){$a=pop@_;$a<32&&$a!=10&&
($l=$a,$a=pop@_);$l=print chr($a)x$l}'
mdrisco1@zedo$ curl -O https://tls13.ulfheim.net/files/hkdf.sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1623 100 1623 0 0 5565 0 --:--:-- --:--:-- --:--:-- 5577
mdrisco1@zedo$ mv hkdf.sh hkdf
mdrisco1@zedo$ chmod a+x hkdf
mdrisco1@zedo$ cat <<'EOF' > /tmp/runme
echo '+LN4B+BA$mgA/B+'\
'BAjnbjnA.B+BAfdzscA$'\
'BovgAtbxAAB+BAA*opdg'\
'feA$B+BD#A)fqpiAjA$B'\
'+BD#A2B+LN4L"' |perl -ne '
@_=map{ord($_)-33}/\S/g;
while(@_){$a=pop@_;$a
<32&&$a!=10&&($l=$a,$a=pop
@_);$l=print chr($a)x$l}'
Hello, Michael Driscoll
You sent $xxx.00 USDto First Last
YOUR NOTE TO First Last
Happy Birthday!
Transaction Details
< wpo> you're a typical cynical computerman goon with taste, rapidly evolving into an ulf in both life and your job
< wpo> you get promoted to senior software engineer
< wpo> and your wife, who you married years ago because you thought she could hang and she knew more about (insert sperghole here), buys you that shirt unironically
< wpo> what do you do
< wpo> you consider that maybe she bought it ironically but she wrapped it with a card saying "so proud hun!!". it confuses you because not two days prior she went on an extended rant about her coworker, and how she has it in her headcanon that "he's into vore and it should be okay because it's 2017 but he did it for all the wrong reasons" and you can't reconcile
< wpo> the woman you love with the fact that she bought this shirt
< wpo> actually come to think of it, this is probably the reaction she was after
< wpo> thinking it must be a joke, you walk into your garage and are shocked to see a stick figure family on your back windshield. is this real? is anythin
---.-- Thinking of Maud you forget everything else.--More--
|{.... Michael Driscoll <fenris@lightspeed.net>
|.d.@| Student of ChemEng at CSM typedef ipv4 long;
------ ipv4 **home_page_pointer = (ipv4 **)http://frob.base.org/;
var result;
if (dev.isBored() || job.sucks()) {
result = searchJobs({flexibleHours: true, companyCulture: "💯"});
}
result.then(function(newJob) {
headHunter.reply(newJob, "Thanks but no.");
});
// A career site that's by developers, for developers
@syncsynchalt
syncsynchalt / Makefile
Last active August 19, 2016 03:03
Your makefile should be this simple
SOURCE=$(wildcard *.cpp)
OBJS=$(patsubst %.cpp,%.o,$(SOURCE))
all: yourbin
.cpp.o:
$(CXX) $(CXXFLAGS) -o $@ $<
yourbin:
$(CXX) $(CXXFLAGS) -o $@ $(OBJS) $(LDFLAGS)