Skip to content

Instantly share code, notes, and snippets.

View Krymancer's full-sized avatar
I need some coffee

Junior Nascimento Krymancer

I need some coffee
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Júnior Nascimento",
"label": "Fullstack Developer @ Stefanini",
"image": "",
"email": "junior.nascm@gmail.com",
"phone": "88996302439",
"url": "https://github.com/krymancer",
"summary": "I develop robust solutions, using best practices to optimize the performance, quality and security of systems. Graduated in Computer Engineering from the Federal University of Ceará, I bring a solid foundation in systems development theory and practice.\nMy focus is on creating clean, secure, maintainable code and applying advanced data structures to solve complex problems. I am constantly improving to contribute to technological innovations and operational efficiency.",
@Krymancer
Krymancer / main.cpp
Last active August 29, 2023 19:25
Rotate Cube OpenGL
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <iostream>
const char* vertexShaderSource = R"(
#version 330 core
layout (location = 0) in vec3 aPos;
@Krymancer
Krymancer / docker-compose-test.yml
Last active August 22, 2023 14:05
Gatling test rinha-backend-2023-q3
version: '3.5'
services:
clone:
image: alpine/git:latest
volumes:
- ./rinha-de-backend-2023-q3:/app
working_dir: /app
command: ["git", "clone", "https://github.com/zanfranceschi/rinha-de-backend-2023-q3.git", "."]
prepare:
image: python:3.9
/**
* @name Pokemon
* @author NFLD99
* @version ersion auto updates
* @description Thank you for choosing NFLD Inc!
* @source https://github.com/NFLD99/Better-Discord
* @website https://nfld99.com/
* @patreon https://nfld99.com/patreon
* @authorLink https://discordhub.com/profile/483413721876529174
* @donate https://nfld99.com/paypal
@Krymancer
Krymancer / channels.md
Last active March 5, 2023 03:59
Programming youtube related stuff
@Krymancer
Krymancer / main.mjs
Created December 20, 2022 19:44
signos
import { JSDOM } from "jsdom";
const url = 'https://gadget.horoscopovirtual.com.br/horoscopo';
async function getDocument() {
const response = await fetch(url);
const html = await response.text();
return html;
}
@Krymancer
Krymancer / theme.json
Created August 19, 2022 16:44
Oh my phost cattpuchin-mocha theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"foreground": "#a6e3a1",
"foreground_templates": [
"{{ if gt .Code 0 }}#ff5555{{ end }}",
@Krymancer
Krymancer / cpf.js
Created April 10, 2021 07:30
Validar CPF
function verifyCPF(cpf) {
cpf = cpf.replace(/[^\d]+/g,'');
let i,add,rev;
if(cpf === '') return false;
// Elimina CPFs invalidos conhecidos
if (cpf.length !== 11 ||
cpf === "00000000000" ||
cpf === "11111111111" ||
cpf === "22222222222" ||
cpf === "33333333333" ||
(defvar *jogador* 1) ;espaço do jogador
(defvar *computador* 10) ;espaço do comptador
(defun make-board ()
(list 'board 0 0 0 0 0 0 0 0 0)) ;tabuleiro
(defun convert-to-letter (v) ;funçao pra converter o input na letra
(cond ((eql v 1) "O")
((eql v 10) "X")
@Krymancer
Krymancer / chrome-dark-mode.sh
Created March 3, 2020 02:29
Force dark mode in chrome
#bin/bash
if [ -z "$1" ]
then
echo "Invalid arguments"
else
sed -i 's|Exec=/usr/bin/google-chrome-stable|Exec=/usr/bin/google-chrome-stable --force-dark-mode|g' $1
fi