- 1 6 qt clear plastic shoe box (to be used for supplies) no more than 5” tall (no lid)
- 2 Large Boxes of Tissues
- 3 Boxes of Crayons (24 count)
- 1-2 Packs of Markers
- 24 Pencils- sharpened- plain #2 (no designs)
- 2 Solid Pink Erasers
- 1 Pair of Fiskars Scissors
- 5-6 Glue Sticks
This file contains hidden or 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
(footprint "pg1350-DR" (version 20211014) (generator pcbnew) | |
(layer "F.Cu") | |
(tedit 617C445D) | |
(attr smd) | |
(fp_text reference "REF**" (at 0 0) (layer "F.Fab") hide | |
(effects (font (size 1 1) (thickness 0.15))) | |
(tstamp 97591645-4003-4523-81f2-023856cf2ba5) | |
) | |
(fp_text value "pg1350-DR" (at 0 7) (layer "F.Fab") | |
(effects (font (size 1 1) (thickness 0.15))) |
This file contains hidden or 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
########################################################## | |
# Setting up correct Terminal coloring | |
# | |
# See: | |
# https://jdhao.github.io/2018/10/19/tmux_nvim_true_color/ | |
########################################################## | |
# Set up colors | |
set -g default-terminal "tmux-256color" | |
# tell Tmux that outside terminal supports true color |
This file contains hidden or 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
<!-- Piwik --> | |
<script type="text/javascript"> | |
var _paq = _paq || []; | |
_paq.push(['trackPageView']); | |
_paq.push(['enableLinkTracking']); | |
//Store Piwiks tracking information so we can reference it later | |
_paq.push([function() { |
This file contains hidden or 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
# ************************************ | |
# Default template in module puppetlabs-apache | |
# Managed by Puppet | |
# ************************************ | |
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
ServerName suretybonds.dev | |
LoadModule passenger_module /usr/local/rvm/gems/ruby-2.1.2/gems/passenger-5.0.6/buildout/apache2/mod_passenger.so |
This file contains hidden or 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
<body> | |
<div id="wrapper"> | |
<h1>Evan You</h1> | |
<h2>Design, Code & Things in Between </h2> | |
<p><a href="http://blog.evanyou.me" target="_blank">Blog</a></p> | |
<p><a href="https://twitter.com/youyuxi" target="_blank">Twitter</a></p> | |
<p><a href="https://github.com/yyx990803" target="_blank">Github</a></p> | |
<p><a href="https://plus.google.com/u/1/112810528656728788190" target="_blank">G+</a></p> | |
<p><a href="http://weibo.com/arttechdesign" target="_blank">微博</a></p> | |
</div> |
This file contains hidden or 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
[{ | |
logs: ['something', 'else', 'call', 'phone'] | |
}, { | |
logs: ['something', 'sink', 'vehicle', 'bathroom'] | |
}, { | |
logs: ['cats'] | |
}] |
This file contains hidden or 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
getRandomStr = () -> | |
result = '' | |
validChars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
# Since vanilla for loops are nearly impossible in CoffeeScript... | |
outputStr = [ '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '' ] | |
outputStr = outputStr | |
.map (s) -> | |
return validChars[Math.floor(Math.random() * validChars.length)] | |
.join('') | |
return outputStr |
This file contains hidden or 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
[ | |
"AK", | |
"AL", | |
"AR", | |
"AZ", | |
"CA", | |
"CO", | |
"CT", | |
"DC", | |
"DE", |
This file contains hidden or 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
fieldKeys = { | |
"1": "Name", | |
"2": "Email", | |
"3": "Some Field" | |
} | |
usefulInfo = entries.map(function(entryArr) { | |
return entryArr.reduce(function(obj, row, idx) { | |
var correctKey = fieldKeys[idx] | |
obj[correctKey] = row; |
NewerOlder