This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Félix | |
// @namespace http://felix.wolf.it.cx/data/steampls.js | |
// @version 0.1 | |
// @description Gets rid of the "link filter" on steam | |
// @match https://steamcommunity.com/linkfilter/?url=* | |
// @copyright CC0, made by Félix, I'd appreciate it if you didn't claim it as your own, but w/e. | |
// ==/UserScript== | |
var usePhishCheck=true; | |
var phishCheckServer = "http://felix.wolf.it.cx/data/phishcheck"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
The MIT License (MIT) | |
Copyright (c) 2015 Félix Wolf | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScriptInclude== | |
// @name Style Injector | |
// @namespace http://userscripts.softhyena.com/lib/style_injector.js | |
// @namespace https://gist.github.com/FelixWolf/479521b01a957ab980ab | |
// @version 0.1 | |
// @description Simple method of injecting styles | |
// @author Félix Wolf | |
// @match * | |
// @grant none | |
// @run-at document-start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This file is a INI file, https://en.wikipedia.org/wiki/INI_file | |
#It accepts ; and # as comments | |
#All sections, and keys are case insensitive | |
#Acceptable game titles are derived from the JasX website, such as the URLs | |
#See http://jasx.org/api/jasxAPI.lsl / API_GAME_ACTION::ACTION_GAME::GAME_* | |
#These are case insensitive, a list of games as of writing: | |
#BARE, TIS, SNC, JFISH, FRIGHT, BARE, JASX, DOGEHUD, WOOHOO | |
#By default, all values mean version 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name SL Marketplace Extender | |
// @namespace http://tools.softhyena.com | |
// @updateURL https://gist.githubusercontent.com/FelixWolf/6809d7850917e3470dcd/raw/ | |
// @downloadURL https://gist.githubusercontent.com/FelixWolf/6809d7850917e3470dcd/raw/ | |
// @version 0.3 | |
// @description Adds features to the marketplace which should be there | |
// @author Chaser Zaks | |
// @match https://marketplace.secondlife.com/* | |
// @grant GM_xmlhttpRequest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
#MIT License | |
# | |
#Copyright (c) 2016 Félix Wolf | |
# | |
#Permission is hereby granted, free of charge, to any person obtaining a copy | |
#of this software and associated documentation files (the "Software"), to deal | |
#in the Software without restriction, including without limitation the rights | |
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
#copies of the Software, and to permit persons to whom the Software is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var struct = new (function(){ | |
var dLen = { | |
/*"Type": [Size, Read, Write]*/ | |
/*pad byte */"x": [1, "getUint8", "setUint8"], | |
/*char */"c": [1, "getUint8", "setUint8"], | |
/*signed char */"b": [1, "getInt8", "setInt8"], | |
/*unsigned char */"B": [1, "getUint8", "setUint8"], | |
/*_Bool */"?": [1, "getUint8", "setUint8"], | |
/*short */"h": [2, "getInt16", "getInt16"], | |
/*unsigned short */"H": [2, "getUint16", "getUint16"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Format for single animation: | |
ANIM_ON, integer Prim, float Speed, integer Face_count, | |
integer Face_Order[Face_Count] | |
Format for single looped: | |
LOOP, integer count, integer mode, integer Prim, float Speed, integer Face_count, | |
integer Face_Order[Face_Count] | |
Single animation will loop over to next animation unless EOF | |
Looped animations will repeat until received "STOP" from linkset. |
OlderNewer