Skip to content

Instantly share code, notes, and snippets.

View nonaybay's full-sized avatar
🎯
Focusing

Rafael Venancio nonaybay

🎯
Focusing
  • Santa Isabel, São Paulo, Brazil
View GitHub Profile
@nonaybay
nonaybay / mirrors.txt
Last active January 31, 2023 01:36
ubuntu mirrror
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/
#!/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
@nonaybay
nonaybay / input.scss
Created August 11, 2022 05:29
Generated by SassMeister.com.
@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);
@use 'sass:color';
@use 'sass:math';
@function scaler($weight, $value, $minimum, $maximum) {
$store-max: $maximum;
@if ($maximum > 100) {
$maximum: 100;
@use 'sass:color';
@use 'sass:math';
@function get-r($color) {
@return color.red($color);
}
@function get-g($color) {
@return color.green($color);
@use 'sass:color';
@use 'sass:list';
@use 'sass:map';
@use 'sass:math';
$xterm: (
1: #000000,
2: #800000,
3: #008000,
4: #808000,
# 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')
* {
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.
@charset "UTF-8";
* {
border: none;
box-sizing: border-box;
margin: 0;
outline: none;
padding: 0;
user-select: none;
}