- Select the object(s) to export
- Open the document properties window (Ctrl+Shift+D)
- Select "Resize page to drawing or selection"
- File > Save As Copy...
- Select Optimized SVG as the format if you want to use it on the web
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
<h1>Wordle</h1> | |
<div id="grid"></div> | |
<style> | |
body, html { | |
background: #111; | |
color: white; | |
font-family: sans-serif; | |
text-align: center; | |
text-transform: uppercase; | |
} |
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
const reducedFormStringsByDivisionAmount = [ | |
'', 'mil', 'mi', 'bi', 'tri', 'quatr', 'quint', 'sext', 'sept', | |
]; | |
export function getNumberReducedForm(value: number): string { | |
const numberStr = value.toString(); | |
// encontre a quantidade de classes numéricas que se tornarão não significativas | |
// 1350 = 1.350 => divisionAmount = 1 | |
// 18352140 = 18.352140 => divisionAmount = 2 |
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
#!/usr/bin/env bash | |
#VARIAVEIS | |
URL_GOOGLE_CHROME="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" | |
URL_TEAMVIEWER="https://download.teamviewer.com/download/linux/version_13x/teamviewer_amd64.deb" | |
DIRETORIO_DOWNLOADS="$HOME/Downloads/programas" | |
PROGRAMAS_PARA_INSTALAR=( | |
flameshot |

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
# Ubuntu 20 LTS Server Setup for Laravel | |
# Login as root user | |
sudo su - | |
# Update list of available packages | |
apt update |
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
/** | |
* Conjugar qualquer verbo (regular ou irregular). | |
* | |
* @param {string} verb Um verbo qualquer. | |
* @returns {object} Toda as conjugações. | |
*/ | |
var conjugar = function (verb) { | |
var build = function (verb) { | |
/** | |
* Obter o prefixo e o sufixo de um verbo. |
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
var pluralize = (function() { | |
'use strict'; | |
// Lista de palavras terminadas | |
// em -ão que têm regras diferentes. | |
var irregulars = { | |
// Quando deve assumir -ães. | |
aes: [ | |
'alemão', |
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
...e$e.$...e$ ...e$e.$...e | |
!$6lkasd!$6lkasd!$6l !$6lkasd!$6lkasd! | |
;,a1wert;,a1wert;,a1wert ;,a1wert;,a1wert;,a1we | |
.asxzcvb.asxzcvb.asxzcvb.as .asxzcvb.asxzcvb.asxzcvb. | |
1qaswedfqas1wedfqas1wedfqas1wedfqas1wedfqas1edfqas1ewdfqa | |
:lkjhgfdlkj:hgfdlkj:hgfdlkj:hgfdlkj:hgfdlkj:gfdhlkj:gfdhlk | |
3edcvfr4edc3vfr4edc3vfr4edc3vfr4edc3vfr4edc3fr4vedc3fr4ved | |
1234ewqa2341ewqa2341ewqa2341ewqa2341ewqa2341wqa2341weqa234 | |
o[piuytr[piouytr[piouytr[piouytr[piouytr[pioytru[pioytru[p | |
z/xcvbnm/xczvbnm/xczvbnm/xczvbnm/xczvbnm/xczbnmv/xczbnmv/x |
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
<body> | |
<div id="⚛️"></div> | |
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.js"></script> | |
<script type="text/babel"> | |
ReactDOM.render(<div>Hello World!</div>, document.getElementById('⚛️')) | |
</script> | |
</body> |
NewerOlder