Skip to content

Instantly share code, notes, and snippets.

View robertov8's full-sized avatar
🏠
Working from home

Roberto Ribeiro robertov8

🏠
Working from home
View GitHub Profile
@robertov8
robertov8 / README.md
Last active January 10, 2024 22:55
Configuration wxWidgets on Mac | Erlang 25 | Elixir 1.15

Configuration wxWidgets on Mac | Erlang 25 | Elixir 1.15

build wxwidgets

git clone https://github.com/wxWidgets/wxWidgets.git

cd wxWidgets

git checkout v3.2.4
@robertov8
robertov8 / output.txt
Created March 20, 2023 19:46
Testando abordagens async
Operating System: Linux
CPU Information: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz
Number of Available Cores: 8
Available memory: 15.43 GB
Elixir 1.14.2
Erlang 24.3.4.6
Benchmark suite executing with the following configuration:
warmup: 2 s
time: 5 s
@robertov8
robertov8 / index.js
Created July 28, 2020 14:24
JSON Server + Form-Data
const path = require('path');
const jsonServer = require('json-server');
const multer = require('multer');
const server = jsonServer.create();
server.use(formData.array());
server.listen(3004, () => {
console.log('JSON Server is running');
@robertov8
robertov8 / .commands.sh
Last active May 1, 2021 18:28
create-react-app + eslint + prettier + typescript
yarn add eslint -D
yarn add prettier eslint-config-prettier eslint-plugin-prettier eslint-plugin-react -D
✘ roberto@mint  ~/p/s/frontend   master ⁝ ? 
❯ npm run dev [23:57:03]
> frontend@1.0.0 dev /home/roberto/projetos/simple-todo-list/frontend
> webpack-dev-server --progress --colors --inline --hot
70% 1/1 build modules http://localhost:8080/
webpack result is served from /
content is served from ./public
Hash: 7e2763a20ed643c6be42
@robertov8
robertov8 / react-native.md
Last active January 8, 2018 18:37
Stack React

React Native

React

$ npm install -g react-native-cli
$ react-native
https://facebook.github.io/react-native/docs/getting-started.html

Generating Signed APK

atom-sync-nuclide
app-admin/keepassx
app-admin/sudo
app-admin/systemrescuecd-x86
app-arch/deb2targz
app-arch/engrampa
app-arch/p7zip
app-arch/rar
app-backup/bup
app-crypt/zuluCrypt
app-doc/zeal
@robertov8
robertov8 / fedora.md
Last active April 1, 2019 13:49
Install apps

Mount Home

sudo blkid /dev/sdb2
sudo nano /etc/fstab
# UUID=d8733b21-1265-482e-96f7-bd551f2d30b9 /home ext4 defaults,errors=remount-ro 0 1

# Directory home/roberto
sudo mkdir /mnt/funtoo
sudo mkdir /home/roberto
@robertov8
robertov8 / atom-bin-1.18.0-beta2.ebuild
Last active June 2, 2017 07:54
Ebuild atom-bin-1.18.0-beta2
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit flag-o-matic python-any-r1 eutils unpacker pax-utils
DESCRIPTION="A hackable text editor for the 21st Century - built from official binary package."
HOMEPAGE="https://atom.io"