Skip to content

Instantly share code, notes, and snippets.

View ciolt's full-sized avatar
🌴
Miami time!

ciolt ciolt

🌴
Miami time!
View GitHub Profile
@ciolt
ciolt / ETA Transit Agencies.json
Last active June 15, 2019 04:22
Transit agencies
[
"sixtlaxpublic.etaspot.net",
"ummcpublic.etaspot.net",
"southshore.etaspot.net",
"trirailpublic.etaspot.net",
"uhpublic.etaspot.net",
"buffbus.etaspot.net",
"binghamtonupublic.etaspot.net",
"ecopark.etaspot.net",
"supublic.etaspot.net",
@ciolt
ciolt / checklist.md
Created February 6, 2019 17:01
Places to visit in Miami
  • Aventura Mall (19501 Biscayne Blvd)

  • Bayside Marketplace (401 Biscayne Blvd)

  • Cocowalk (3015 Grand Ave)

  • Dadeland Mall (7535 N. Kendall Drive)

  • Dadeland Station Mall (8312 South Dixie Hwy)

@ciolt
ciolt / colors.md
Created August 7, 2018 20:25
Microsoft Design Color Palette

Microsoft Design Color Palette

The following arrays are formatted in 30 columns each with 7 rows. Standard black (#000000) and white (#FFFFFF) are not included.

Hex colors

[["750B1C","A80000","C50F1F","E81123","E74856","E6808A","F4ABBA"],["7F1D10","A52613","DA3B01","F03A17","EF6950","EE9889","EEC7C2"],["7F2F08","A74109","CA5010","F7630C","F7894A","F7B189","F2D5C9"],["7F4200","B05E0D","D47300","FF8C00","FFAA44","FFC988","FFDABB"],["AB620D","D48C00","EAA300","FFB900","FFC83D","FFD679","FFE5B6"],["986F0B","C19C00","DFBE00","FCE100","FFF100","FAEC6E","F9F1A5"],["73AA24","8CBD18","A4CF0C","BAD80A","D1EC3C","E4F577","F8FFB3"],["498205","599B00","6BB700","7CD300","9AD93A","B7DF74","D5E5AE"],["0B6A0B","107C10","13A10E","16C60C","47D041","79DB75","AAE5AA"],["00722E","10893E","00AE56","00CC6A","38D487","70DDA5","A8E5C2"],["005E50","008272","00B294","00CEA6","41DABC","81E6D3","C2F2E9"],["006666","038387","009CA4","00B7C3","30C6CC","61D6D6","91E5DF"],["005B70","006F94","0099BC","00BCF2","31D2F7","6
@ciolt
ciolt / keybase.md
Created July 11, 2018 02:29
Keybase proof stuff.

Keybase proof

I hereby claim:

  • I am ciolt on github.
  • I am ciolt (https://keybase.io/ciolt) on keybase.
  • I have a public key ASCJT5kpvl4z4CU3OjQPWiuMAGJu0ASsQ5bkysbs-jMV1wo

To claim this, I am signing this object:

@ciolt
ciolt / api.md
Last active March 5, 2018 00:38
MSN API
@ciolt
ciolt / Careers for People Who Like Science.md
Last active March 10, 2018 19:58
Reading Plus Stories Level K - This work is in the public domain.

Careers for People Who Like Science

Do you enjoy science? Do your chemistry, biology, and physics classes entertain and engage you? Are you interested in exploring how science can be used to improve modern life? If you answered yes to any of these questions, a career in science may be a good choice for you.

The U.S. Department of Labor’s website provides a wide range of information about careers that align with your interests. The following selection describes three career paths in the field of science: chemists and materials scientists, environmental scientists and specialists, and physicists and astronomers. Keep in mind that there are many additional science careers to consider.

If chemistry is an area of enjoyment, then you might consider a career as a chemist or materials scientist. People with these careers study substances at the atomic and molecular levels as well as the ways in which substances react with each other. They use their knowledge to develop new and improved products and to test the q

@ciolt
ciolt / manual.md
Last active April 16, 2017 08:08
Twitter: Find “Like for a [Gift]” Offers

Description

Used to find (most) Tweets offering a gift in return for liking their Tweet. This is a trend on Twitter and it ranges with benefits from giveaways to free follows and making new friends.

Search Query

Use the following string in the search box to find the corresponding Tweets.

``

@ciolt
ciolt / Usefulness.md
Last active December 19, 2016 04:46
Useful Links and Tools

Studying

  • Anki - Program which makes remembering things easily. Intelligent flashcards
  • Memrise - Learn vocabulary, languages, history, science, trivia and just about anything else easily using flashcard techniques.
  • CodeWars™ - Practice challenges for programmers

Tools

  • Symbolab - Free step by step math solver
  • Lyx - A word processor for LaTeX
  • Overleaf - LaTeX in the cloud
  • Tableau - Create amazing data visualizations
@ciolt
ciolt / Smartify.js
Last active December 7, 2016 13:34
Convert dumb quotes to smart quotes and add em dashes where needed.
String.prototype.Smartify = function () {
var base = this.valueOf(); // gets the value of the original string
var _a = new RegExp(/([\"]([a-zA-Z0-9\s\S]{0,}?)([\"]))/, 'gm'); // filter for large chunks of dumb quotes ["which is shit like this"]
var _b = new RegExp(/([^\"]([a-zA-Z0-9\s\S]{0,}?)([^\"]))/, 'gm'); // sub-filter for everything that isn't dumb quotes [which is shit like this]
var _c = new RegExp(/([0-9]){1,}([\"]){1}/, 'gm'); // filter for smartifying [5"] with [5“]
var _d = new RegExp(/([^\s0-9]{1,}[\'][a-zA-Z]{1,})/, 'gm'); // filter for getting words like [don't] and [couldn't]
var _e = new RegExp(/([\']([a-zA-Z0-9\s\S]{0,}?)([\']))/, 'gm'); // gets large chunks of dumb apostrophes like ['What did she say?'] and ['thus we heard it']
var _f = new RegExp(/([^\s0-9]{0,}[\'][a-zA-Z]{0,})/, 'gm'); // gets the remaining dumb apostrophes like ['bout] and [lyin']
var _g = new RegExp(/(\s[\-]{1,2}\s)|((\s){0,1}[\-]{2}(\s){0,1})|((\s){0,1}[\-]\s)|(\s[\-](\s){0,1})/, 'gm');