Skip to content

Instantly share code, notes, and snippets.

View miigotu's full-sized avatar
:octocat:

miigotu miigotu

:octocat:
View GitHub Profile
@miigotu
miigotu / devmachine.ps1
Last active September 12, 2023 04:48 — forked from kasuken/devmachine.ps1
Tools and software for my workstations and laptops. Windows 11 version.
# Windows configuration. See http://boxstarter.org/WinConfig
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Disable-GameBarTips
Disable-BingSearch
#Enable-RemoteDesktop
#Enable-MicrosoftUpdate
#Install-WindowsUpdate -AcceptEula
@miigotu
miigotu / freenas.sr.help.fix.txt
Last active May 29, 2020 17:17 — forked from Agurri/freenas.sr.help.fix.txt
FreeNAS Sickrage - Help & Info Web Page Fix
After switching to the new repo and updating, I lost the ability to see the SickRage Version, branch and commit on the Help & Info page. After trying seveal methods, I've came down to this ... It might not be the only way to do it, but it worked for me as of today (01/29/2016)
Credits go to neoatomic and delfrogo (https://forums.freenas.org/index.php?threads/new-sickrage-repo.39368/)
Step 1.
Do a backup with the Sickrage GUI. The procedure should not break anything but let's be cautious.
Step 2.
Stop Sickrage plugin in the FreeNAS GUI by going in Plugins, Installed, Stop.
@miigotu
miigotu / upgrade
Created December 27, 2018 16:24
apt update && apt upgrade --autoremove --purge with one command
# Quick script by miigotu, place in ~/bin or other location in your path
#!/bin/bash --
out=`sudo apt-get update 2>&1 | tee /dev/tty`
status=${out##*$'\n'}
if [ "${out##*$'\n'}" != "All packages are up to date." ]; then
sudo apt-get upgrade --autoremove --purge
fi
Verifying that "miigotu.id" is my Blockstack ID. https://explorer.blockstack.org/name/miigotu.id
#include "RPLLoader.h"
#include "../common/elf/ELFLoaderBase.h"
#include "RPL.h"
#include "RPL_inlines.h"
#include "Section.h"
#include "miniz_tinfl.h"
class RPLLoaderImpl final
diff --git a/sickbeard/providers/__init__.py b/sickbeard/providers/__init__.py
index 386603cbb..5e2cb3656 100644
--- a/sickbeard/providers/__init__.py
+++ b/sickbeard/providers/__init__.py
@@ -25,10 +25,10 @@ from random import shuffle
import sickbeard
from sickbeard.providers import (abnormal, alpharatio, archetorrent, binsearch, bitcannon, bjshare, btn, cpasbien, danishbits, elitetorrent, filelist,
- gftracker, gimmepeers, hd4free, hdbits, hdspace, hdtorrents, hdtorrents_it, horriblesubs, hounddawgs, ilcorsaronero, immortalseed,
- iptorrents, limetorrents, morethantv, ncore, nebulance, newpct, norbits, nyaa, omgwtfnzbs, pretome, rarbg, scc, scenetime,

Keybase proof

I hereby claim:

  • I am miigotu on github.
  • I am miigotu (https://keybase.io/miigotu) on keybase.
  • I have a public key whose fingerprint is 7C80 D646 218B DF9E 6E2C FAFD 3497 86E3 1CD0 D65C

To claim this, I am signing this object:

diff --git a/gui/slick/views/config_notifications.mako b/gui/slick/views/config_notifications.mako
index 98953e2..a3cd656 100644
--- a/gui/slick/views/config_notifications.mako
+++ b/gui/slick/views/config_notifications.mako
@@ -294,6 +294,15 @@
</span>
</label>
</div>
+ <div class="field-pair">
+ <label for="plex_https_required">
@miigotu
miigotu / ua.json
Last active January 3, 2016 17:42
{
"browsers":{
"chrome":[
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36",
@miigotu
miigotu / .pylintrc
Last active October 21, 2015 15:55
[MASTER]
# Specify a configuration file.
#rcfile=
# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
init-hook=import sys;sys.path.insert(1, '/home/dusted/Projects/SickRage');sys.path.insert(1, '/home/dusted/Projects/SickRage/lib')
# Profiled execution.
profile=no