Cà phê ... https://www.instagram.com/p/BqylgziBxmX/?utm_source=ig_tumblr_share&igshid=1sdlbwrokynra
Alisa U Zemlji Chuda
No title available
KIROKAZE
Not today Justin
Show & Tell
Misplaced Lens Cap
sheepfilms
No title available
Mike Driver
Lint Roller? I Barely Know Her

Andulka
🪼
wallacepolsom
taylor price

blake kathryn

PR's Tumblrdome
Cosmic Funnies

❣ Chile in a Photography ❣
occasionally subtle

shark vs the universe

seen from United States
seen from Jordan

seen from Australia
seen from Australia

seen from Kuwait
seen from United States
seen from India
seen from United States

seen from Belgium

seen from United States
seen from United States

seen from Norway
seen from United States
seen from United States
seen from India
seen from Singapore

seen from France

seen from United States
seen from United States

seen from United States
@vinh-tran
Cà phê ... https://www.instagram.com/p/BqylgziBxmX/?utm_source=ig_tumblr_share&igshid=1sdlbwrokynra
Symfony 2.8 and update PHP from PHP 5.3 to PHP 7
To do this I need to solve 2 issues:
1. Can run parallel PHp 5 and PHP 7 in same computer, with me it is window 10
2. Create a branch for PHP 7 and make sure it works when upgrate to php 7
With 1, I go first with docker and at the end of the day I come with many php versions in one xampp. To archive this, I follow this article https://stackoverflow.com/questions/34757122/running-php-5-x-and-php-7-0-at-the-same-time-in-my-windows with a bit custom as below:
- link mysql data of my current xampp to latest mysql/data to replace it. I use command: mklink /J path\to\new\xampp\mysql\data path\to\old\xampp\mysql\data
- copy libeay32.dll and ssleay32.dll from php to apache/bin
- copy old apache-vhost to new one
(*) not fix for xdebug???
Tada, I can have it on my computer now
2. When upgrade to new version of PHP I got not loaded page / blank page. I need to get the error and find out that, I need to upgrade doctrine to latest version since it got an issue with legacy andWhere function which caused recursive loop and cannot load the page
I also follow this article https://stackoverflow.com/questions/44599072/sql-problems-with-complex-forms-on-symfony-2-8-after-php-upgrade-from-5-6-30-to?rq=1 which apply exactly the same with its composer.json
And now it can work perfectly. I will check if there is any incompatible issues.
Có một niềm vui mới!
Thích cái nắng và vị mặn trong gió! (at Ghềnh Đá Đĩa Phú Yên)
Biển xanh ngày mưa! (at Mũi Điện - Phú Yên - Điểm đón bình minh sớm nhất trên đất liền Việt Nam)
hối hả! (at Toà Nhà E-Town2)
Install angular-cli on window 10 with cooperate proxy
I spent a lot of time to figure out why I cannot install angular -cli on my computer which run on win 10 64 bit. I use my company network with proxy in the middle and tons of time it stop at a 403 error and randomly in some packages. I gave up and installed a virtual Ubuntu for this such of installation. I works on my new Ubuntu. Hmm.
Look back a little bit and see where the hell issue can come. I though maybe nodejs version and npm. Some time for searching google to see if it is possible and try this post: https://blog.angular-university.io/getting-started-with-angular-2-in-the-enterprise-how-to-get-node-npm-and-angular-installed-in-your-corporate-windows-pc-with-no-admin-rights/
I install nvm for window as they suggested at https://github.com/coreybutler/nvm-windows, download the zip file and install the exe file inside after exstract.
I plan to install nodejs 6.9.0 and nvm list to see if it existed or not. You can use command: nvm install 6.9.0 to install it. After we have nodejs 6.9.0 we switch to it by nvm use 6.9.0
And then npm install -g @angular/cli to install angular cli.
I finally live happily with this. Thanks
Đậu đỏ
Outside... (at Etown Cong Hoa)
Lumix GF3 and SDHC 16GB
I have a Lumix GF3 and want to upgrade card to 16GB. I bought a 16GB SDHC card and when I turn cam on, it show me a message "This card is not formatted for this camera and not suitable for movie recording"
I try to reformat and it is still the same and cannot use format feature of cam. After a while googling, I found the solution here: https://www.flickr.com/groups/1137287@N25/discuss/72157623489159323/
[ Webby's [deleted] 7 years agoIt's easy, so don't worry about it. All you have to do is go into the menu & select the option with the video camera icon " REC MODE " & set the " AVCHD Lite or MOTION JPEG," & the start up problem will be gone, you have to tell the camera which setting to use, then go into the menu again to " Tools " & down in section 6 is " Format " just select yes, & thats it.. Hope this helps...]
Thanks Webby for your answer and hope it help if someone go to this issue.
No worries! They're still good anw. (at Etown Cong Hoa)
Up... (at Etown Cong Hoa)
get and upload file to internet
import content from Dropbox, save a photo back to Facebook, all without having to deal with OAuth or server-side APIs.
https://www.filepicker.com/docs/quickstart
PHPExcel lock particular cells
Context: I want to lock cells H4:H10 and O4:O10, others will allow user to edit.
//set password $activeSheet->protectCells('H4:H10', 'password'); $activeSheet->protectCells('O4:O10', 'password');
//lock need cells $activeSheet->getStyle('H4:H10')->getProtection() ->setLocked(\PHPExcel_Style_Protection::PROTECTION_PROTECTED); $activeSheet->getStyle('O4:O10')->getProtection() ->setLocked(\PHPExcel_Style_Protection::PROTECTION_PROTECTED);
//unlock others $activeSheet->getStyle('A4:G10')->getProtection() ->setLocked(\PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); $activeSheet->getStyle('I4:N10')->getProtection() ->setLocked(\PHPExcel_Style_Protection::PROTECTION_UNPROTECTED);
$activeSheet->getProtection()->setSheet(true);
Update PHP to higher version in Xampp on Window
XAMPP is a great suite to quickly get up and running with Apache, PHP, Perl and MySQL. Warning! It is not aimed to be used in a production environment! Its settings are geared towards ease of use rather then security!
However I went against my own advice and used it in a couple of instances, however these are not public facing sites, rather internal and heavily firewalled services. Even so whenever a security update to PHP comes out, I feel the need to use the new version. Here is how you can do it, without waiting for the official XAMPP package to update (you really can't criticize them for not updating faster, since it is a development not a production server and as such minor PHP releases shouldn't influence your code).
Warning! Use these instructions on your own risk. They are written to the best of my knowledge, however I can't make any guarantees. Always backup your data.
Download the latest binary version of PHP (make sure to get the .zip package not the installer)
De-archive it to a directory
Copy the contents of the directory in the php subfolder of your XAMPP installation directory, overwriting the files which are already present
Overwrite the files which are already present in the apache\bin directory with the newer versions.
<<Might no need>>Now the trick: take the files which have a _2 in their names (for example php5apache2_2.dll or php5apache2_2_filter.dll), copy them in the apache\bin subdirectory and remove the _2 part, overwriting the existing files. This is necessary because by XAMPP uses Apache version 2.2 and the files with the 2 prefix are built for Apache 2.0, so you must take the files build for the newer version (which has a different plugin interface) and rename them in the filenames XAMPP expects.
Ref: http://hype-free.blogspot.com/2007/07/updating-php-in-xampp-for-windows.html
Ready for tomorrow picnic with Ken