- 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 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
I recently installed Ubuntu server on a laptop with a 4K display. While the installer appears to be in text, it apparently uses a graphical mode, and setting vga=799 in the kernl boot parameters did not work. | |
To decrease the resolution, you have to pass a kernel boot parameter with the monitor "name" as seen by edid. | |
You can do this to list monitors without xrandr | |
find /sys/devices -name "edid" | |
That will produce a listing like this: |
This file contains 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
type VaultDriver struct { | |
vaultClient *vaultapi.Client | |
project string | |
} | |
func (d VaultDriver) TokenRenewer(ctx context.Context) error { | |
renewer, err := d.vaultClient.NewRenewer(&vaultapi.RenewerInput{ | |
Secret: &vaultapi.Secret{ | |
Auth: &vaultapi.SecretAuth{ | |
ClientToken: d.vaultClient.Token(), |
This file contains 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
I remember very clear I cry when I finish volume 3 of Knuth. | |
% | |
I am work on CSS SQL. | |
% | |
First sign of depression in devops is denial: you start of ignore Nagios alert. | |
% | |
In devops language is not success unless is another language++. | |
% | |
In devops you are addict to graph if first thought after orgasm is send duration and intensity to Graphite. | |
% |
1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
This file contains 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
/* | |
This script, when used with Google Apps Scripts, will delete 400 emails and | |
can be triggered to run every few minutes without user interaction enabling you | |
to bulk delete email in Gmail without getting the #793 error from Gmail. | |
Google returns a maximum of 500 email threads in a single API call. | |
This script fetches 400 threads in case 500 threads is causing timeouts | |
Configure the search query in the code below to match the type of emails | |
you want to delete |