This file contains hidden or 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 BisaChat Chrome Fullscreen Fix | |
// @namespace http://projects.0xleon.com/userscripts/bc-chrome-full-fix | |
// @version 1.0.0 | |
// @description Fixes a BisaChat fullscreen bug in Chrome. | |
// @author Stefan Hahn | |
// @copyright 2018, Stefan Hahn | |
// @match https://bisachat.bisafans.de/index.php?room/*/ | |
// @grant unswafeWindow | |
// @run-at document-body |
This file contains hidden or 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
""" | |
Provides methods for calculating point cloud densities. | |
All methods can handle instances of PLYObject or list or ndarray instances of lists of vertices. | |
""" | |
import numpy as np | |
import scipy.spatial | |
def getRealDensityFromPlane(ply, planeParams): | |
""" |
This file contains hidden or 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 BisaChat Plus | |
// @namespace http://projects.0xleon.com/userscripts/bcplus | |
// @version 4.0.0.dev1 | |
// @description Make BisaChat Great Again | |
// @author Stefan Hahn | |
// @match https://bisachat.bisafans.de/index.php?room/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |
This file contains hidden or 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
Sub FlipRows() | |
Dim vTop As Variant | |
Dim vEnd As Variant | |
Dim iStart As Integer | |
Dim iEnd As Integer | |
Application.ScreenUpdating = False | |
Application.Calculation = xlCalculationManual | |
iStart = 1 |
This file contains hidden or 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
[...$$('html > body > pre')[0].textContent.matchAll(/\d+$/gm)].map((a) => parseInt(a[0])).reduce((acc, val) => acc + val) / Math.pow(1024, 3) |
This file contains hidden or 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
A Day to Remember - Bad Vibrations | |
A Day to Remember - What Separates Me from You | |
A Day to Remember - You're Welcome | |
As I Lay Dying - An Ocean Between Us | |
As I Lay Dying - Frail World Collapse | |
As I Lay Dying - Shaped by Fire | |
As I Lay Dying - The Powerless Rise | |
blink-182 - blink-182 | |
blink-182 - California | |
blink-182 - Nine |
This file contains hidden or 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 BisaChat Plus | |
// @namespace http://projects.0xleon.com/userscripts/bcplus | |
// @version 4.0.0.dev1 | |
// @description Make BisaChat Great Again | |
// @author Stefan Hahn | |
// @match https://bisachat.bisafans.de/index.php?room/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |
This file contains hidden or 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
import multiprocessing | |
import multiprocessing.pool | |
import time | |
class TimeMeasurement(object): | |
def __init__(self, operation, printStd=True): | |
self._t0 = 0 | |
self._t1 = 0 | |
self._operation = operation |
OlderNewer