vagrant init hashicorp/precise64; vagrant up --provider virtualbox
vagrant up
vagrant ssh
apt-get update
<?php | |
/** | |
* easy image resize function | |
* @param $file - file name to resize | |
* @param $string - The image data, as a string | |
* @param $width - new image width | |
* @param $height - new image height | |
* @param $proportional - keep image proportional, default is no | |
* @param $output - name of the new file (include path if needed) | |
* @param $delete_original - if true the original image will be deleted |
Download forticlient SSL VPN from the below link:
http://www.iitk.ac.in/cc/vpn_update/sslvpn.htm
Extract the file and save to any location.
Now use this command
chmod +x forticlientsslvpn
#!/bin/sh | |
curl http://localhost:8080/solr/update/?commit=true -H 'Content-Type: text/xml' --data-binary '<update><delete><query>type:[content_type_name]</query></delete></update>' | |
single core: | |
curl http://localhost:8080/solr/update?commit=true -H "Content-Type: text/xml" --data-binary ':' | |
multiple core: | |
curl http://localhost:8080/solr/[CORE_NAME]/update?commit=true -H "Content-Type: text/xml" --data-binary ':' |
/* | |
Node.js, express, oauth example using Twitters API | |
Install Dependencies: | |
npm install express | |
npm install oauth | |
Create App File: | |
Save this file to app.js | |
<?php | |
//place this before any script you want to calculate time | |
$time_start = microtime(true); | |
//sample script | |
for($i=0; $i<1000; $i++){ | |
//do anything | |
} |
# Create configuration file for the new virtual host in `sites-available` folder | |
sudo cat <<EOF >/etc/apache2/sites-available/$1.conf | |
<VirtualHost $2:80> | |
DocumentRoot "/var/www/html/$1/" | |
ServerName $2 | |
<Directory "/var/www/html/$1/"> | |
allow from all | |
order allow,deny | |
# Enables .htaccess files for this site | |
AllowOverride All |
#!/bin/bash | |
wget http://download.redis.io/redis-stable.tar.gz | |
tar xvzf redis-stable.tar.gz | |
cd redis-stable | |
make | |
cp src/redis-server /usr/local/bin | |
cp src/redis-cli /usr/local/bin | |
redis-server |
php artisan --help OR -h | |
php artisan --quiet OR -q | |
php artisan --version OR -V | |
php artisan --no-interaction OR -n | |
php artisan --ansi | |
php artisan --no-ansi | |
php artisan --env | |
// -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug | |
php artisan --verbose |
#!/bin/bash | |
laravel new $1 | |
cd $1 | |
composer install | |
yarn install | |
touch README.md | |
cp .env.example .env | |
git init | |
git add -A |