I hereby claim:
- I am sangimed on github.
- I am sangimed (https://keybase.io/sangimed) on keybase.
- I have a public key ASBYe3rKpVLDp3--0IEpuJIyKtRRO85ZFAxzdcaDaGPUSgo
To claim this, I am signing this object:
import argparse | |
import random | |
import string | |
def generate_random_string(length=10, prefix=""): | |
"""Générer une chaîne de caractères aléatoire de longueur donnée avec un préfixe optionnel.""" | |
random_string = ''.join(random.choices(string.ascii_letters + string.digits, k=length)) | |
return f"{prefix}{random_string}" |
@echo off | |
echo wscript.Quit((msgbox("Launch the ETH/ZIL dual mining script and make some $$$ ?",4+32+256, "Your Title Here")-6) Mod 255) > %temp%\msgbox.vbs | |
start /wait %temp%\msgbox.vbs | |
rem echo wscript returned %errorlevel% | |
if errorlevel 1 goto error | |
echo We have Yes | |
goto end |
I hereby claim:
To claim this, I am signing this object:
# Change dshow-adev and dshow-vdev values according to your Capture device name. | |
"C:\Program Files\VideoLAN\VLC\vlc.exe" dshow:// :dshow-size="1920x1080" :dshow-vdev="USB3.0 HD Video Capture" :dshow-adev="Microphone (USB3.0 HD Audio Capture)" :dshow-aspect-ratio="16:9" :dshow-audio-samplerate=48000 :dshow-audio-channels=2 :live-caching=0 :dshow-fps=60 |
# https://github.com/uBlockOrigin/uAssets/pull/3517 | |
twitch-videoad.js application/javascript | |
(function() { | |
if ( /(^|\.)twitch\.tv$/.test(document.location.hostname) === false ) { return; } | |
var realFetch = window.fetch; | |
window.fetch = function(input, init) { | |
if ( arguments.length >= 2 && typeof input === 'string' && input.includes('/access_token') ) { | |
var url = new URL(arguments[0]); | |
url.searchParams.forEach(function(value, key) { | |
url.searchParams.delete(key); |
# Accessing to some directories for the first time. | |
cd Repositories/watc/src/main/java/com/mohamedibrihen/watc/service | |
cd ../endpoint | |
cd ../utils | |
# Accessing quickly via the Z command | |
sangimed@ubuntu ~ z watc service | |
sangimed@ubuntu ~ /Repositories/watc/src/main/java/com/mohamedibrihen/watc/service | |
sangimed@ubuntu ~ z endpoint |
package mypackage; | |
import javax.persistence.EntityManager; | |
import javax.persistence.ParameterMode; | |
import javax.persistence.PersistenceContext; | |
import javax.persistence.StoredProcedureQuery; | |
import org.springframework.stereotype.Component; | |
@Component |
'use strict'; | |
// ----- utils.js ----- | |
// CONSTANTS | |
/** | |
* Defines the tags on which the extension will be triggered. | |
*/ | |
const EDITABLE_TAGS = ['INPUT', 'TEXTAREA']; |
// Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
/** | |
* Get the current URL. | |
* | |
* @param {function(string)} callback called when the URL of the current tab | |
* is found. | |
*/ |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX users: <http://travel.univ-rouen.fr/ontologies/users/> | |
PREFIX trips: <http://travel.univ-rouen.fr/ontologies/trips/> | |
PREFIX travelers: <http://travel.univ-rouen.fr/ontologies/travelers/> | |
PREFIX global: <http://travel.univ-rouen.fr/ontologies/global/> | |
PREFIX travel: <http://travel.univ-rouen.fr/> | |
PREFIX text: <http://jena.apache.org/text#> | |
PREFIX tr: <http://www.thomsonreuters.com/> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> |