Para instalar o Arduino IDE no Arch Linux e derivados, usar o pacote arduino
:
pacman -S arduino
A IDE será aberta com o comando arduino
.
From c0fe27dd63b02af2413ad112150652328a98eb75 Mon Sep 17 00:00:00 2001 | |
From: Ranieri Althoff <[email protected]> | |
Date: Fri, 10 Jul 2015 03:43:51 -0300 | |
Subject: [PATCH] Add callback for places discovery on walking | |
--- | |
data/creaturescripts/creaturescripts.xml | 1 + | |
data/creaturescripts/scripts/walk.lua | 25 ++++++++++++++++++++ | |
data/global.lua | 8 +++++++ | |
src/creatureevent.cpp | 39 ++++++++++++++++++++++++++++++++ |
#ifndef QUANTUM_DEBUG_H | |
#define QUANTUM_DEBUG_H | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
namespace quantum { | |
namespace tools { | |
namespace detail { |
#include <assert.h> | |
#include <chrono> | |
#include <iostream> | |
#include <sstream> | |
using namespace std::chrono; | |
constexpr auto SAMPLES = 100'000u; | |
auto curr_time() | |
{ |
#include "xtea.h" | |
#include <algorithm> | |
#include <array> | |
#include <cassert> | |
#include <chrono> | |
#include <iostream> | |
constexpr auto VECTOR_SIZE = 24584u; | |
// 48*64bytes + 3*16bytes + 3*4bytes + 3bytes, worst size possible |
#!/bin/bash | |
KEYMAP='br-abnt2' | |
LOCALE='pt_BR' | |
SESSION='cinnamon' | |
TIMEZONE='America/Sao_Paulo' | |
PACKAGES=('bash-completion' | |
'chromium' | |
'file-roller' | |
'git' | |
'gnome-keyring' |
Este tutorial é referente a um servidor executando Ubuntu 16.04.4 LTS. Todos os passos acompanham um shell script equivalente.
Instalaremos o banco de dados, o git e bibliotecas que futuramente serão usadas para compilar as dependências do Helios.
$ sudo apt install gettext git libldap2-dev libpq-dev libsasl2-dev nginx postgresql python-pip python-virtualenv uwsgi uwsgi-plugin-python
[tool.poetry] | |
name = "swartz" | |
version = "0.1.0" | |
description = "" | |
authors = ["Ranieri Althoff <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "*" | |
dataclasses = "^0.6.0" | |
tornado = {version = "^5.0", optional = true} |
[tool.poetry] | |
name = "mtm" | |
version = "0.1.0" | |
description = "" | |
authors = ["Ranieri Althoff <[email protected]>"] | |
license = "MIT" | |
[tool.poetry.dependencies] | |
python = "^3.5" | |
rows = { git = "https://github.com/turicas/rows.git", branch = "feature/plugin-pdf", extras = ["pdf"] } |