Skip to content

Instantly share code, notes, and snippets.

View R0mb0's full-sized avatar
💻
KERNEL ALLERT!!!

Francesco Rombaldoni R0mb0

💻
KERNEL ALLERT!!!
  • Italy
  • 21:22 (UTC +02:00)
View GitHub Profile
@R0mb0
R0mb0 / fork-own-repo.md
Last active April 5, 2022 10:06 — forked from clintliang/fork-own-repo.md
How to Fork Your Own Project on Github (updated to 1 october 2020)

How to Fork Your Own Project on Github

Steps on how to create fork-repo from your own original-repo

On Github.com

  1. Create a new empty fork-repo repository on Github

On local

  1. Clone fork-repo
@R0mb0
R0mb0 / addition_list_funtions.pl
Created May 21, 2022 09:24
Haskell's List Funtions Rewrote in GNU Prolog.
/* Like the index Function in Haskell.
* Input: An integer Index, a List.
* Output: The Element of the List at the Index Specified.*/
index(_, [], _) :-
throw(error(empty_input_list, index/3)).
index(0, [X], X).
index(0, [H|_], H).
index(N, [_|T], E) :-
(integer(N) ->
(N < 0 ->
@R0mb0
R0mb0 / BeamerTemplate.tex
Last active May 21, 2022 09:39
LaTeX Beamer Template.
\documentclass[aspectratio=169]{beamer}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{amsmath,amssymb,lmodern}
\usetheme{AnnArbor}
\usepackage{animate}
@R0mb0
R0mb0 / PLF_Template.tex
Last active July 8, 2022 15:20
Urbino's University - Applied computer science - Functional and Logic Programming - Report Template in LaTeX.
\documentclass{article}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{listingsutf8}
\usepackage[margin=75pt]{geometry}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{spverbatim}
\usepackage{hyperref}
\usepackage{listings}
@R0mb0
R0mb0 / PP_Template.tex
Created July 8, 2022 15:19
Urbino's University - Applied computer science - Procedural Programming - Report Template in LaTeX.
\documentclass{article}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage{listingsutf8}
\usepackage[margin=75pt]{geometry}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{spverbatim}
\usepackage{hyperref}
\usepackage{listings}
@R0mb0
R0mb0 / PHP_highlighting_example.tex
Last active November 11, 2023 14:14
PHP code highlighting in listings for pdflatex.
\documentclass{article}
% To write dummy text
\usepackage{lipsum}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% My solution to highlighting PHP code with listings package in pdflatex
% Inspired by this discussion: https://tex.stackexchange.com/questions/53928/is-there-a-good-definition-for-highlighting-php-code-in-listings
@R0mb0
R0mb0 / Fastweb_Nexxt_come_AP.md
Last active February 5, 2024 22:14
Come rendere il modem Fastweb Nexxt un Access Point For Dummies

Come rendere il modem Fastweb Nexxt un Access Point For Dummies

Contesto della guida

Utilizzo del modem Fastweb come Access Point dopo la sostituzione con un modem di proprietà.

  1. Spegnere il modem Fastweb utilizzando l'interruttore posto sul retro
@R0mb0
R0mb0 / Zimaboard_emmc_backup.md
Last active March 8, 2024 18:25
How to Backup ZimaBoard emmc

My solution to backup ZimaBoard emmc

Hardware needed:

  • A ZimaBoard (,,>﹏<,,).
  • A PC (no matter what OS is installed)
  • 2 USB pendrive:
    • The first one must be 8Gb at least.
    • The second one 32Gb at least.
  • Keyboard & mouse for ZimaBoard.
  • A 3.0 USB-Hub with at least 3 ports.
  • The ZimaBoard display-port adapter.