- firefox
- disable hardware acceleration
- bitwarden
- account
- amdgpu driver
- vscode via terminal
- Drop-down Terminal:
- Ubuntu - Guake
- Debian - Yakuake
- zsh
youtube-dl -ciw -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio' --merge-output-format mp4 -o "%(title)s.%(ext)s" <link>
youtube-dl -ciw -f "bestaudio/best" -o "%(artist)s - %(title)s.%(ext)s" -v --extract-audio --audio-format wav --embed-thumbnail --add-metadata --metadata-from-title "%(artist)s - %(title)s"
navigator.geolocation
é a classe
navigator.geolocation.getCurrentPosition()
é a API que vc quer
navigator.geolocation.getCurrentPosition(function(response) { return console.log(response) })
é pra pegar a resposta
a resposta:
'coords': {
'latitude': -22.848907399999998,
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
# Button | |
O Componente `Button` permite de modo fácil criar botões seguindo um estilo padrão com diversas opções | |
de customização, podendo até mesmo englobar um outro componente, como pode ser visto nos exemplos abaixo. | |
Além disso, os botões também podem ser acionados por um shortcut e executar métodos por este atalho ou quando clicados. | |
<div class="iframe-wrapper"> | |
<iframe src="http://bundlebrowser.didiraja.now.sh/"></iframe> | |
</div> |
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
# Button | |
O Componente `Button` permite de modo fácil criar botões seguindo um estilo padrão com diversas opções | |
de customização, podendo até mesmo englobar um outro componente, como pode ser visto nos exemplos abaixo. | |
Além disso, os botões também podem ser acionados por um shortcut e executar métodos por este atalho ou quando clicados. | |
<div class="iframe-wrapper"> | |
<iframe src="http://bundlebrowser.didiraja.now.sh/"></iframe> | |
</div> |
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
rem(value) { /* separate mixin, so it can be used elsewhere */ | |
u = 'px'; | |
if (u is 'px') { | |
return unit(value/16, 'rem'); | |
} else { | |
return unit(value, u); | |
} | |
} |
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
// O importante é que o header e o emailsender possuam um email de mesmo domínio | |
// Outro detalhe é '-r' que vai junto ao $emailsender. Para mais detalhes, https://wiki.locaweb.com.br/index.php?title=Como_enviar_e-mails_com_a_fun%C3%A7%C3%A3o_mail()_do_PHP&redirect=no | |
$nomeremetente = 'Sistema The Box - Concept Living <[email protected]>'; | |
$emailsender = '[email protected]'; | |
$headers = "MIME-Version: 1.1\r\n"; | |
$headers .= "Content-type: text/html; charset=utf-8\r\n"; | |
$headers .= "From: $nomeremetente\r\n";// remetente |