- catch
Catches any Throwable that occurs in its body and optionally exposes it.
- choose
Simple conditional tag that establishes a context for mutually exclusive conditional operations, marked by <when> and <otherwise>
- if
Simple conditional tag, which evalutes its body if the supplied condition is true and optionally exposes a Boolean scripting variable representing the evaluation of this condition import Retrieves an absolute or relative URL and exposes its contents to either the page, a String in 'var', or a Reader in 'varReader'.
- forEach
The basic iteration tag, accepting many different collection types and supporting subsetting and other functionality
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
openssl rand -base64 24 | |
openssl rand -hex 24 | |
xxd -l24 -ps /dev/urandom |
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
[ | |
{"phoneNumber": "+33751288664", "message": "Your verification code is: 1234"} | |
] |
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
/* compile with: xcrun -sdk iphoneos clang -arch arm64 -Wall -o ./mountfs ./mountfs.c */ | |
#include <stdio.h> | |
#include <sys/wait.h> | |
#include <spawn.h> | |
#include <unistd.h> | |
/* | |
if [[ $(/System/Library/Filesystems/apfs.fs/apfs.util -p /dev/disk0s1s3) == 'Preboot' ]]; then \n\ | |
/sbin/mount_apfs /dev/disk0s1s3 /mnt6 \n\ | |
fi \n\ |
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
#!/usr/bin/env bash | |
clear | |
cat <<EOF | |
----iPad 4th generation Activation Lock Bypass script---- | |
made by @sen0rxol0 | |
------------------------------------------------ | |
----Credits---- | |
u/johnponflanchan and @appletech752 |
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
// Modified from source: https://github.com/DeMille/node-usbmux/blob/master/lib/usbmux.js | |
const net = require('net'), | |
usbmuxd = { path: '/var/run/usbmuxd' } | |
devices = {}, | |
protocol = { | |
payloadListen: ` | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> |
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
#!/usr/bin/env bash | |
mkdir Icon.iconset | |
sips -z 16 16 [email protected] --out Icon.iconset/icon_16x16.png | |
sips -z 32 32 [email protected] --out Icon.iconset/[email protected] | |
sips -z 32 32 [email protected] --out Icon.iconset/icon_32x32.png | |
sips -z 64 64 [email protected] --out Icon.iconset/[email protected] | |
sips -z 128 128 [email protected] --out Icon.iconset/icon_128x128.png | |
sips -z 256 256 [email protected] --out Icon.iconset/[email protected] | |
sips -z 256 256 [email protected] --out Icon.iconset/icon_256x256.png |
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
@media only screen and (min-width: 360px) {} /* "only screen" afin d\'Améliorer la compatibilité avec les anciens navigateurs */ | |
@media (max-width: 360px) {} /* Appliquer des styles à condition que la largeur du viewport soit inférieure à 360px */ | |
@media (min-width: 360px) {} /* Appliquer des styles à condition que la largeur du viewport soit au moins (ou plus de) 360px */ | |
/**************** | |
* LES BREAKPOINTS | |
****************/ | |
@media (min-width: 359px) {} | |
@media (min-width: 399px) {} |
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
:root { | |
box-sizing: border-box; | |
font-size: 16px; | |
} | |
*, *::before, *::after { | |
box-sizing: inherit; | |
} | |
body, h1, h2, h3, h4, h5, h6, p, ol, ul { |
Allez sur le site https://brew.sh/ et suivez les instructions.
Suite a l'installation d'Homebrew tapez la commande brew install php
sur votre terminal et patientez.
En terminal, parcourez vos dossiers jusqu'au dossier où vous gardez votre projet et tapez la commande php -S localhost:5500
NewerOlder