Skip to content

Instantly share code, notes, and snippets.

<script class="analytics" type="2e8b4f67f4effff55f7ecbfb-text/javascript">(window.gaDevIds=window.gaDevIds||[]).push('BwiEti');
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
# Firejail profile for transmission-remote-gtk
# Description: A remote control utility for transmission-daemon (GTK GUI)
# This file is overwritten after every install/update
# Persistent local customizations
include transmission-remote-gtk.local
# Persistent global definitions
# added by included profile
#include globals.local
ignore private-lib
@ilikenwf
ilikenwf / js
Created June 13, 2019 22:08
js
'use strict';
alert('wtf')
function defineobjectproperty(val, e, c, w) {
// Makes an object describing a property
return {
value: val,
enumerable: !!e,
configurable: !!c,
writable: !!w
}
@ilikenwf
ilikenwf / PKGBUILD
Created January 28, 2018 10:09
Fixed up anbox pkgbuild
# Maintainer: Iwan Timmer <irtimmer@gmail.com>
pkgname=('anbox-git' 'anbox-modules-dkms-git')
_pkgname=anbox
pkgver=r717.b21e5d9
pkgrel=1
epoch=1
arch=('x86_64')
url="http://anbox.io/"
license=('GPL3')
@ilikenwf
ilikenwf / gtk3.patch
Last active January 28, 2018 22:04
AUR is a pain in the rear
diff --git a/mcomix/about_dialog.py b/mcomix/about_dialog.py
index b31cbf4..4b2b6f3 100644
--- a/mcomix/about_dialog.py
+++ b/mcomix/about_dialog.py
@@ -1,18 +1,18 @@
# -*- coding: utf-8 -*-
"""about_dialog.py - About dialog."""
-import webbrowser
-import gtk
@ilikenwf
ilikenwf / keybase.md
Created December 19, 2017 15:46
Keybase

Keybase proof

I hereby claim:

  • I am ilikenwf on github.
  • I am mparnell (https://keybase.io/mparnell) on keybase.
  • I have a public key whose fingerprint is CB16 9483 2B15 998C 8A7B 136F B9DD 0E4F 24D2 5AA0

To claim this, I am signing this object:

@ilikenwf
ilikenwf / createNewObjects.py
Last active September 4, 2017 01:41
SWG Core3 (SWGEmu) Object Create/Import script (kinda crappy but it works)
#!/usr/bin/python
import sys
import os
objectluas=[]
cuserverobjs=[]
def objtypes(x):
return {
@ilikenwf
ilikenwf / stylish.css
Last active August 5, 2017 14:22
Disable Ugly Unatialiased Fonts - Firefox and Stylish While Retaining Icon Fonts - Adapted from https://support.mozilla.org/en-US/questions/947228
@font-face {font-family: "Droid Sans"; src: local("Tahoma");}
@font-face {font-family: "noto"; src: local("Tahoma");}
@font-face {font-family: "Arial Negreta"; src: local("Arial");}
@font-face {font-family: "Droid Sans"; font-weight: bold; src: local("Tahoma Bold");}
@font-face {font-family: "Droid Serif"; src: local("Tahoma");}
@font-face {font-family: "Droid Serif"; font-weight: bold; src: local("Tahoma Bold");}
@font-face {font-family: "Droid Serif"; font-style: italic; src: local("Tahoma Italic");}
@font-face {font-family: "opensans"; src: local("Tahoma");}
@font-face {font-family: "open_sans"; src: local("Tahoma");}
@font-face {font-family: "open_sans"; font-weight: bold; src: local("Tahoma Bold");}
@ilikenwf
ilikenwf / README.md
Created February 13, 2015 15:52
JQPlot Meter for Dashing

jqplot meter Integration for Dashing

(C) 2015 Matt Parnell mparnell@dmp.com, Digital Monitoring Products https://dmp.com/

Special thanks to @tylermauthe for helping me get things working properly!

License

Licensed under the GNU GPL v3

Requirements

@ilikenwf
ilikenwf / msLicenseKeys.vbs
Created April 23, 2014 14:01
A VBScript To Grab M$ Licenses and Products on a Machine
'The below is partially based on GetProductKeys.VBS v1.0 by Foolish IT
Const HKEY_LOCAL_MACHINE = &H80000002
strQString = "user=" & getUserName() & "&winver=" & GetWinVer() & "&winkey=" & GetWinKey() & "&machine=" & getMachineName() & "&ip=" & getMachineIPs() _
& "&office10=" & GetOfficeKey("10.0") & "&office11=" & GetOfficeKey("11.0") & "&office12=" & GetOfficeKey("12.0") _
& "&office14=" & GetOfficeKey("14.0") & "&office15=" & GetOfficeKey("15.0")
strQString = replace(strQString, " ", "%20")
sendData(strQString)