with mysql pgsql intl support
$ brew install php --with-apache --with-mysql --with-pgsql --with-intl
date.timezone = Europe/Vienna
First of all, you need uapache2-utils tools. | |
sudo apt-get install apache2-utils | |
Then you add this in your virtualhost in your <Directory> tag : | |
#Require all granted | |
# you need to comment this line above to require a valid-user | |
AuthName "This website is not ready to go public !" | |
AuthType Basic |
import requests | |
import time | |
import json | |
token = '' | |
#Delete files older than this: | |
ts_to = int(time.time()) - 30 * 24 * 60 * 60 | |
def list_files(): |
# Add this snippet to the top of your playbook. | |
# It will install python2 if missing (but checks first so no expensive repeated apt updates) | |
# [email protected] | |
- hosts: all | |
gather_facts: False | |
tasks: | |
- name: install python 2 | |
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) |
<?php | |
<<<CONFIG | |
packages: | |
- "kriswallsmith/buzz: ^0.15.0" | |
- "symfony/console: ^3.2@dev" | |
CONFIG; | |
// Find you token on https://api.slack.com/docs/oauth-test-tokens | |
use Buzz\Message\Response; |
# In the root directory of a project, the Git working copy must be clean: | |
echo "a" | react-native upgrade # Generate the current version template and overwrite all files | |
git add . | |
git commit -m "Old version" # The current version template is added to the index | |
npm i react-native@latest --save # Install the new version of React Native | |
echo "a" | react-native upgrade # Generate the new version template and overwrite all files |
<?php | |
/** | |
* User: bekco (Behçet Mutlu) | |
* Date: 17/11/16 | |
* Time: 17:52 | |
*/ | |
namespace Acme\Oauth2Bundle\Oauth\Extension; |
To prevent this situation it is recommended to increase the watches limit (to, say, 512K): | |
1. Add the following line to either /etc/sysctl.conf file or a new *.conf file (e.g. idea.conf) under /etc/sysctl.d/ directory: | |
fs.inotify.max_user_watches = 524288 | |
2. Then run this command to apply the change: | |
sudo sysctl -p --system | |
And don't forget to restart your IDE. |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get -y install git zsh tig curl vim htop vlc tlp tlp-rdw build-essential automake | |
# Battery management | |
sudo tlp start | |
# install node js | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
sudo apt-get install -y nodejs |