Verificando que não tenho a JRE da Oracle:
$ java -version
openjdk version "1.8.0_66"
OpenJDK Runtime Environment (build 1.8.0_66-b17)
OpenJDK Server VM (build 25.66-b17, mixed mode)
Por isso instalar o módulo de proteção em Java dá erro!
Verificando que não tenho a JRE da Oracle:
$ java -version
openjdk version "1.8.0_66"
OpenJDK Runtime Environment (build 1.8.0_66-b17)
OpenJDK Server VM (build 25.66-b17, mixed mode)
Por isso instalar o módulo de proteção em Java dá erro!
#!/bin/bash | |
# cp josm/data/pt_BR.lang ./pt_BR.lang-backup # TODO: backup | |
JOSM_ARGS=-Xmx800M | |
JOSM_CLASS=org.openstreetmap.josm.gui.MainApplication | |
JOSM_DIR=josm | |
JOSM_JAR=/usr/share/java/josm/josm.jar | |
unzip $JOSM_JAR -d $JOSM_DIR |
The first use was:
$ ./cmp-trans.sh > test.txt
In most cases it will be sufficient to consult test.txt
(and last error.txt
).
To check differences (if necessary):
words = ['um','dois','três','quatro','cinco'] | |
numbers = [1,2,3] | |
def maptest(word, number): | |
return (word, number) | |
result = dict(map(maptest, words, numbers)) | |
print(result) |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from urllib.parse import quote_plus | |
# sudo pip install pyperclip | |
import pyperclip as cb | |
a = cb.paste() |
(in portuguese) Isto é um ensaio de HTML básico para alcançar formas de implementar acessebilidade na tabela de escolha de planos de serviço que há durante o cadastro no GitHub. Experimente!
(in english) This is a basic HTML test to achieve ways of implementing accessibility in the table of choice of service plans that there is during the registration on GitHub. Try!!
Para gerar a lista de arquivos a baixar:
bash write.sh > files.txt
Para fazer o download:
wget -c -i files.txt
set old_root=$root | |
search.fs_uuid 3020b2c2-bdd1-4d60-a8b7-b29b1e4897e6 root hd1,gpt2 | |
if [ $root != $old_root ]; then | |
set prefix=($root)'/boot/grub' | |
configfile $prefix/grub.cfg | |
else | |
search --fs-uuid --no-floppy --set=root 746E-44FF | |
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw_BACKUP.efi | |
boot | |
fi |