Skip to content

Instantly share code, notes, and snippets.

View NicolasBizzozzero's full-sized avatar
💻
All-nighting

Bizzozzéro Nicolas NicolasBizzozzero

💻
All-nighting
View GitHub Profile
@NicolasBizzozzero
NicolasBizzozzero / google_advanced_search.txt
Created July 3, 2018 19:54
A list of keywords and symbols to add in your Google querry for refining your search.
# A list of keywords and symbols to add in your Google querry for refining your
# search.
#
# Keep in mind that Google ignore punctuations and character casing (not in
# search operators).
#
# Most of them are listed here :
# https://support.google.com/websearch/answer/2466433
#
# Keywords no more supported :
@NicolasBizzozzero
NicolasBizzozzero / notes.sty
Last active January 14, 2020 12:27
Custom LaTeX style used to create my lectures notes.
\NeedsTeXFormat{LaTeX2e}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Package name and information %%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ProvidesPackage{notes}[2020/01/14 Bizzozzéro Nicolas custom LaTeX style]
%%%%%%%%%%%%%%%%%%%%%%%%%%
@NicolasBizzozzero
NicolasBizzozzero / cp_template.py
Last active October 4, 2021 08:23
Competitive Programming template for Python 3 files, with a GPLv3 header.
""" Answer a specific exercise of a programming contest.
This module contains all the code needed to answer a given exercise during a
programming contest. Due to its quick creation and the fact that it's probably
not following proper Python guidelines (as described in multiples PEP
documents), it shouldn't be used in production.
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
@NicolasBizzozzero
NicolasBizzozzero / comprehensive_header.py
Last active February 3, 2024 23:31
Python template of a comprehensive header, with shebang, docstring, GPLv3 license and all metadata.
#!/usr/bin/env python
""" Short description of this Python module.
Longer description of this module.
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.