-
Programme : http://event.afup.org/forum-php-2016/programme/
-
2016-10-27
- Notre env. de dév. n’est plus un bizutage !
- Auteur : Pascal MARTIN @pmartin
- Lien : https://blog.pascal-martin.fr/public/slides-notre-environnement-de-developpement-nest-plus-un-bizutage-forum-php-2016/#/title
- Pourquoi strlen("🌮") != 1 ?
- Auteur : Damien ALEXANDRE @damienalexandre
- Lien : https://jolicode.github.io/unicode-conf/#/
- Notre env. de dév. n’est plus un bizutage !
-
Affrontez la dette technique de votre projet en toute agilité
It's a bundle of documentation of languages, projects and other stuff. Easily searchable and can be used offline.
Download: https://devdocs.io
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
function listFolders(folder) { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
sheet.appendRow(["Name", "Sharing Access", "Sharing Permission", "Get Editors", "Get Viewers", "Date", "Size", "URL", "Download", "Description", "Type"]); //writes the headers | |
var folder = DriveApp.getFolderById("YOUR_FOLDER_ID");//that long chunk of random numbers/letters in the URL when you navigate to the folder | |
var files = folder.getFiles();//initial loop on loose files w/in the folder | |
var cnt = 0; | |
var file; |
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 | |
# Insert a USB key. | |
# if needed initialize it with MS/DOS FAT and MBR | |
# Download the Mint ISO image | |
# Convert the ISO -> IMG | |
hdiutil convert -format UDRW -o linuxmint-17.3-cinnamon-64bit linuxmint-17.3-cinnamon-64bit.iso | |
# Run a diskutil list to know the device for the USB key, e.g.: /dev/disk3 |
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
composer create-project typo3/cms-base-distribution='^7.6.0' my-test-typo3 --no-interaction | |
cd my-test-typo3/ | |
composer require helhum/typo3-console | |
# This will only work with PHP < 7 as realurl need PHP 5.x | |
composer require typo3-ter/introduction | |
cp web/typo3conf/ext/typo3_console/Scripts/typo3cms . | |
cp web/typo3conf/ext/bootstrap_package/Configuration/Apache/.htaccess web/ | |
chmod +x typo3cms | |
./typo3cms install:setup --non-interactive --database-user-name="root" --database-user-password="root" --database-host-name="localhost" --database-port="3306" --database-name="t3_my_test" --admin-user-name="admin" --admin-password="password" --site-name="Auto Install" | |
./typo3cms database:updateschema '*.*' |
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
echo 'deb http://packages.dotdeb.org wheezy-php56 all' >> /etc/apt/sources.list | |
echo 'deb-src http://packages.dotdeb.org wheezy-php56 all' >> /etc/apt/sources.list | |
gpg --keyserver keys.gnupg.net --recv-key 89DF5277 | |
gpg -a --export 89DF5277 | sudo apt-key add - | |
apt-get update | |
apt-get upgrade -y |
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
cd ~/ | |
curl -sS https://getcomposer.org/installer | php | |
php composer.phar require drush/drush:7.* | |
alias drush="bash ~/vendor/drush/drush/drush" | |
echo 'alias drush="bash ~/vendor/drush/drush/drush"' >> ~/.bash_aliases | |
echo 'alias drush="bash ~/vendor/drush/drush/drush"' >> ~/.profile | |
echo 'alias drush="bash ~/vendor/drush/drush/drush"' >> ~/.bash_aliases | |
source ~/.bash_aliases | |
drush | |
cd your.drupal.install/ |
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
# Upstream URL: https://github.com/nylas/N1 | |
# Please do mind that pkgbuild will automagically update | |
# to latest tagged release (you could have problems if you use an aur helper), | |
# there's no need to manually change pkgver. | |
# Please don't flag out-of-date! | |
pkgname=nylas-git | |
pkgver=0.3.25.r63.g9236529 | |
pkgrel=1 | |
pkgdesc="Chrome-based email client from Nylas" |
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
# Maintainer: Christian Rebischke <echo Q2hyaXMuUmViaXNjaGtlQGdtYWlsLmNvbQo= | base64 -d> | |
_pkgname='N1' | |
pkgname='n1-git' | |
pkgver=..0edbf51 | |
pkgrel=1 | |
pkgdesc="An extensible mail client built on the modern web" | |
arch=('any') | |
url="https://github.com/mbilker/N1/tree/node-v4" | |
license=('') | |
depends=('nodejs' 'npm') |
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
# Just read the help | |
soren@kevin ~/Sites/typo3-hyttekort ./typo3cms help install:setup | |
Alpha version of a setup command. Use with care and at your own risk! | |
COMMAND: | |
typo3_console:install:setup | |
USAGE: | |
/Users/soren/Sites/typo3-hyttekort/./typo3cms ./typo3cms install:setup [<options>] |