Skip to content

Instantly share code, notes, and snippets.

View latimercaleb's full-sized avatar
🎯
Focusing, on beating zombies... with a stick

Calat latimercaleb

🎯
Focusing, on beating zombies... with a stick
View GitHub Profile
@latimercaleb
latimercaleb / css.css
Created February 17, 2020 17:51
Async Await + Promises
.one{
color: teal;
}
.two{
color: #D9B778;
}
.cell{
border-right: 1px dotted teal;
@latimercaleb
latimercaleb / app.component.css
Created October 22, 2019 03:35
App 6: Template-Driven Forms
.form-wrapper{
margin-top: 50px;
}
.form-group{
padding-left: 10px;
padding-right: 10px;
}
@latimercaleb
latimercaleb / active-users.component.html
Created September 29, 2019 03:59
App-5 Service and Dependancy Injection
<h3>Active Users</h3>
<ul class="list-group">
<li class="list-group-item"
*ngFor="let user of users; let i = index">
{{ user }} | <a href="#" (click)="onSetToInactive(i)">Set to Inactive</a>
</li>
</ul>
@latimercaleb
latimercaleb / app.component.html
Created September 26, 2019 23:52
App 4: Component Comms Practice
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Bind it!</h1>
<h4>App <span class="badge">4</span>: Components & Hooks Practice</h4>
<ol>
<li>Create three new components: GameControl, Odd and Even</li>
<li>The GameControl Component should have buttons to start and stop the game</li>
<li>When starting the game, an event (holding a incrementing number) should get emitted each second (ref = setInterval())</li>
<li>The event should be listenable from outside the component</li>
@latimercaleb
latimercaleb / snippets.cson
Created March 21, 2018 13:34
Atom CSON for basic html and VueJS
#HTML
'.text.html':
'HTML5 skeleton':
'prefix': 'doc'
'body': """
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Caleb">
@latimercaleb
latimercaleb / .gitignore
Created August 21, 2016 05:16 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #