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
#!/bin/bash | |
# Replace with your personal GitLab access token | |
PRIVATE_TOKEN="YOUR_PRIVATE_TOKEN" | |
# Replace with the URL of your GitLab instance | |
GITLAB_URL="https://gitlab.example.com" | |
# Backup file | |
BACKUP_FILE="gitlab_ci_cd_variables_backup.txt" | |
# Function to export instance-level CI/CD variables |
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
#/bin/bash | |
VOLUME_NAME=CLEF | |
DMG_PATH=/Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg | |
hdiutil attach ${DMG_PATH} -noverify -nobrowse -mountpoint /Volumes/install_app | |
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Sierra | |
hdiutil resize -size 8g /tmp/Sierra.sparseimage | |
hdiutil attach /tmp/Sierra.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build | |
rm /Volumes/install_build/System/Installation/Packages | |
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/ |
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
http://pentestmonkey.net/blog | |
http://jeremiahgrossman.blogspot.com | |
http://www.darknet.org.uk | |
http://spylogic.net | |
http://taosecurity.blogspot.com | |
http://www.room362.com | |
http://blog.sipvicious.org | |
http://blog.portswigger.net | |
http://blog.c22.cc | |
http://carnal0wnage.blogspot.com |
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
# TRANSLATOR(s): Martin Letellier, Jean-Baptiste Alleaume | |
fr: | |
language_name: "Français" | |
root: &root "Accueil" | |
how_can_we_help: "Support ETD Solutions" | |
browse_topics: "Parcourir" | |
support_team: "Equipe Support" | |
nothing_here: "Rien à voir ici !" |
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
google-site-verification: googledbd823a99be2ad9e.html |
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
## Mod_rewrite in use. | |
RewriteEngine On | |
# Sitemap dynamique | |
RewriteRule sitemap.xml sitemap.php [L] |
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
<?php | |
header('Content-Type: text/xml; charset=utf-8'); | |
echo file_get_contents("http://[WEBSITEURL]/index.php?option=com_osmap&view=xml&id=1"); |
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
h2:before { | |
display: block; | |
position: absolute; | |
left: -1050px; | |
top: 50%; | |
background-color: #ecc873; | |
height: 1px; | |
width: 1000px; | |
margin-top: -0.5px; | |
content: " "; |
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
#!/usr/bin/env bash | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Plateforme | |
LABELS["framework"]="BFD4F2" | |
LABELS["app"]="BFD4F2" |
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
brew install pkg-config libmemcached | |
git clone https://github.com/php-memcached-dev/php-memcached.git | |
cd php-memcached/ | |
git checkout php7 | |
/Applications/MAMP/bin/php/php7.0.8/bin/phpize | |
./configure --disable-memcached-sasl --with-libmemcached-dir=/usr/local/opt/libmemcached | |
make | |
make install | |
echo "extension=memcached.so" >> /Applications/MAMP/bin/php/php7.0.8/conf/php.ini |
NewerOlder