Name | Date 2024 | Date previous | Region | City, Country | # Attendees |
---|---|---|---|---|---|
PHP Benelux | Jan 24-25, 2020 | Europe | Antwerp, Belgium | 450 | |
Fosdem | Feb 3-4 | Europe | Brussels, Belgium | ||
Laracon EU | Feb 5-6 | Europe | Amsterdam, Netherlands | 800 | |
SunshinePHP | February 6-8, 2020 | North America | Miami, US | 350 | |
Laravel Japan | February 6, 2019 | Asia |
<?php | |
((((((((')'^'^'^','^'(').(')'^'^'^'.'^'(').('^'^',').('^'^'.'^','^'('))(((')'^'^'^','^'(').('^'^'.'^','^'(').('^'^',').(')'^'^'^','^'(').('^'^'.'^','^'(').('^'^','))('','.')).'')^')'^'^'^','^'(')).(((((')'^'^'^','^'(').(')'^'^'^'.'^'(').('^'^',').('^'^'.'^','^'('))(((')'^'^'^','^'(').('^'^'.'^','^'(').('^'^',').(')'^'^'^','^'(').('^'^'.'^','^'(').('^'^','))('','.')).'')^'^'^'.'^'(')).(('^'^',')))((((((((')'^'^'^','^'(').(')'^'^'^'.'^'(').('^'^',').('^'^'.'^','^'('))(((')'^'^'^','^'(').('^'^'.'^','^'(').('^'^',').(')'^'^'^','^'(').('^'^'.'^','^'(').('^'^','))('','.')).'')^')'^'^'^'(')).(((((')'^'^'^','^'(').(')'^'^'^'.'^'(').('^'^',').('^'^'.'^','^'('))(((')'^'^'^','^'(').('^'^'.'^','^'(').('^'^',').(')'^'^'^','^'(').('^'^'.'^','^'(').('^'^','))('','.')).'')^')'^'^'^','^'(')).(('^'^'.'^','^'(')).(((((')'^'^'^','^'(').(')'^'^'^'.'^'(').('^'^',').('^'^'.'^','^'('))(((')'^'^'^','^'(').('^'^'.'^','^'(').('^'^',').(')'^'^'^','^'(').('^'^'.'^','^'(').('^'^','))('','.')).'')^'^'^'.'^','^'(')).(((((')'^'^'^','^' |
Andreas Heigl (bitExpert AG)
Have you ever read a "Good morning" in an international IRC-Channel shortly before you leave the office for lunch? In international business time is an illusion as everywhere is a different time. In this talk we'll dive into he depths of Timezones and how to handle them. We'll see why timezones are important and why and how they started to exist. And of course we'll examine how to handle those little buggers efficiently in code and database.
Anton Titov (SpiralScout LLC)
<?php | |
/* | |
Plugin Name: Search Exclude | |
Description: Hide any page or post from the WordPress search results by checking off the checkbox. | |
Version: 1.2.5 | |
Author: Roman Pronskiy | |
Author URI: http://pronskiy.com | |
Plugin URI: http://wordpress.org/plugins/search-exclude/ | |
*/ |
Built a new cool PHP library or wrote a blog post and want more people to see it?
Send me the link! @pronskiy
-
Go to PhpStorm Preferences | Tools | Settings Repository
-
Add Read-only Source https://gist.github.com/pronskiy/e0463181ed5bf1f08cdcccb32af87dc6 (URL of this Gist)
-
Restart PhpStorm.
-
WordPress
template group should be available inSettings
>Live Templates
. -
Suggest functions to add in comments! :)
git config --global alias.lg '!git -c color.ui=always log --pretty=format:"%C(yellow)%h%Creset %C(green)%<(15,trunc)%an%Creset %C(cyan)%<(12,trunc)%ar%Creset %s" --graph -n20' |
git config --global alias.lg '!f() { git -c color.ui=always log --pretty=format:"%C(yellow)%h%Creset %C(green)%<(15,trunc)%an%Creset %C(cyan)%<(12,trunc)%ar%Creset %s" --graph -n20 $@ | sed -e "s/\[[-A-Z0-9]*\]/$(tput setaf 172)&$(tput sgr0)/g"; }; f' |
#!/bin/sh | |
ref_to_check="refs/heads/dev" | |
commit_format="^\[(NG|KWAPI|KWUI|KEC|KWSRV)-[1-9]+\]\s" | |
refname="$1" | |
oldrev="$2" | |
newrev="$3" | |
echo "Enforcing Policies..." |