This file contains hidden or 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
| que | |
| não | |
| o | |
| de | |
| a | |
| é | |
| você | |
| e | |
| eu | |
| um |
This file contains hidden or 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
| Ace-ace | |
| Ace-am | |
| Ace-axon | |
| Ace-bam | |
| Ace-base | |
| Ace-biolex | |
| Ace-can | |
| Ace-cane | |
| Ace-care | |
| Ace-city |
This file contains hidden or 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
| Ace-ace | |
| Ace-am | |
| Ace-axon | |
| Ace-bam | |
| Ace-base | |
| Ace-biolex | |
| Ace-can | |
| Ace-cane | |
| Ace-care | |
| Ace-city |
This file contains hidden or 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 | |
| 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 | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| 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() |
This file contains hidden or 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 lin.tests | |
| import lin.io | |
| val example = "Hello World!" | |
| fun main() { | |
| println(example) | |
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| <!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> |