Skip to content

Instantly share code, notes, and snippets.

@an-2018
an-2018 / gist:c449eddd2a06867fd96fe60d7c8212af
Last active May 30, 2025 19:55
planing-next-internship.md

1 • Enquadramento do estágio

A área de Pesquisa e Desenvolvimento (P&D) da Nomadengenuity nasce do próprio core da empresa: investigar tecnologias emergentes, criar protótipos e transformar resultados em produtos inovadores. Ao contrário de projetos puramente industriais — em que requisitos, regras de negócio e produto final estão claramente definidos desde o início — o trabalho de P&D segue uma lógica exploratório-iterativa:

Etapa Objetivo Resultado-chave
1. Exploração ampla (“funil aberto”) Levantar o estado da arte (literatura, patentes, produtos) sem restrições de tecnologia Mapa do domínio, hipóteses de pesquisa
@an-2018
an-2018 / readme.md
Last active May 2, 2025 14:36
This script will fetch the server's IP address and send it to a specified destination when the server starts up

How to Use the IP Notification Script

  1. Save the Script:
    • Copy the code from the script artifact and save it to a file on your server. A common location is /usr/local/bin/send-ip-on-boot.sh
sudo nano /usr/local/bin/send-ip-on-boot.sh  
  • Paste the script content.

Get started

list genvs

genv envs

create a new genv

genv activate --name <env-name>

Step 1: Set Up Your NestJS Project First, ensure you have Node.js installed. Then, create a new NestJS project if you don't already have one:

Copy code
npm i -g @nestjs/cli
nestjs new project-name
cd project-name
@an-2018
an-2018 / main.py
Created March 31, 2024 13:00
Data Collector
import asyncio
import logging
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException
from bs4 import BeautifulSoup as BS
@an-2018
an-2018 / install.md
Last active March 8, 2024 16:49
Install OpenGL Linux

Libraries for OpenGl setup on Vscode - Linux Wsl

sudo apt-get install libglfw3
sudo apt-get install libglfw3-dev
sudo apt-get install libglfw3
sudo apt-get install libglfw3-dev
sudo apt-get install libglew-dev
sudo apt install libglm-dev
sudo apt-get install freeglut3-dev
sudo apt-get install libxi-dev
@an-2018
an-2018 / odoo-vscode-enviroment.md
Last active January 17, 2023 17:57 — forked from rafnixg/odoo-vscode-enviroment.md
Configure Odoo for Development enviroment in VSCode

Install postgresql

sudo apt install postgresql postgresql-client
sudo -u postgres createuser -s $USER
createdb odoo-dev-16.0
createdb odoo-dev-14.0

Install Dependencies

Debian 10

@an-2018
an-2018 / index.html
Created May 3, 2022 13:06 — forked from jcollins-g/index.html
Sunflower
<!-- Copyright 2011 the Dart project authors. All rights reserved.
Use of this source code is governed by a BSD-style license
that can be found in the LICENSE file. -->
<h2>Dr. Fibonacci's Sunflower Spectacular</h2>
<div>
<canvas id="canvas" width="300" height="300"></canvas>
</div>