[test](javascript:prompt(1234))
[test](Javascript:alert(1234))
[test](javascript://www.google.com%0Aalert(1234))
[test](javascript:prompt`1234`)
[test](javascript://www.google.com%0Aprompt(1234))
[test](javascript:eval(`prompt(1234)`))
[](javascript:prompt(1234))
[test](javascript:Function('prompt(1234)')())
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
using Raylib_cs; | |
using System.Diagnostics; | |
namespace AsciiI | |
{ | |
public static class VideoCreator | |
{ | |
public static List<Image> Images = new(); | |
static readonly string FfmpegPath = @"Ressources/ffmpeg.exe"; |
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
$registryPath = "HKLM:\SOFTWARE\Classes\CLSID" | |
$clsidKeys = Get-ChildItem -Path $registryPath | |
foreach ($clsidKey in $clsidKeys) { | |
$name = $clsidKey.PSChildName | |
$directoryPath = ".\folders\$name.$name" | |
if (-not (Test-Path -Path $directoryPath)) { | |
New-Item -Path $directoryPath -ItemType Directory | |
Write-Host "créé : $directoryPath" |
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
using System.Data; | |
using System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder; | |
using System.Data.SQLite; | |
using Spectre.Console; | |
using Rule = Spectre.Console.Rule; | |
using Color = Spectre.Console.Color; | |
class ReadAllSQLiteFiles | |
{ | |
static void Main(string[] args) |
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
@echo off | |
SET NB=1 | |
:loop | |
IF %NB% GTR 95 GOTO concat | |
SET URL=https://www.georisques.gouv.fr/webappReport/ws/cavites/departements/%nb%/fiches.csv | |
SET FILE="./%NB%.csv" | |
ECHO Downloading from %URL% .. | |
powershell.exe -c "(New-Object Net.WebClient).DownloadFile('%URL%','%FILE%')" | |
SET /a NB=NB+1 | |
GOTO loop |
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
@echo off | |
SET URL=https://umod.org/games/rust/download | |
SET FILE="./%RANDOM%.zip" | |
SET FOLDERPATH="C:\Users\Guillaume\Desktop\RustServer\common\rust_dedicated\data\Managed" | |
ECHO Downloading from %URL% | |
powershell.exe -c "(New-Object Net.WebClient).DownloadFile('%URL%','%FILE%')" | |
ECHO Done. | |
ECHO Extract to current folder | |
powershell.exe -c "Expand-Archive -Force '%FILE%' ./" | |
ECHO Done. |
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
@ECHO OFF | |
SETLOCAL enableextensions | |
:start | |
SET /P project="project path:" | |
SET /P save="save path:" | |
SET tmp=%random% | |
CLS | |
FINDSTR /S /B /N /R /C:"#include" %project%\*.c>%tmp% | |
FOR /f "tokens=*" %%a IN (%tmp%) DO CALL :parse %%a |
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
@echo off | |
::Configuration | |
SET folderPath=C:\Users\Guillaume\Desktop\fiverrorderFO1B3039F9A5\backuppls\ | |
SET backupPath=C:\Users\Guillaume\Desktop\fiverrorderFO1B3039F9A5\ | |
SET SubExcept[0]=sub3 | |
SET SubExcept[1]=sub4 | |
SET /A i = 0 | |
::ClearBackupFolder | |
ForFiles /p %backupPath% /s /m *.zip /d -7 /c "cmd /c del @file" |
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
private void Highligh(RichTextBox rtb) { | |
String[] keywords = { | |
"@echo", | |
"echo", | |
"pause", | |
"set", | |
"cls", | |
"exit", | |
"del", | |
"erase", |
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
private Boolean Exist(By by) //vérifie si un élément existe | |
{ | |
try | |
{ | |
this.driver.FindElement(by); | |
return true; | |
} | |
catch(Exception) | |
{ | |
return false; |
NewerOlder