Skip to content

Instantly share code, notes, and snippets.

@SK-Sam
SK-Sam / RubyTips.md
Last active September 3, 2020 09:00
Helpful Ruby Infos

This is how it's like to create a gist on Github. I've noticed this uses Markdown

@SK-Sam
SK-Sam / etcha
Created March 21, 2015 10:17
etcha
var userInput = $("#gridSize").val();
var size = userInput * userInput;
var createGrid = function(){
$("#create").click(function(){
for (i = 0; i <= size; i++) {
$("#container").append("<div id="grid"> </div>");
};
});