These are VMs running built with JavaScript/WASM allowing you to run an operating system within your browser, all client side.
View go_snnipts.json
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
{ | |
// Place your snippets for go here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "prefix": "log", | |
// "body": [ | |
// "console.log('$1');", |
View SWS_2.15.0_vs_2.14.2.md
Static Web Server
2.15.0
vs 2.14.2
Static Web Server A generic Static Web Server load testing comparison between
2.15.0
and2.14.2
versions.
$ static-web-server -d ./public
2.14.2
View interfaces
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
auto eth0 | |
iface lo inet loopback | |
iface eth0 inet dhcp |
View json.lua
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
-- example reporting script which demonstrates a custom | |
-- done() function that prints results as JSON | |
done = function(summary, latency, requests) | |
io.write("\nJSON Output:\n") | |
io.write("{\n") | |
io.write(string.format("\t\"requests\": %d,\n", summary.requests)) | |
io.write(string.format("\t\"duration_in_microseconds\": %0.2f,\n", summary.duration)) | |
io.write(string.format("\t\"bytes\": %d,\n", summary.bytes)) | |
io.write(string.format("\t\"requests_per_sec\": %0.2f,\n", (summary.requests/summary.duration)*1e6)) |
View README.md
How to open a file/line number with VSCode from Hotspot
- Open Hotspot
- Settings > Code navigation > Custom...
- Then Copy/paste the lines below
/usr/bin/code -g %f:%l:%c
- On for example Caller/Callee tab, right click on file location wanted.
- Finally, click open in editor
View settings.json
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
{ | |
// ---- Editor ---- | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 12, | |
"editor.fontLigatures": true, | |
"editor.detectIndentation": true, | |
"editor.wordWrap": "on", | |
"editor.formatOnSave": false, | |
"editor.rulers": [ | |
132 |
View keybase.md
Keybase proof
I hereby claim:
- I am joseluisq on github.
- I am joseluisq (https://keybase.io/joseluisq) on keybase.
- I have a public key ASCqLTIgaAbKLdRO9_EgKnYlH747jhjMPp_qFwFOcklXtgo
To claim this, I am signing this object:
View env.ts
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
/** | |
* Return an environment variable typed value from `process.env`. | |
* It also supports a default value in case of `undefined`. | |
* | |
* The function will follow these steps to take a typed value: | |
* 1. First it will try to get the env value from `process.env`. | |
* 2. Then if `undefined` then it try with the default environment variable value if defined. | |
* 3. Otherwise if the default value is `undefined` then it will return the Javascript default values: | |
* - Boolean: `false` | |
* - String: `""` |
NewerOlder