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
http://mirror.ufam.edu.br/ubuntu/ | |
https://ubuntu.letscloud.io/ubuntu/ | |
http://ubuntu.c3sl.ufpr.br/ubuntu/ | |
https://mirror.uepg.br/ubuntu/ | |
http://mirror.ufscar.br/ubuntu/ | |
https://ubuntu.itsbrasil.net/ubuntu/ | |
http://ubuntu-archive.locaweb.com.br/ubuntu/ | |
http://sft.if.usp.br/ubuntu/ | |
http://ubuntu.mti.mt.gov.br/ | |
http://archive.ubuntu.com/ubuntu/ |
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/bash | |
PATH="" | |
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games" | |
# android | |
ANDROID_HOME="${HOME}/android/sdk" | |
ANDROID_ROOT=$ANDROID_HOME | |
ANDROID_SDK=$ANDROID_ROOT |
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
@use 'sass:color'; | |
@use 'sass:math'; | |
@function scale($v, $w, $n, $x) { | |
@if ($w > 0) { | |
$i: ($x - $v); | |
$s: (($w * $s) / 100); | |
$v: ($v + $s); | |
} @else if ($w < 0) { | |
$i: ($v - $n); |
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
@use 'sass:color'; | |
@use 'sass:math'; | |
@function scaler($weight, $value, $minimum, $maximum) { | |
$store-max: $maximum; | |
@if ($maximum > 100) { | |
$maximum: 100; |
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
@use 'sass:color'; | |
@use 'sass:math'; | |
@function get-r($color) { | |
@return color.red($color); | |
} | |
@function get-g($color) { | |
@return color.green($color); |
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
@use 'sass:color'; | |
@use 'sass:list'; | |
@use 'sass:map'; | |
@use 'sass:math'; | |
$xterm: ( | |
1: #000000, | |
2: #800000, | |
3: #008000, | |
4: #808000, |
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
# Port from rust-lang Guessing Game: | |
# link: https://doc.rust-lang.org/book/ch02-00-guessing-game-tutorial.html | |
import random | |
SN = random.randint(0, 101) | |
def main(): | |
print('+ Guess the number') |
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
* { | |
box-sizing: border-box; | |
border: none; | |
margin: 0; | |
outline: none; | |
padding: 0; | |
} | |
*::before, *::after { | |
box-sizing: inherit; | |
} |
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 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
@charset "UTF-8"; | |
* { | |
border: none; | |
box-sizing: border-box; | |
margin: 0; | |
outline: none; | |
padding: 0; | |
user-select: none; | |
} |
NewerOlder