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
ter jul 21 2020 qui mar 15 2018 gpg-pubkey 307e3d54-5aaa90a5 (none) (none)SuSE Package Signing Key <[email protected]> == (none) (none) | |
ter jul 21 2020 seg mai 05 2014 gpg-pubkey 3dbdc284-53674dd4 (none) (none)openSUSE Project Signing Key <[email protected]> == (none) (none) | |
qua jul 22 2020 seg set 15 2014 gpg-pubkey 1abd1afb-54176598 (none) (none)PackMan Project (signing key) <[email protected]> == (none) (none) | |
qua jul 22 2020 ter jun 09 2020 nomachine 6.11.2-1 x86_64 NoMachine S.a.r.l.NoMachine S.a.r.l. <[email protected]> == Linux (none) | |
qua jul 22 2020 qui abr 05 2007 gpg-pubkey 7fac5991-4615767f (none) (none)Google, Inc. Linux Package Signing Key <[email protected]> == (none) (none) | |
qui jul 23 2020 qua jul 22 2020 |
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
/* Material Design color palette: https://material.io/design/color/the-color-system.html */ | |
:root { | |
--material-color-red: #f44336; | |
--material-color-red-50: #ffebee; | |
--material-color-red-100: #ffcdd2; | |
--material-color-red-200: #ef9a9a; | |
--material-color-red-300: #e57373; | |
--material-color-red-400: #ef5350; | |
--material-color-red-500: var(--material-color-red); |
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 | |
LOCAL_FOLDER='/srv/pub/kamarada/15.1/' | |
DOWNLOADOO_PATH='https://download.opensuse.org/repositories/home:/kamarada:/15.1/' | |
# Only run as root | |
USERNAME=$(whoami) | |
THIS_SCRIPT=$(realpath "$0") | |
if [[ $UID -gt 0 ]] ; then | |
sudo sh $THIS_SCRIPT |
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
public class Teste { | |
public static void main(String[] args) { | |
double num = 0.999999; | |
int i = 0; | |
while (num != 0) { | |
num = num * num; | |
System.out.println("(" + i + ") num = " + num); | |
i = i + 1; | |
if (i == 5000) { | |
num = 0; |