Skip to content

Instantly share code, notes, and snippets.

View willianuk's full-sized avatar
πŸ‘¨β€πŸ’»
Open Source

Willian willianuk

πŸ‘¨β€πŸ’»
Open Source
  • Peru
View GitHub Profile
@antfu
antfu / πŸ“Š Weekly development breakdown
Last active November 20, 2023 10:25
πŸ“Š Weekly development breakdown
TypeScript 21 hrs 47 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–’β–‘β–‘β–‘ 67.1%
Vue.js 6 hrs 21 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–“β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 19.6%
JSON 2 hrs 10 mins β–ˆβ–ˆβ–ˆβ–ˆβ–’β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 6.7%
JavaScript 46 mins β–ˆβ–ˆβ–ˆβ–’β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.4%
@Acry
Acry / VSCode C Linux.md
Last active June 11, 2023 20:32
Kick off VSCode for C and GTK 3.

Code GTK 3 in C with VSCode

Kick off VSCode for C and GTK 3.

c_cpp_properties.json

{
  "configurations": [
    {
      "name": "C Linux GTK3",
@ForgottenUmbrella
ForgottenUmbrella / using_conan_cpp.md
Last active April 9, 2025 06:19
How to use Conan, a C++ package manager, for beginners

Package Management in C++ with Conan for Beginners

C++ package management can be complicated.

Below are some key tools involved:

Make

Make runs commands defined in a Makefile, for example, to build and install programs with the compiler and linker. For our purposes, we won't worry about what this looks like; you only need to understand its purpose in relation to CMake.

@josejuansanchez
josejuansanchez / jardineria.sql
Last active April 14, 2025 10:53
Script SQL para crear la base de datos `jardineria` que aparece en el libro Bases de Datos de IvΓ‘n LΓ³pez MontalbΓ‘n.
DROP DATABASE IF EXISTS jardineria;
CREATE DATABASE jardineria CHARACTER SET utf8mb4;
USE jardineria;
CREATE TABLE oficina (
codigo_oficina VARCHAR(10) NOT NULL,
ciudad VARCHAR(30) NOT NULL,
pais VARCHAR(50) NOT NULL,
region VARCHAR(50) DEFAULT NULL,
codigo_postal VARCHAR(10) NOT NULL,
@MagallanesFito
MagallanesFito / Nieves y el merge-sort.cpp
Last active October 16, 2022 04:28
Solucion a Nieves y el merge-sort. Problema preselectivo IOI
/*
Problema recopilado de:
https://omegaup.com/arena/problem/Nieves-y-el-merge-sort#problems
*/
#include <iostream>
using namespace std;
#define op_io ios_base::sync_with_stdio(0);cin.tie(0);
void mezclar(long long int A[],int l,int m,int r){
int n1 = m - l + 1;
int n2 = r-m;