Skip to content

Instantly share code, notes, and snippets.

View floriancourgey's full-sized avatar
🐔
Supporting French Tech since 2010

Florian Courgey floriancourgey

🐔
Supporting French Tech since 2010
View GitHub Profile
@shanerk
shanerk / package.xml
Last active May 2, 2023 12:20
Salesforce package.xml file to get all metadata from your org. Works great with vscode and cli.
<?xml version="1.0" encoding="UTF-8" ?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>*</members>
<name>ApexClass</name>
</types>
<types>
<members>*</members>
<name>ApexComponent</name>
</types>
@trietptm
trietptm / tools.md
Created October 7, 2018 17:41 — forked from ZetaTwo/tools.md
CTF/Hacking tools - Tools I use for security related work

General purpose

010 Editor - Hex editor
Sublime - Text editor
Terminator - Terminal emulator

Low-level reversing

IDA - Reversing IDE
binaryninja - Reversing IDE
capstone - Disassembly framework
unicorn - cpu emulator framework

@RomainMarecat
RomainMarecat / .gitlab-ci.sh
Last active April 25, 2022 03:56
Simple gitlab-ci configuration symfony
#!/bin/bash
# Install dependencies only for Docker.
[[ ! -e /.dockerinit ]] && exit 0
set -xe
# Update packages and install composer and PHP dependencies.
apt-get update -yqq
apt-get install git libcurl4-gnutls-dev libicu-dev libmcrypt-dev libvpx-dev libjpeg-dev libpng-dev libxpm-dev zlib1g-dev libfreetype6-dev libxml2-dev libexpat1-dev libbz2-dev libgmp3-dev libldap2-dev unixodbc-dev libpq-dev libsqlite3-dev libaspell-dev libsnmp-dev libpcre3-dev libtidy-dev phpunit -yqq
@mbejda
mbejda / gist:a4097b7fb1f6458f3a09
Created December 10, 2015 14:17
Install IOS-deploy on MAC
npm install -gf ios-deploy --unsafe-perm=true
@superbiche
superbiche / insert-before-after-key.php
Created October 8, 2015 16:17
Insert a value before/after a specific key in an associative array.
/*
* Inserts a new key/value before the key in the array.
*
* @param $key
* The key to insert before.
* @param $array
* An array to insert in to.
* @param $new_key
@MatthewEppelsheimer
MatthewEppelsheimer / hack.sh
Created March 31, 2012 23:00 — forked from erikh/hack.sh
OSX Settings
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2269385/a714e0e69ba99936f914ade0083709dcca6f8438/hack.sh | sh
#