Explore >> Select a destination


You are here

blog.syntaxseed.com
| | daniel-siepmann.de
14.0 parsecs away

Travel
| | The composer package "maglnet/composer-require-checker" allows you to check whether all used dependencies are actually registered via composer.
| | jinoantony.com
24.8 parsecs away

Travel
| |
| | juffalow.com
13.0 parsecs away

Travel
| | If you are learning PHP or you are experienced programmer you surely read the word Composer. But...what is it? What is its purpose and why should you use it? Here I want to write a few things about it and show you how to use it. PHPUnit testing framework should meet the requirements as proper and useful example. Let's get started...
| | saeedesmaili.com
67.9 parsecs away

Travel
| I came across this Linkedin post from a Google engineer, on a new (in preview) and very interesting BigQuery syntax: GROUP BY ALL. This will save time when writing and specially modifying complex SQL queries on BigQuery. The GROUP BY ALL clause groups rows by inferring grouping keys from the SELECT items. It will exclude expressions with aggregate and window functions, constants, and query parameters for a smart GROUP BY. So instead of GROUP BY name, city, device, browser, date or GROUP BY 1, 2, 3, 4, 5 you would use GROUP BY ALL.