Skip to content

Instantly share code, notes, and snippets.

View f0nZ's full-sized avatar

Nuno Neto f0nZ

View GitHub Profile
@f0nZ
f0nZ / copy-repo.md
Last active October 14, 2021 13:03
How to copy a GitHub repo without forking

How to copy a GitHub repo without forking

GitHub only lets you fork a repo once, if you want to make more than one copy of a project here's how you can do it. Useful for starter code.

  1. Create a new empty folder for your project and initialize git

    cd <where-you-keep-your-projects>

mkdir

@f0nZ
f0nZ / nvidia_language.bat
Last active October 14, 2021 13:04
Changes your NVIDIA Panel to English (US) Language
reg add "HKCU\Software\NVIDIA Corporation\NVControlPanel2\Client" /v UserDefinedLocale /t REG_DWORD /d 1024
/*
Descricaoo:
O programa vai ter uma coleccao de cromos organizada por ano, e varias equipas com varios jogadores onde tem nome e numero camisola.
Neste programa dara para criar colecoes equipas e jogadores
Neste programa permite a pesquisa do jogador pela camisola e equipa e da informacoes sobre ele
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>