https://k8slens.dev/
https://github.com/lensapp/lens
https://github.com/MuhammedKalkan/OpenLens
https://mikemiller.tech/2022/06/07/Building-OpenLens/
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 instructions: https://github.com/widget-/slack-black-theme | |
// | |
// First make sure the wrapper app is loaded | |
document.addEventListener("DOMContentLoaded", function() { | |
// Then get its webviews | |
let webviews = document.querySelectorAll(".TeamView webview"); |
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 bash | |
# export-aws-creds.sh | |
# https://github.com/jurawa | |
# When sourced, this script will export the AWS_ACCESS_KEY_ID and | |
# AWS_SECRET_ACCESS_KEY env vars from a specific profile in | |
# ~/.aws/credentials. | |
# It will also set AWS_PROFILE and AWS_DEFAULT_PROFILE, ensuring |
Note: for listening on iOS, you can use the apple podcast app which is fine, but I recommend getting either Downcast or Overcast which are both great podcast listening / management apps.
http://www.stuffyoushouldknow.com/
Probably the first one i started with. A must.
Assumes you will be running your local app at local.dev
, and already have a hosts file entry for this domain pointing to 127.0.0.1
.
openssl req -new -newkey rsa:2048 -sha1 -days 365 -nodes -x509 -keyout ~/path/to/local.dev.key -out ~/path/to/local.dev.crt
You can leave all the address and organization info blank.
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
## | |
# To run: | |
# irb > require '[PATH_TO_FILE]/phone_numbah' | |
# irb > PhoneNumbah.show_possibilities [PHONE_NUMBAH] | |
## | |
class PhoneNumbah | |
Digits = { "1" => ["1"], | |
"2" => ["A", "B", "C"], | |
"3" => ["D", "E", "F"], |
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 effect of http://blog.rubyhead.com/2012/12/02/speed-up-your-ruby/ tested on a 2010 Macbook pro. | |
Original with ruby 1.9.3p327: | |
ruby -v | |
ruby 1.9.3p327 (2012-11-10) [x86_64-darwin12.2.0] | |
time rake environment | |
real 0m35.411s |