Skip to content

Instantly share code, notes, and snippets.

View carjug's full-sized avatar
💭
confused by the usefulness of GitHub statuses

Carly Hiller carjug

💭
confused by the usefulness of GitHub statuses
  • 18F (work) + personal projects
  • Los Angeles, CA
View GitHub Profile
@carjug
carjug / bio.mdown
Last active September 14, 2015 03:29

Carly Jugler Bio

Carly Jugler is a Software Developer Student at Ada Developers Academy. She has a research background in ecology -- she studied forest and wetland ecosystems in her undergraduate degree. She was fortunate to have strong, independent women for research advisors and learned how to self-advocate and communicate clearly from them. Her background in ecology gives her a strong foundation for thinking systemically, which helps her immensely in the ever-evolving World of Tech. She's an introverted bad ass with a lot of grit.

Carly is looking to work in a company of any size, on a team where mutual respect, challenging ideas, continual learning, and commitment to the best possible product are top priorities. Currently, she is particularly interested in efficiency, security, and scalability; and that list keeps growing.

@carjug
carjug / grandfather.rb
Created June 22, 2015 02:48
Grandfather Clock -- LtP 14.4
def clock some_proc
current_time.to_i.times do
some_proc.call
end
end
dong = Proc.new do
@carjug
carjug / sortAlgorithm.html
Created March 3, 2015 23:06
Sort Algorithm js and HTML files
<!doctype HTML>
<head>
<title>
<link rel="stylesheet" type="text/css" href="">
</title>
</head>
<body>
<main>
<ul id="list">
</ul>
@carjug
carjug / magicBall.css
Created February 26, 2015 03:06
My Crystal Ball Game
@font-face {
font-family:'yesterdays_mealregular';
src: url('fonts/YESTERDAYSMEAL-webfont.eot');
src: url('fonts/YESTERDAYSMEAL-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/YESTERDAYSMEAL-webfont.woff') format('woff'),
url('fonts/YESTERDAYSMEAL-webfont.ttf') format('truetype'),
url('fonts/YESTERDAYSMEAL-webfont.svg#yesterdays_mealregular') format('svg');
font-weight: normal;
font-style: normal;
}
<script>
var guess, answer, message;
answer = Math.floor(Math.random() * 10);
while (guess != answer) {
guess = prompt("How many cats does the old lady own?");
if (guess == answer) {
message = "She has exactly " + guess + " cats!"
}
else {