Skip to content

Instantly share code, notes, and snippets.

@ideasatrandom
ideasatrandom / index.css
Created June 17, 2018 07:34
basic-form-javascript created by ideasatrandom - https://repl.it/@ideasatrandom/basic-form-javascript
Empty file
@ideasatrandom
ideasatrandom / index.css
Created June 17, 2018 07:28
basic-form-javascript created by ideasatrandom - https://repl.it/@ideasatrandom/basic-form-javascript
Empty file
@ideasatrandom
ideasatrandom / components.add-todo.js
Last active July 29, 2016 21:08
Ember.js - To-Do Twiddle
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
submit() {
const text = this.get('text');
this.get('onAdd')(text);
this.set('text', "");
this.$('input').focus();
@ideasatrandom
ideasatrandom / index.html
Last active August 29, 2015 14:10
reqr.es JSON api - Test
<h1>reqr.es JSON api - Example</h1>
<p>Check the developer console for the returned JSON Response</p>
@ideasatrandom
ideasatrandom / README.md
Last active August 29, 2015 14:02
Trying out bl.ocks.org Gist viewer

#bl.ocks.org example

@ideasatrandom
ideasatrandom / 0_reuse_code.js
Created June 9, 2014 04:43
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console