I hereby claim:
- I am dutchy- on github.
- I am edwinsmulders (https://keybase.io/edwinsmulders) on keybase.
- I have a public key ASC1CmJCsn1bLcelYR6Vo5fAhsrd3QrC26A8eyaZAGH9PQo
To claim this, I am signing this object:
# This contains a monkeypatch bugfix for | |
# https://github.com/microsoftgraph/msgraph-beta-sdk-python/issues/706 | |
from msgraph_beta.generated.models.security.isolate_device_response_action import IsolateDeviceResponseAction | |
from msgraph_beta.generated.models.security.response_action import ResponseAction | |
from msgraph_beta.generated.models.security.stop_and_quarantine_file_response_action import StopAndQuarantineFileResponseAction | |
from msgraph_beta.generated.models.security.stop_and_quarantine_file_entity_identifier import StopAndQuarantineFileEntityIdentifier | |
from msgraph_beta.generated.models.security.disable_user_response_action import DisableUserResponseAction | |
from msgraph_beta.generated.models.security.disable_user_entity_identifier import DisableUserEntityIdentifier | |
from msgraph_beta.generated.models.security.force_user_password_reset_response_action import ForceUserPasswordResetResponseAction | |
from msgraph_beta.generated.models.security.force_user_password_reset_entity_identifier import ForceUserPasswordRe |
I hereby claim:
To claim this, I am signing this object:
def test_something(): | |
assert True == False | |
def test_something(): | |
pass |
// ==UserScript== | |
// @name Jira disable detailView | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Edwin Smulders | |
// @match http://jira.example.org/secure/RapidBoard* | |
// @grant none | |
// ==/UserScript== |
// ==UserScript== | |
// @name Youtube playlist remover | |
// @namespace naamruimte | |
// @include https://www.youtube.com/playlist?list=* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var links = document.getElementsByClassName("pl-video-title-link") | |
for( var i = 0; i<links.length; i++ ){ |
// ==UserScript== | |
// @name Jelco's blog plaatjesklikker | |
// @namespace naamruimte | |
// @version 0.1 | |
// @description Maakt de plaatjes groter inline als je er op klikt. | |
// @author Dutchy- | |
// @match http://www.underdown.nl/* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |
// ==UserScript== | |
// @name Tweakers Bannerweghaler | |
// @namespace naamruimte | |
// @version 0.1 | |
// @description Haalt de notificationsbar weg als het de anti-adblockermelding is. | |
// @author Dutchy- | |
// @match https://tweakers.net/* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |
# cat readline.py | |
f = open('test.txt', 'r') | |
print(f.readline()) | |
import subprocess | |
p = subprocess.Popen(["cat", "test.txt"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) | |
print(p.stdout.readline()) | |
# python3 readline.py | |
bla |