Skip to content

Instantly share code, notes, and snippets.

View wolfy1339's full-sized avatar

wolfy1339

View GitHub Profile
//Change the font of the whole website to Arial
//Change the font of the body tag by to "Arial"
$("body").css({"font-family": "Arial"});
//Change the color of the title of the group to black
//Target the title of the group
var title = $("#ctl00_ctl00_cphTemplate_menus_wrapper_title");
//Change the colot of the title of the group to black
title.css({"color": "black"});
###
# Copyright (c) 2015-2016, wolfy1339
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
@wolfy1339
wolfy1339 / keybase.md
Last active September 11, 2019 05:22
Keybase

Keybase proof

I hereby claim:

  • I am wolfy1339 on github.
  • I am wolfy1339 (https://keybase.io/wolfy1339) on keybase.
  • I have a public key ASBBXgVFMMDq0UIGzEO9fkhj-Q3HPmY14rf7VMzKtRnjyAo

To claim this, I am signing this object:

@wolfy1339
wolfy1339 / takeover.py
Last active February 23, 2016 04:15
WIP takeover script for hexchat
from __future__ import print_function
import hexchat
__module_name__ = 'Takeover plugin'
__module_version__ = "1.0"
__module_description__ = 'Python plugin to takeover channels'
def chunks(l, n):
"""Yield successive n-sized chunks from l."""
@wolfy1339
wolfy1339 / png-to-rgb.cpp
Created February 15, 2016 00:08
WIP PNG to RGB values
// based off the code from http://zarb.org/~gc/html/libpng.html but simplified/stripped down by Lockheedmartin.
// Conversion to C++ by wolfy1339
#include <unistd.h>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cstdarg>
#include <png.h>
int x, y, width, height, r, g, b;
@wolfy1339
wolfy1339 / IRC-IMC.py
Last active March 20, 2016 19:38
Simple script to delete given members
import requests
from bs4 import BeautifulSoup
import json
removed = json.load(open('removed.json').read())
session = requests.Session()
with open('password') as f:
data = {
'name': 'wolfy1339a',
@wolfy1339
wolfy1339 / bootstrap-listr.php
Last active September 4, 2023 00:42
One-file (almost) version of Bootstrap Listr
<?php
ini_set('display_errors', 'Off');
error_reporting(E_ALL | E_STRICT);
/**
* Bootstrap Listr
*
* Author: Jan T. Sott
* Info: http://github.com/idleberg/Bootstrap-Listr
---
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlinesLeft: false
AlignOperands: true
AlignTrailingComments: true
@wolfy1339
wolfy1339 / html.css
Last active May 30, 2017 00:59 — forked from jonathantneal/html.css
Microsoft Edge User Agent Stylesheet
/*! Microsoft EdgeHTML 13.10586 | Copyright (C) Microsoft. All rights reserved. */
address {
display: block;
font-style: italic;
}
article {
display: block;
unicode-bidi: embed;