Skip to content

Instantly share code, notes, and snippets.

View tomast1337's full-sized avatar
😳
Flushed

Nicolas Vyčas Nery tomast1337

😳
Flushed
View GitHub Profile
@tomast1337
tomast1337 / .js
Last active July 14, 2025 19:07
Add to Calendar Button for EIC Seminários
// ==UserScript==
// @name Add to Calendar Link for EIC Seminários
// @namespace http://tampermonkey.net/
// @version 2025-07-15
// @description This script adds a link to each seminar card on the EIC Seminários page that allows users to add the seminar to their Google Calendar with the date and time extracted from the card.
// @license MIT
// @author Nicolas Vycas Nery
// @match https://eic-seminarios.com/seic*
// @icon https://www.google.com/s2/favicons?sz=64&domain=eic-seminarios.com
// @grant none
@tomast1337
tomast1337 / leiame.md
Last active April 27, 2025 20:05
Ortografia "Lųzika" 📜

📜 Prompt Inicial: Ortografia "Lųzika"

Você deve escrever todo o português seguindo a nova ortografia "Lųzika", com as seguintes regras:

  1. Remoção de letras mudas:

    • Todas as letras que não são pronunciadas devem ser removidas.
    • A vogal seguinte permanece.
    • Exemplo: ritmo → ritimo, advogado → adivogado.
  2. Eliminação do "h" mudo:

import sys
import subprocess
import os
from rich.console import Console
from rich.progress import (
Progress,
SpinnerColumn,
TextColumn,
BarColumn,
TimeElapsedColumn,
import os
import subprocess
import math
from PIL import Image
from rich.console import Console
from rich.progress import (
Progress,
SpinnerColumn,
TextColumn,
BarColumn,
import os
import hashlib
import re
import time
from collections import defaultdict
from tqdm import tqdm
from difflib import SequenceMatcher
def normalize_name(filename):

How to find obscure videos on youtube

Brand new videos with ~0 views

Use the filters: Filter by Data: Today, Last hour, This week, Sort by: Upload date,

  • IMG (Smartphone)
  • MVI (Smartphone)
  • -YMD- (20230726) (Smartphone)
@tomast1337
tomast1337 / Blender_Scene_Exporter.py
Created May 27, 2023 19:47
This script is written in Python and uses the Blender Python API (bpy) to export objects and textures from a scene in Blender and create a JSON file that describes the scene.
from dataclasses import dataclass
import bpy
from bpy import context
# This script will export all the objects and texture in the scene, and create a json describing the scene
# Get all the objects in the scene
objects = bpy.data.objects
# filter out the objects that are not meshes
meshes = [obj for obj in objects if obj.type == 'MESH']
# Get all the textures in the scene
GameAction [AppID 730, ActionID 1] : LaunchApp changed task to UpdatingAppInfo with ""
GameAction [AppID 730, ActionID 1] : LaunchApp changed task to ProcessingInstallScript with ""
GameAction [AppID 730, ActionID 1] : LaunchApp changed task to SynchronizingCloud with ""
GameAction [AppID 730, ActionID 1] : LaunchApp changed task to SiteLicenseSeatCheckout with ""
GameAction [AppID 730, ActionID 1] : LaunchApp changed task to CreatingProcess with ""
GameAction [AppID 730, ActionID 1] : LaunchApp waiting for user response to CreatingProcess ""
GameAction [AppID 730, ActionID 1] : LaunchApp continues with user response "CreatingProcess"
Opted-in Controller Mask for AppId 730: ffff
/bin/sh\0-c\0/home/tomast1337/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=730 -- '/home/tomast1337/.local/share/Steam/steamapps/common/Counter-Strike Global Offensive/csgo.sh' -steam -vulkan -high -novid -threads 4 -nojoy +exec autoexec.cfg\0
Game process added : AppID 730 "/home/tomast1337/.local/share/Steam/ubuntu12_32/r
@tomast1337
tomast1337 / gist:802758e20020f2dc7a2d3b578da16a5a
Created March 1, 2022 01:19
System information from steam
Computer Information:
Manufacturer: MSI
Model: B150 GAMING M3 (MS-7978)
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz
CPU Family: 0x6
@tomast1337
tomast1337 / trabalho_final.c
Last active February 22, 2022 22:44
trabalho_final.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct Contato {
int cod;
char nome[48];
char apelido[48];
char sexo[1];
char endereco[48];