Skip to content

Instantly share code, notes, and snippets.

@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;
## Checklist (remove before placing PR)
[ ] Specs (if applicable)
[ ] Documentation (if applicable)
[ ] Visual (Screenshot / GIF / mp4) of new feature (if applicable)
## PR Description:
**JIRA Issue**: [EXAMPLE-XXX](https://EXAMPLE.atlassian.net/browse/EXAMPLE-XXX)
`this` containing `that` was emitting errors. That has now been fixed :)
## Changelog
@remylagerweij
remylagerweij / .zshrc
Last active May 2, 2024 05:23
zshrc file, aliasses etc.
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/remylagerweij/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
@remylagerweij
remylagerweij / podcast-specs.xml
Created April 9, 2020 09:58
Podcast - RSS Specification
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">
<channel>
<title>Podcast Title</title>
<atom:link href="https://www.mypodcastfeed.com/feed/podcast/" rel="self" type="application/rss+xml" />
<link>https://www.podcasturl.com</link>
<description>Podcast description</description>
<lastBuildDate>Fri, 19 Jan 2018 01:45:39 +0000</lastBuildDate>
<language>en-US</language>
<copyright />