Skip to content

Instantly share code, notes, and snippets.

@DylanTackoor
DylanTackoor / 🔴➡️🟢.gif
Last active April 10, 2021 18:18
🔴➡️🟢
🔴➡️🟢.gif
/*
* smc_read.c: Written for Mac OS X 10.5. Compile as follows:
*
* gcc -Wall -o smc_read smc_read.c -framework IOKit
*/
#include <stdio.h>
#include <IOKit/IOKitLib.h>
typedef struct {
!function(e){var t={};function i(o){if(t[o])return t[o].exports;var s=t[o]={i:o,l:!1,exports:{}};return e[o].call(s.exports,s,s.exports,i),s.l=!0,s.exports}i.m=e,i.c=t,i.d=function(e,t,o){i.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/wp-content/themes/wmi-starter/dist/",i(i.s=5)}([function(e,t){e.exports=jQuery},function(e,t,i){var o,s,n;!function(r){"use strict";s=[i(0)],void 0===(n="function"==typeof(o=r)?o.apply(t,s):o)||(e.exports=n)}(function(e){"use strict";var t=window.Slick||{};(t=function(){var t=0;return function(i,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:e(i),appendDots:e(i),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="bu
@DylanTackoor
DylanTackoor / cloudSettings
Last active June 24, 2020 17:48
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-06-24T17:48:07.785Z","extensionVersion":"v3.4.3"}
{
"env": {
"es6": true,
"node": true,
"browser": true,
"jquery": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
@DylanTackoor
DylanTackoor / spacemacsLinuxSetup.sh
Created November 14, 2017 18:48
spacemacsLinuxSetup.sh
#!/bin/bash
sudo add-apt-repository ppa:kelleyk/emacs
sudo apt update
sudo apt install -y git emacs25
cd ~ || exit
sudo wget https://raw.githubusercontent.com/DylanTackoor/dotfiles/master/config/.spacemacs
@DylanTackoor
DylanTackoor / carlos.sh
Last active September 13, 2017 23:58
carlos.sh
#!/bin/bash
clear
echo "===================="
echo " macOS SETUP SCRIPT "
echo "===================="
echo ""
sudo -v
@DylanTackoor
DylanTackoor / HTMLboilerplate.html
Created September 5, 2017 00:18
HTML Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<title><?= $title ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Mobile Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
<!-- Windows phone tab color -->
@DylanTackoor
DylanTackoor / CS50x Miami.md
Created August 28, 2017 15:42
CS50x Miami

CS50x Miami

CS50x Miami Puzzle Day

Introduction

CS50x Miami is The Idea Center @ Miami Dade College's adaption of CS50, Harvard University's introduction to the intellectual enterprises of computer science, and the art of programming, for MDC students and the South Florida community.

But what does that mean?

Well, CS50x Miami is a course that teaches you how to design and implement solutions to problems. But more than that, it teaches you how to think more critically, more methodically, and more computationally, if you will.

@DylanTackoor
DylanTackoor / redirect.html
Last active August 29, 2017 13:35
HTML5 Redirect for forwarding
<!doctype html><html><head><meta http-equiv="refresh" content="0; URL='http://www.urlHere.com'" /></head><body></body></html>