- What problem do you solve and why would I give you money to solve it?
- When’s the last time someone went above and beyond the call of duty at the company/on the team? What did they do?
- What are the current goals that the company is focused on, and how does this team/role work to support hitting those goals?
- What are the projects in this company you think are really key to its future and how would a motivated person go about getting on them?
- What do you see as your largest technical challenge currently?
- Pain Points beyond headcount
- What is a project you wish a new member of the team could take on?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cat << X0 | |
| [0m | |
| [1;33m/[1;30;43m [38;5;16m[48;5;172m\ ‾‾‾ ‾[1;38;5;227m___ [38;5;16m‾‾ ‾‾‾‾‾ ‾‾‾ ‾‾‾ ‾‾‾‾\/‾‾‾ ‾ ‾‾‾‾‾‾‾‾[0;33m\[0m | |
| [1;30;43m( __[38;5;16m[48;5;172m| [1;38;5;227m( / \ / / _ [33;40m|[0m | |
| [1;33m\[38;5;16m[1;30;43m ) [48;5;172m[1m| [38;5;130m/[1;38;5;227m/--/ / _ _ __/ _ _ / \ / / [30m [0;33m|[0m | |
| [1;33m:[38;5;130m[48;5;172m /[1;38;5;227m/ (_ /‾) (_\ / ) (_/ (_)/ ) [38;5;130m/[1;38;5;227m/--/ / / [0;33m|[0m | |
| [1;30mx [33m.[38;5;130m[48;5;172m [1;38;5;227m_ ‾‾ [38;5;130m/[1;38;5;227m/ (_ / / [1;33m [33;40m:[0m | |
| [1;30m0 [33m|[38;5;130m[48;5;172m [1;38;5;227m' ) / _ [33;40m|[0m | |
| [1;30m: [33m|[38;5;130m[48;5;172m /[1;38;5;227m/--/ _ _ _ ' ) / _ [0;33m|[0m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Ubiquiti Unifi Controller on Ubuntu 20.04. | |
| # As tested on a fresh install of ubuntu-20.04.1-live-server, August 22nd 2020. | |
| # Thanks to https://gist.github.com/tmuncks for posting the updated install steps. | |
| sudo apt update | |
| sudo apt install --yes apt-transport-https | |
| echo 'deb https://www.ui.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list | |
| sudo wget -O /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import subprocess | |
| __all__ = ["transform"] | |
| __version__ = '0.3' | |
| __author__ = 'Christoph Burgmer <cburgmer@ira.uka.de>' | |
| __url__ = 'https://github.com/cburgmer/upsidedown' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'Twas the night before Christmas, when all through the racks | |
| Not a server was alerting, not even Compaqs. | |
| The backups were written to tapes with care | |
| In hopes that later the data would be there. | |
| The machines were nestled all snug in their sleds | |
| Whilst visions of vengeance danced in their heads; | |
| And oncall in his three-wolf and I in my rack. | |
| Had just settled down for some syn and some ack. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'json' | |
| require 'time' | |
| require 'net/http' | |
| require 'pushover' | |
| # trimet stop ids for easy expansion to other stops | |
| stops = {"lents" => 13135, "union" => 7763} |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.