Power Approx Value (Bytes) Bytes
-----------------------------------------
10 1 thousand 1 KB
16 16 thousand 64 KB
20 1 million 1 MB
30 1 billion 1 GB
| const graphiqlBrandingTweak = { | |
| ["postgraphile:graphiql:html"](html: string) { | |
| console.log("Applying GraphiQL Branding Tweak..."); | |
| return html.replace( | |
| "</head>", | |
| `<style type="text/css"> | |
| @media (prefers-color-scheme: dark) { | |
| html { | |
| filter: invert(1) hue-rotate(180deg); | |
| } |
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
I work as a full-stack developer at work. We are a Windows & Azure shop, so we are using Windows as our development platform, hence this customization.
For my console needs, I am using Cmder which is based on ConEmu with PowerShell as my shell of choice.
Yes, yes, I know nowadays you can use the Linux subsystem on Windows 10 which allow you to run Ubuntu on Windows. If you are looking for customization of the Ubuntu bash shell, check out this article by Scott Hanselman.
| {"version":1,"resource":"file:///d%3A/Programming/browser_automation/cypress.config.js","entries":[{"id":"BOJy.js","timestamp":1656185935826}]} |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |