Skip to content

Instantly share code, notes, and snippets.

View ojmarcelino's full-sized avatar
🏠
Working from home

Juliano Marcelino ojmarcelino

🏠
Working from home
View GitHub Profile

Auto-starting VirtualBox VMs on OS X

After finding a lot of other posts on the topic that didn't work out for me this one did the trick so I'm reposting for my own sense of self preservation.

Link to original article.

Copy the Virtualbox autostart plist template file to your system's LaunchDaemons folder.

sudo cp \
@ojmarcelino
ojmarcelino / w10pkchg.cmd
Created March 2, 2023 11:35
A simple Windows 10 script to change version
@echo off
:start
cls
ECHO *******************************
ECHO * Windows 10 Version Switcher *
ECHO *******************************
ECHO 1. Windows 10 Pro
ECHO 2. Windows 10 Pro VL
ECHO 3. Windows 10 Education VL
@ojmarcelino
ojmarcelino / WindowsDriversForceUpdate.ps1
Last active February 13, 2023 20:11
Updates drivers on Windows devices
$Session = New-Object -ComObject Microsoft.Update.Session
$Searcher = $Session.CreateUpdateSearcher()
$Searcher.ServiceID = '7971f918-a847-4430-9279-4a52d1efe18d'
$Searcher.SearchScope = 1 # MachineOnly
$Searcher.ServerSelection = 3 # Third Party
$Criteria = "IsInstalled=0 and Type='Driver'"
Write-Host('Searching Driver-Updates...') -Fore Green
$SearchResult = $Searcher.Search($Criteria)
{
"meta": {
"theme": "keloran"
},
"basics": {
"name": "Juliano Marcelino",
"label": "Backend | Python | Django | Data",
"picture": "https://avatars.githubusercontent.com/u/14352515",
"summary": "I enjoy to solve problems using technology that improves peoples' lives on a major scale. Over the last ten-plus years, I've been leading, guiding and developing on a variety of projects, using different sets of stacks, on physical and cloud structures.\n\nSome of the technologies which I have experience and use on daily basis: Python, Jupyter Notebook (Condas), Django, Linux (Alpine, Arch, Debian), Docker, SQL & NoSQL, TDD, Agile, Scrum, Heroku, Git/Github, Markdown, LaTeX (BibTEX, PGF, TikZ, etc), among others.\n\nDeepening or studying Julia, Seaborn, Pickles, BeautifulSoup4, Blockchain Data Analytics, GCP, AWS, Graphana, Prometheus, BDD, Robot, Gherkin.\n\nPlease, feel free to keep in touch through email (juliano at jmarcelino dot com dot br) or (ojmarcelino at tutanota do
@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>