Skip to content

Instantly share code, notes, and snippets.

View jancantor's full-sized avatar
🤫

Jan Cantor jancantor

🤫
View GitHub Profile
@jancantor
jancantor / GMK-Star-Wars.kbd.json
Last active June 15, 2020 02:18
GMK Star Wars
[
{
"backcolor": "#212121",
"name": "GMK Star Wars",
"author": "Jan Cantor",
"radii": "10px",
"switchMount": "cherry",
"switchBrand": "gateron",
"switchType": "KS-3-Tea",
"pcb": true,
@jancantor
jancantor / _variables.scss
Last active July 24, 2019 19:40
Bootstrap color overrides
// Learn specific color variables
$blue: #00bce1;
$purple: #847cb9;
$green: #75B74F;
$red: #f0584F;
$yellow: #f9c51a;
$orange: #f77304;
// Bootstrap default - no change
$indigo: #6610f2;
@jancantor
jancantor / database.yml
Last active July 24, 2019 18:31
database.yml for rails using mysql
# MySQL. Versions 4.1 and 5.0 are recommended.
#
# Install the MYSQL driver
# gem install mysql2
#
# Ensure the MySQL gem is defined in your Gemfile
# gem 'mysql2'
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
@jancantor
jancantor / calendarData.json
Last active July 24, 2019 18:31
calendarData.json
[
// RED
{"className": "red","title": "Write new post about Taylor Swift's breakup songs",
"start": "2014-07-09T16:00:00",
"html": "description-3"
},
{
"className": "red",
"title": "Does Taylor Swift Primp Post-Workout for Paparazzi?",
"start": "2014-07-16T16:00:00",
<section class="hero">
<div class="img-wrap">
<img src="img.jpg" alt="" />
</div>
</section>
.hero {
.img-wrap {
position: relative;
top: 0;
#
# Expressions & Conditionals
#
games = ["Super Mario Bros.", "Contra", "Metroid", "Mega Man 2"]
# Unless
unless games.empty?
puts "Games in your vast collection: #{games.count}"
end