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:
| 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, |
I hereby claim:
To claim this, I am signing this object:
| <ul class="major-second"> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> |
| 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; |
| 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| |