Skip to content

Instantly share code, notes, and snippets.

@bobbysmith
bobbysmith / extensions.txt
Created July 17, 2017 14:35
my vscode extensions
CraigMaslowski.erb
PKief.material-icon-theme
QassimFarid.ejs-language-support
Zignd.html-css-class-completion
abusaidm.html-snippets
anoff.theme-monokai-light
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
dbaeumer.vscode-eslint
dzannotti.vscode-babel-coloring
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Input",
"editor.fontSize": 16,
"editor.lineHeight": 19,
"editor.tabSize": 2,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "boundary",
"editor.renderIndentGuides": true,
"editor.detectIndentation": false,

Keybase proof

I hereby claim:

  • I am bobbysmith on github.
  • I am bobbysmith (https://keybase.io/bobbysmith) on keybase.
  • I have a public key whose fingerprint is BDB6 09D7 7F9D D377 9ED4 6FBD FDAC C752 3293 EFA7

To claim this, I am signing this object:

@bobbysmith
bobbysmith / SassMeister-input-HTML.html
Created February 2, 2016 16:52
Generated by SassMeister.com.
<ul class="major-second">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
@bobbysmith
bobbysmith / ToDo.java
Created October 28, 2015 01:15
task list
package bobby.taskList;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
public class ToDo {
private JTree tree;
private JScrollPane treeView;
@bobbysmith
bobbysmith / gist:11231994
Created April 23, 2014 20:52
all toppings vegetarian
def vegetarian?
# loops through @toppings, and checks if each topping is vegetarian
# if all toppings are vegetarian, return true
# @toppings.each do |topping|
# if topping.vegetarian != true
# return false
# end
# end
# true
@toppings.all? do |topping|