pip install --editable .
Trying values-from-environment-variables
$ export GREETER_USERNAME=john
require 'json' | |
j = JSON.load_file('.jb/manifest.template.json') | |
j['interactives'] = [] | |
j['assets'] = [] | |
j.delete('thumbnailCode') | |
File.write('.jb/manifest.template.json',JSON.pretty_generate(j)) |
<html> | |
<head> | |
</head> | |
<body> | |
<div id="screenshot"> | |
<video autoplay></video> | |
<img src="" download="new-image-name.webp"> | |
<canvas style="display:none;"></canvas> |
ERB_TEMPLATE = <<~HEREDOC | |
guard :shell do | |
<% all_tasks.each do |t, files| %> | |
watch(%r{^(<%= files.join('|') %>)$}) do |m| | |
system("rake <%= t %>") | |
end | |
<% end %> | |
end | |
HEREDOC |
pip install --editable .
Trying values-from-environment-variables
$ export GREETER_USERNAME=john
wget https://github.com/edusantana/cozer/archive/master.zip | |
unzip master.zip | |
cd cozer-master | |
python3 -m venv venv | |
. venv/bin/activate | |
&& pip install --editable . | |
cozer --help |
wget https://github.com/edusantana/cozer/archive/master.zip | |
unzip master.zip | |
cd cozer-master | |
python3 -m venv venv | |
. venv/bin/activate | |
&& pip install --editable . | |
cozer --help |
#!/bin/bash | |
nome=$(zenity --entry --text="Qual seu primeiro nome?" --entry-text="Nome") | |
sobrenome=$(zenity --entry --text="Qual seu sobrenome?" --entry-text="Nome") | |
altura=$(zenity --scale --value=160 --max-value=200 --text="Qual a sua altura?") | |
#peso=$(zenity --scale --value=60 --max-value=200 --text="Qual a seu peso?") | |
STRING=$(echo $nome | cal | head -n 1 | tr -d '[:space:]' | cut -f 2 -d 0) | |
tmpfile=$(mktemp) | |
echo $STRING >> $tmpfile | |
#echo "Altura informada: $altura " >> $tmpfile |
package urna; | |
import java.util.LinkedList; | |
import java.util.List; | |
public class Controller { | |
List<Usuario> usuarios = new LinkedList<Usuario>(); | |
public static void main(String[] args) { |
%%%%%%%%%%%%%%%%%%%%%%%%%5 | |
%% abtex2-modelo-trabalho-academico.tex, v<VERSION> laurocesar | |
%% Copyright 2012-<COPYRIGHT_YEAR> by abnTeX2 group at http://www.abntex.net.br/ | |
%% | |
%% This work may be distributed and/or modified under the | |
%% conditions of the LaTeX Project Public License, either version 1.3 | |
%% of this license or (at your option) any later version. | |
%% The latest version of this license is in | |
%% http://www.latex-project.org/lppl.txt | |
%% and version 1.3 or later is part of all distributions of LaTeX |
all: | |
latexmk -f -pdf quadro-abntex2.tex | |
latexmk -f -pdf tabela-fora-do-quadro.tex | |
latexmk -f -pdf quadro-abntex2-corrigido.tex | |
latexmk -f -pdf longtable-caption-type-quadro.tex |