This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set theResponse to display dialog "Client Name" default answer "" with icon note buttons {"Cancel", "Continue"} default button "Continue" | |
set myQuery to "tag:^" & text returned of theResponse & "*" | |
set lilyResume to "tag:\"📗 Resume\" " & myQuery | |
set lilyInterview to "tag:\"🗣 Interview\" " & myQuery | |
set lilyCoverLetter to "tag:\"📝 Letters\" " & myQuery | |
set lilyDocuments to "tag:\"📘 LinkedIn\" " & myQuery | |
tell application "Evernote" | |
set myNotes to find notes lilyResume | |
-- open collection window with query string lilyResume | |
set myNote to item 1 of myNotes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name=$inputline | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url=$inputline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<strong style="font-family:'Open Sans';color:#24D498;font-size:14px">Chris Savoie</strong> | |
<a href="https://lilypadresumes.com" style="display:block;font-family:'Open Sans';font-size:10px;color:#7F8F9E;font-style:italic;text-decoration:none;letter-spacing:0.03em">Lilypad Career Marketing</a> | |
<hr> | |
<strong style="font-family:'Open Sans';color:#249bd6;font-size:14px">Chris Savoie</strong> | |
<p style="dislpay:block;font-family:'Open Sans';font-size:10px;margin:0;padding:0;"> | |
<a href="https://chris-savoie.com" style="font-style:italic;color:#7F8F9E;text-decoration:none;letter-spacing:0.03em">Portfolio</a> | |
<span style="color:#c4ccd4;">•</span> | |
<a href="https://linkedin.com/in/chrissavoe" style="font-style:italic;color:#7F8F9E;text-decoration:none;letter-spacing:0.03em">LinkedIn</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains the information needed for Shopify to authenticate | |
# requests and edit/update your remote theme files. | |
# | |
# 1. Set up a private app (https://help.shopify.com/api/guides/api-credentials#generate-private-app-credentials) | |
# with "Read and write" permissions for "Theme templates and theme assets". | |
# 2. Replace the required variables for each environment below. | |
# | |
# password, theme_id, and store variables are required. | |
# | |
# For more information on this config file: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |