Skip to content

Instantly share code, notes, and snippets.

View opensourcekam's full-sized avatar
🎯
Focusing

✨OSKAM✨ opensourcekam

🎯
Focusing
View GitHub Profile
@opensourcekam
opensourcekam / index.jade
Created September 17, 2016 12:51
twitch.tv-Zealot
mixin tile
div.block.tile
div.pivoter
div
span#status
span#username
img(src='')#prev
// All the good stuff :)
meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0')
<div class="container">
<form class="form-signin">
<h2 class="form-signin-heading">Please sign in</h2>
<label for="inputEmail" class="sr-only">Email address</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required="" autofocus="">
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required="">
<div class="checkbox">
<label>
/* @import url('http://example.com/example_style.css'); */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section */
/***********************************************/
/****************************************/
/* HubSpot Style Boilerplate */
@opensourcekam
opensourcekam / Kameron Robinson - Portfolio.markdown
Created August 31, 2015 06:26
Kameron Robinson - Portfolio
@opensourcekam
opensourcekam / countAverageKAR
Created October 16, 2014 19:31
Count positive and negative numbers and compute the average of numbers
//Kameron Robinson LAB 5.1 10/16/2014
import java.util.*;
public class countAverageKAR{
public static void main(String[] args)
{
int pos = 0;
int neg = 0;
int sum = 0;