❤️🔥
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
Inicia un servidor VNC temporal en docker. | |
Comando: docker run -p 6080:80 dorowu/ubuntu-desktop-lxde-vnc | |
Luego de correr el comando ir a http://[ip-del-servidor]:6080 | |
Se puede cambiar el puerto por el deseado, el puerto interno del contenedor es 80 | |
----------- |
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 {import('tailwindcss').Config} */ | |
module.exports = { | |
// Change this to your project source folder | |
content: ['./web/**/*.go'], | |
plugins: [], | |
theme: { | |
extend: {}, | |
} | |
} |
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
[ | |
{ | |
"nameES": "Afganistán", | |
"nameEN": "Afghanistan", | |
"iso2": "AF", | |
"iso3": "AFG", | |
"phoneCode": "93" | |
}, | |
{ | |
"nameES": "Albania", |
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
[ | |
{ | |
"label":"Pacific/Midway (GMT-11:00)", | |
"tzCode":"Pacific/Midway", | |
"name":"(GMT-11:00) Midway", | |
"utc":"-11:00" | |
}, | |
{ | |
"label":"Pacific/Niue (GMT-11:00)", | |
"tzCode":"Pacific/Niue", |
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
package timezones | |
type Timezone struct { | |
Label string `json:"label"` | |
TzCode string `json:"tzCode"` | |
Name string `json:"name"` | |
Utc string `json:"utc"` | |
} | |
var Timezones = []Timezone{ |
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
#!/bin/bash | |
echo "" | |
echo "-----------------------------------------" | |
echo "RDP Server Default Access Credentials" | |
echo "Username: abc" | |
echo "Password: abc" | |
echo "-----------------------------------------" | |
echo "" |
OlderNewer