I hereby claim:
- I am usirin on github.
- I am umut (https://keybase.io/umut) on keybase.
- I have a public key ASDuPmKKQqqh0k6ZqzwHT5vsKs50u3F29PRccsLiPLk_MAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>New HTML5 Starter</title> | |
| <!-- <link rel="stylesheet" media="screen" href="/style.css"> --> | |
| </head> | |
| <body> | |
| </body> |
| javascript: var v = document.querySelector('video'); var t = prompt('Set the playback rate'); v.playbackRate = parseFloat(t) |
| . |
| package myHashTable; | |
| import java.util.Arrays; | |
| public class myHash { | |
| private int capacity; | |
| private double max_load_factor; | |
| private int resize_factor = 2; | |
| private int search_limit = 0; | |
| private int probing_type; |
| package myHashTable; | |
| import java.util.Arrays; | |
| public class assignment { | |
| public static void main(String[] args) { | |
| // keys to add | |
| int[] keys = {517, 492, 27, 116, 132, 30, 552, 725, 627, 192}; | |
| System.out.println("Keys to Add: " + Arrays.toString(keys)); | |
| // HASH TABLE PROPERTIES |
| # normal mode | |
| 'atom-text-editor.vim-mode-plus.normal-mode': | |
| ', a': 'editor:toggle-line-comments' | |
| ', e v': 'settings-view:install-packager-and-theme' | |
| ':': 'vim-mode-plus-ex-mode:open' | |
| ';': 'vim-mode-plus-ex-mode:open' | |
| '!': 'vim-mode-plus-ex-mode:toggle-setting' | |
| 'g f': 'open-this:here' |
| javascript: var v = document.querySelector('video'); var t = prompt('Set the playback rate'); v.playbackRate = parseFloat(t) |
| import * as polished from 'polished' | |
| import range from 'lodash.range' | |
| const unit = (value, type) => `${value}${type}` | |
| const relative = value => unit(value, 'em') | |
| const absolute = value => unit(value, 'rem') | |
| const lighten = (val, percent) => polished.lighten(percent / 100, val) | |
| const darken = (val, percent) => polished.darken(percent / 100, val) | |
| const saturate = (val, percent) => polished.saturate(percent / 100, val) | |
| const rgba = (r, g, b, a) => `rgba(${r}, ${g}, ${b}, ${a})` |
| # Your snippets | |
| # | |
| # Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
| # expand the prefix into a larger code block with templated values. | |
| # | |
| # You can create a new snippet in this file by typing "snip" and then hitting | |
| # tab. | |
| # | |
| # An example CoffeeScript snippet to expand log to console.log: | |
| # |