Skip to content

Instantly share code, notes, and snippets.

View jeanlucaslima's full-sized avatar
😃

Jean Lucas jeanlucaslima

😃
View GitHub Profile
@jeanlucaslima
jeanlucaslima / novos_dominios.md
Last active February 16, 2024 23:12
Domínios liberados registro.br

Total

Resultados extraídos do site Registro.br em 16/fev/2024

  • 561 domínios com 3 caracteres,
  • 3782 domínios com 4 caracteres,
  • 5495 domínios com 5 caracteres

domínios com 3 caracteres

@jeanlucaslima
jeanlucaslima / Readme.md
Last active October 2, 2023 13:24
Remote Work Resources

Remote Jobs general guideline

This is something I compiled during the last weeks while job hunting. If you miss something in this list, please fork or tell me on twitter and I'll add what's missing.

  1. Be careful with jobs that are not clear they hire outside US
  2. Look for job in niches (like SaaS job boards, language-specific communities, country-focused, and so on)
  3. Avoid Upwork (pay to work, no guaranteed results, often bad contracts) and Remote.com
  4. Remote.co is not Remote.com, remote.co is ok.
  5. There are companies that hire and act as a guild, but only pay as freelancer (X-team, Gun.io, and so on)
  6. Not really focused on freelancing, as it is to me more like a one-person business
❯ traceroute -dFSve -w 2 -z 500 -q 5 www.lichess.org
traceroute: Warning: www.lichess.org has multiple addresses; using 37.187.205.99
traceroute to lichess.org (37.187.205.99), 64 hops max, 52 byte packets
1 www.instaladorvivofibra.br (192.168.15.1) 60 bytes to 192.168.15.5 9.859 ms 3.769 ms 10.390 ms 9.921 ms 10.255 ms (0% loss)
2 * * * * * (100% loss)
3 187-100-163-68.dsl.telesp.net.br (187.100.163.68) 36 bytes to 192.168.15.5 5.432 ms 6.319 ms 11.112 ms 49.403 ms 95.906 ms (0% loss)
4 152-255-202-105.user.vivozap.com.br (152.255.202.105) 36 bytes to 192.168.15.5 5.080 ms
152-255-200-14.user.vivozap.com.br (152.255.200.14) 36 bytes to 192.168.15.5 10.265 ms
152-255-200-22.user.vivozap.com.br (152.255.200.22) 36 bytes to 192.168.15.5 120.691 ms
152-255-200-16.user.vivozap.com.br (152.255.200.16) 36 bytes to 192.168.15.5 5.378 ms

Pessoa desenvolvedora Front-end sênior (React/Next.js)

CLT ou PJ Nivel: Sênior Stack Principal: React.js, Next.js Carga horária: full time, horário comercial Data prevista para início: assim que possível Remuneração: Entre 6.500,00 e 13.000,00/mês

@jeanlucaslima
jeanlucaslima / main.js
Last active February 26, 2021 12:29
JavaScript quizz array
quiz([11, 9, 6, 11, 5], 3); // output: 26, 16
quiz([11, 9, 6, 11, 5, 1], 3); // output: 26, 17
quiz([11, 9, 6, 11, 5, 1, 1], 3); // output: 26, 17, 1
quiz([1, 2, 1, 3, 1, 4, 1, 5, 1], 2); // output: 3, 4, 5, 6, 1
// quiz sums every n elements of arr and print.
// also print the sum of any remaining elements
function quiz(arr, n) {
let response = [];
0 verbose cli [
0 verbose cli '/usr/local/Cellar/node/15.5.1/bin/node',
0 verbose cli '/usr/local/bin/npm',
0 verbose cli 'run',
0 verbose cli 'js-lint'
0 verbose cli ]
1 info using npm@7.3.0
2 info using node@v15.5.1
3 timing config:load:defaults Completed in 1ms
4 timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
Verifying my Blockstack ID is secured with the address 1C9pgtwDj3bKovBCbY1DxgjYdJ8RbDyEQm https://explorer.blockstack.org/address/1C9pgtwDj3bKovBCbY1DxgjYdJ8RbDyEQm
@jeanlucaslima
jeanlucaslima / empresas.md
Last active October 20, 2017 13:46
Lusófonos usando Ember.js

Usuários de Ember.js

Ember logo

Empresas/apps/projetos brasileiros, portuguese e de outros locais que falam português e utilizam Ember.js.

Última atualização: 2017/maio

Brasil

@jeanlucaslima
jeanlucaslima / weird.js
Last active May 5, 2017 05:42
JS Perf notes
// Estranho bug de performance encontrado por [andreasgal](https://github.com/andreasgal)
//
// Comportamento esperado: foo() e bar() terem ao menos performance similar
// Comportamento observado: foo() tem performance diferente que bar() dependendo da máquina
//
// A única diferença entre foo() e bar() é a ordem de declaração dos valores dentro do vetor
// Não sei explicar o motivo desse comportamento
var A = [];
function foo() {
@jeanlucaslima
jeanlucaslima / liker.js
Last active April 11, 2017 20:26
Liker for Tinder web
// The main idea here is to just play with the UI of Tinder Web.
// Not sure if this causes some kind of filtering if you use scripts like this.
var like = function() {
document.querySelectorAll('button')[2].click();
setTimeout(like, 100) // adjust the time to whatever you would like
}
like();