Skip to content

Instantly share code, notes, and snippets.

View annathelibri's full-sized avatar
📧
git commit -m "Oops"

Anna Silva annathelibri

📧
git commit -m "Oops"
  • Indaiatuba, SP
  • 22:29 (UTC -03:00)
View GitHub Profile
@annathelibri
annathelibri / ptbr-50k-words.txt
Created March 13, 2024 16:09
most-common-words-by-language / no numbers
que
não
o
de
a
é
você
e
eu
um

Hello, World!

Text:

Hello, World!

Pattern (exact): Hello, World!

Ace-ace
Ace-am
Ace-axon
Ace-bam
Ace-base
Ace-biolex
Ace-can
Ace-cane
Ace-care
Ace-city
Ace-ace
Ace-am
Ace-axon
Ace-bam
Ace-base
Ace-biolex
Ace-can
Ace-cane
Ace-care
Ace-city
#!/bin/bash
wget https://github.com/Racle/trello-desktop/releases/download/v0.2.0/Trello-linux-0.2.0.zip -O trello.zip
sudo mkdir /opt/trello
sudo unzip trello.zip -d /opt/trello/
sudo ln -sf /opt/trello/Trello /usr/bin/trello
echo -e '[Desktop Entry]\n Version=0.2.0\n Name=Trello\n Exec=/usr/bin/trello\n Icon=/opt/trello/resources/app/static/Icon.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/trello.desktop
sudo chmod +x /usr/share/applications/trello.desktop
@annathelibri
annathelibri / LinuxVector.svg
Last active August 18, 2019 23:47
Linux SVG Logo - CC BY-NC-SA 4.0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import java.io.File
import java.util.concurrent.atomic.AtomicLong
fun walk(vararg files: File, onFile: (File) -> Unit) {
for (file in files) if (file.isDirectory) walk(onFile = onFile, files = *file.listFiles()) else onFile(file)
}
val charCount = AtomicLong()
val lineCount = AtomicLong()
package lin.tests
import lin.io
val example = "Hello World!"
fun main() {
println(example)
}
@annathelibri
annathelibri / cafeteria.svg
Last active May 23, 2021 15:55
Cafeteria SVG Logo - CC BY-NC-SA 4.0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<title>2D</title>
<meta charset="UTF-8">
<style>
body, canvas, html { margin:0; padding:0; border:0 none; }
canvas { display: block; cursor: none; }
</style>
</head>