Skip to content

Instantly share code, notes, and snippets.

@stephencelis
stephencelis / emoji.txt
Created April 3, 2012 18:38
iOS 6 / Mountain Lion Emoji
2139 ℹ INFORMATION SOURCE
23EB ⏫ BLACK UP-POINTING DOUBLE TRIANGLE
23EC ⏬ BLACK DOWN-POINTING DOUBLE TRIANGLE
23F0 ⏰ ALARM CLOCK
23F3 ⏳ HOURGLASS WITH FLOWING SAND
26C5 ⛅ SUN BEHIND CLOUD
26D4 ⛔ NO ENTRY
2705 ✅ WHITE HEAVY CHECK MARK
2753 ❓ BLACK QUESTION MARK ORNAMENT
2757 ❗ HEAVY EXCLAMATION MARK SYMBOL
$('.submittable').live('change', function() {
$(this).parents('form:first').submit();
});
@Keboo
Keboo / Notes.md
Last active May 2, 2024 05:24
Presenting / Streaming notes

Personal notes on presenting and streaming.

Before starting

  • Turn off un-needed software. Especially things with notifications: Slack, Skype, Teams, etc.
  • Turn on Focus Assist
  • When sharing your desktop, consider sharing a secondary screen rather than the primary screen. Many apps will post notifications to the primary screen so this will help cut down on accidently sharing out notifications.
  • Hide desktop icons
  • Consider resolution/DPI. Remember that for streaming, people watching may be on lower resolutions; don't stream above 1080p.
  • Hide task bar. Either set auto hide, or simply crop the shared section of your screen to omit it.
  • Consider if desktop background is appropriate.
@purp
purp / README.md
Created December 15, 2018 21:46
Convert exported Apple contacts .vcf to CSV

I have a bunch of folks I want to export from Apple Contacts on MacOS and turn into a spreadsheet for a holiday card mail merge.

This is my clumsy way of doing it.

@protrolium
protrolium / QLAB-scripting.md
Last active May 2, 2024 05:24
QLab + Applescript to control Applications & Panasonic Projectors over LAN

QLab + Applescript commands for Projector & Application Boot-Up/Shut-Down Routine

Boot Up Sequence

Open Projector Manager app

tell application "Terminal"
   delay 0.5
   do script "open -a Projector Manager"
   delay 0.5
   tell application "Terminal to quit"
end tell
@use 'sass:math'
$darken-value: 5%
$darkest-value: 10%
$lighten-value: 5%
$lightest-value: 10%
$primary: #1684c3
$secondary: #443731
/* needs some finalisation for implementation, but basicly accepts 2 divs, .spinner-wrapper with the .spinner chile within it. */
.spinner-wrapper{
&::before{
content:"";
position:absolute;
background:linear-gradient(112deg, #9894c8, #373570);
width:300px;
height:300px;
left:50%;
@remylagerweij
remylagerweij / linkedin-scraper.js
Created February 22, 2021 20:27
Scraping people from search results on LinkedIn
let people_list = [];
(function(){
const person_naam = '.actor-name';
const person_title = '.subline-level-1';
const person_location = '.subline-level-2';
const person_job_function = '.mt2.t-12.t-black--light.t-normal.search-result__snippets-black';
function getAttribute(person, attribute){
@egeland
egeland / carousel.html
Last active May 2, 2024 05:23
Attempt at a simple image carousel for Aurelia
@remylagerweij
remylagerweij / grid.scss
Created March 2, 2017 12:38
12 Column SASS Grid
$grid-gutter: 20px;
$grid-columns: 12;
$grid-size-names: xxs, xs, sm, md, lg;
$grid-size: 0, 480px, 720px, 900px, 1080px;
$xs: 480px;
$sm: 720px;
$md: 900px;
$lg: 1080px;