Skip to content

Instantly share code, notes, and snippets.

View ojmarcelino's full-sized avatar

Juliano Marcelino ojmarcelino

View GitHub Profile
@ojmarcelino
ojmarcelino / pi-tips.md
Last active June 10, 2024 14:22 — forked from rdmarsh/pi-tips.md
Clean up the Raspbian default build for the Raspberry Pi

TL;DR

apt-get install deborphan -y && \
apt-get autoremove --purge libx11-.* lxde-.* raspberrypi-artwork xkb-data omxplayer penguinspuzzle sgml-base xml-core alsa-.* cifs-.* samba-.* fonts-.* desktop-* gnome-.* && \
apt-get autoremove --purge $(deborphan) && \
apt-get autoremove --purge && \
apt-get autoclean
@ojmarcelino
ojmarcelino / combinePdfFiles.tex
Last active August 17, 2021 02:22 — forked from ppanyukov/combinePdfFiles.tex
Combine several PDF files into one using LaTeX
% Many times we have HTML articles published across multiple pages.
% And sometimes we want to print all those pages as one PDF.
% Usage:
% - Print to PDF from browser;
% - Put and rename the PDF on the same folder as .tex;
% - Use LaTeX to assemble these into one PDF.
%
\documentclass[a4paper]{article}
\usepackage{pdfpages}
\begin{document}
@ojmarcelino
ojmarcelino / Home.xml
Created December 13, 2016 13:43 — forked from palaniraja/Complete.home.xml
KODI always display IP in homescreen (confluence) - Path /Applications/Kodi.app/Contents/Resources/Kodi/addons/skin.confluence/720p/Home.xml
<control type="label">
<description>IP Address</description>
<left>200</left>
<top>5</top>
<height>49</height>
<width min="200" max="300">auto</width>
<label>IP: $INFO[Network.IPAddress]</label>
<align>left</align>
<aligny>center</aligny>
<font>font12</font>