A collection of mostly local startup/tech/job hunting resources.
PDX Specific:
Jobs:
A collection of mostly local startup/tech/job hunting resources.
PDX Specific:
Jobs:
| ###### Initial user input | |
| # ask users name and save input as NAME | |
| read -p "Enter the name of the user being added, followed by [ENTER]: " NAME | |
| # ask group name and save input as GROUP | |
| read -p "Enter the name of the group being added, followed by [ENTER], (leave empty to skip): " GROUP | |
| ###### Helper functions |
| # bash/zsh completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names | |
| # *) local and remote tag names |
| #!/usr/bin/ruby | |
| # encoding: UTF-8 | |
| #emoji = %w(๐ ๐ป ๐น ๐บ ๐ฉ ๐ ๐ฝ ๐พ ๐ โก ๏ธ ๐ฅ ๐จ ๐ ๐ ๐ ๐ฃ ๐ป ๐ธ ๐น ๐บ ๐ ๐ฅ ๐ฌ ๐ฎ ๐ฅ ๐บ ๐ผ ๐ธ ๐ฐ ๐ฃ ๐ช ๐ซ ๐จ ๐ ๐ท ๐ฝ ๐ ๐ ๐) | |
| emoji = %w(โก) | |
| print emoji.sample |
| # bash/zsh completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names | |
| # *) local and remote tag names |
| var flifo = { | |
| actualArrivalTimeLocal: "01 Jan 0001 12:00 AM" | |
| actualDepartureTime: "6:51 a.m.", | |
| actualDepartureTimeLocal: "15 Sep 2016 6:51 AM", | |
| airSpeedKPH: "0", | |
| airSpeedMPH: "31", | |
| airTemperatureC: "-53", | |
| airTemperatureF: "-63", | |
| aircraftModel: "Boeing 737-800SFP", | |
| altitudeFt: "35809", |
| /** | |
| * BatchGeoKeyboardShortcuts stores and initializes all of the keyboard shortcuts | |
| * for the batchgeo map. | |
| */ | |
| window.BatchGeoKeyboardShortcuts = (function () { | |
| /** | |
| * _activeElements is a private state object for this module to keep track of which | |
| * shortcut contexts are active. document and #mapWrap are active by default on | |
| * page load. | |
| * |
| $('[data-event-action="upvote"]').each(function (i, el) { | |
| var $this = $(this); | |
| var interval = i * 350; | |
| setTimeout(function () { | |
| $this.click(); | |
| }, interval); | |
| }); |