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
root@ip-10-208-51-26:/usr/share/php/libzend-framework-php/Zend# diff Service/Twitter.php-unpatched Service/Twitter.php | |
61c61 | |
< const OAUTH_BASE_URI = 'http://twitter.com/oauth'; | |
--- | |
> const OAUTH_BASE_URI = 'https://api.twitter.com/oauth'; |
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/share/php/libzend-framework-php/Zend# diff Service/Twitter.php-unpatched Service/Twitter.php | |
61c61 | |
< const OAUTH_BASE_URI = 'http://twitter.com/oauth'; | |
--- | |
> const OAUTH_BASE_URI = 'https://api.twitter.com/oauth'; |
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
#!/bin/bash | |
buildVersion=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "$INFOPLIST_FILE") | |
if [ -n "$BUILDOZER_BUILDNUMBER" ]; then | |
buildNumber=$BUILDOZER_BUILDNUMBER | |
else | |
buildNumber="dev" | |
fi | |
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildVersion.$buildNumber" "$INFOPLIST_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
<?php | |
// Issue 1, empty associative arrays (dictionaries) become regular arrays. | |
$dictionary = array('key' => 'value'); | |
var_dump(json_encode($dictionary)); // gives '{"key":"value"}'; | |
unset($dictionary['key']); | |
var_dump(json_encode($dictionary)); // Gives '[]' -> json dictionary turned into array |
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
# CONTRIBUTOR LICENCE AGREEMENT | |
###### version 1.00 / 2020-5-20 | |
The State of the Netherlands, the Ministry of Public Health, Welfare and Sport (hereinafter: the Ministry) would like to utilise the knowledge of third parties in developing digital resources that could contribute to combating COVID-19 (hereinafter referred to collectively as: the Digital Resources). | |
You (hereinafter: the Contributor) wish to contribute to the development of the Digital Resources, for example in the form of new or an adaptation of existing software, designs, documentation, digital files and/or other works to which intellectual property rights can attach (hereinafter: the Contributions). | |
The purpose of this licence agreement is (i) to clarify the intellectual property rights to the Contributions and (ii) to enable the Ministry to use and publish the Contributions. |