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
git for-each-ref refs/merge-requests/*/head --format='%(refname)' | \ | |
while read ref | |
do | |
git update-ref -d $ref | |
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
# This is a skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
# so if you have any, please share! | |
# | |
# @kyletcarlson | |
# | |
# This skeleton also assumes you're using the following gems: |
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
--- amavisd.ori 2014-12-21 19:49:24.757834955 +0200 | |
+++ amavisd 2014-12-21 20:58:38.581469101 +0200 | |
@@ -107,7 +107,7 @@ | |
# Amavis::Lookup::LDAPattr (the rest) | |
# Amavis::In::AMPDP | |
# Amavis::In::SMTP | |
-#( Amavis::In::Courier ) | |
+# Amavis::In::Courier | |
# Amavis::Out::SMTP::Protocol | |
# Amavis::Out::SMTP::Session |
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
/* Slightly customized version of https://gist.github.com/michaelv/11145168 | |
Usage: | |
1. Put the IDs you want to remove in the globalToBeRemoved array, and make sure | |
they are strings | |
2. Go to the group's members page (https://www.facebook.com/groups/GID/members/) | |
3. Paste the code (after adding the IDs to globalToBeRemoved) In the Javascript | |
console, and then wait until the work is done. It takes a reasonable time. | |
*/ | |
var globalToBeRemoved = ["10000152515xxxx","10000152515xxxx"]; |
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
# 1. Use a PROXY and go to http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html and accept the terms then download the tar.gz suitable to your system (32 or 64 bit). | |
# 2. Move that .tar.gz tarball to the Downloads directory in your home folder. | |
# 3. run this script as sudo | |
if [[ $UID != 0 ]]; then | |
echo "This script neeeds to be run with sudo, like this:" | |
echo -e "\n sudo $0 $*\n" | |
exit 1 | |
fi | |
apt-get install python-software-properties |
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
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
ar: | |
devise: | |
confirmations: | |
confirmed: "لقد تم تأكيد حسابك بنجاح، وتم تسجيل دخولك." | |
send_instructions: "ستصلك خلال دقائق رسالة على بريدك الإلكتروني تتضمن الخطوات اللازمة لتأكيد حسابك." | |
send_paranoid_instructions: "إذا كان بريدك الإلكتروني مسجلاً عندنا فستصل إليه خلال دقائق رسالة تتضمن الخطوات اللازمة لتأكيد حسابك." | |
failure: | |
already_authenticated: "تم تسجيل دخولك مسبقاً." |