Get better. Things you can do in 5 minutes, 15 minutes, to an hour a week.
http://mdswanson.com/blog/2011/10/24/get-better.html
http://mdswanson.com/blog/2011/10/24/get-better.html
Mdswanson
Matt Swanson - Get Better
writing on software, book writeups and projects by a software engineer from Indianapolis
PHP: Headers already sent and HTTP basic
If there’s one error that must be encountered by all PHP developers, this:-
probably one of it.
https://medium.com/@k4ml/php-headers-already-sent-and-http-basic-6e04a36eb312#.4v8p4mopp
If there’s one error that must be encountered by all PHP developers, this:-
Warning: Cannot modify header information - headers already sent by ...
probably one of it.
https://medium.com/@k4ml/php-headers-already-sent-and-http-basic-6e04a36eb312#.4v8p4mopp
Medium
PHP: Headers already sent and HTTP basic
If there’s one error that must be encountered by all PHP developers, this:-
Gitlab 8.15 released with auto deploy, web terminal and improved BitBucket importer !
https://about.gitlab.com/2016/12/22/gitlab-8-15-released/
https://about.gitlab.com/2016/12/22/gitlab-8-15-released/
GitLab
GitLab 8.15 released with Auto Deploy and Web Terminal
Code, test & deploy with GitLab. Everyone can contribute!
Lebih 200 penyelidik di seluruh dunia cuba menganalisa setiap kenyataan yang dibuat oleh Mark Zuckerberg untuk menjangkakan apa perancangan masa depannya.
http://zuckerbergfiles.org/
http://zuckerbergfiles.org/
The Zuckerberg Files
A a digital archive of all public utterances of Facebook’s founder and CEO, Mark Zuckerberg
Red Hat reported its third quarter fiscal 2017 revenue on December 21, showing growing strength in the company's OpenShift product line.
...
OpenShift has undergone a dramatic shift over the last two years, moving from a platform-as-a-service (PaaS) approach to becoming a Kubernetes distribution that enables containers-as-a-service (CaaS), starting with the OpenShift 3.0 release in 2015.
http://www.serverwatch.com/server-news/red-hat-wins-big-with-openshift-in-3q17.html
...
OpenShift has undergone a dramatic shift over the last two years, moving from a platform-as-a-service (PaaS) approach to becoming a Kubernetes distribution that enables containers-as-a-service (CaaS), starting with the OpenShift 3.0 release in 2015.
http://www.serverwatch.com/server-news/red-hat-wins-big-with-openshift-in-3q17.html
Serverwatch
Red Hat Wins Big with OpenShift in 3Q17
Red Hat reports third quarter fiscal 2017 revenue of $615 million, with some large OpenShift deals helping to power the company forward.
AWS Lightsail: Masih ada extra cost nampaknya.
DNS queries in excess of 3 million per month are charged at $0.40/million. Static IP addresses cost $0.005/hour when not attached to an instance for more than 1 hour. And there are other potential charges, particularly for those using other AWS services.
https://media-glass.es/thoughts-on-amazon-lightsail-fc37ca50d626#.j91k6evqg
DNS queries in excess of 3 million per month are charged at $0.40/million. Static IP addresses cost $0.005/hour when not attached to an instance for more than 1 hour. And there are other potential charges, particularly for those using other AWS services.
https://media-glass.es/thoughts-on-amazon-lightsail-fc37ca50d626#.j91k6evqg
Media Glasses
Thoughts on Amazon Lightsail
I am still catching up on all of the announcements from the AWS re:invent 2016, one of the ones I was interested in was Amazon Lightsail.
Software Developers Should Have Sysadmin Experience
Admittedly, I hate doing sysadmin work ... But I do it anyway. I do it because the context helps me write better code. I do it because code that works on my computer is useless. The code that matters is the code that works on web servers that are live in front of everyone else. Just writing code is only doing half of the job a software developer needs to do.
http://blog.professorbeekums.com/2017/01/software-developers-should-have.html
Admittedly, I hate doing sysadmin work ... But I do it anyway. I do it because the context helps me write better code. I do it because code that works on my computer is useless. The code that matters is the code that works on web servers that are live in front of everyone else. Just writing code is only doing half of the job a software developer needs to do.
http://blog.professorbeekums.com/2017/01/software-developers-should-have.html
Professorbeekums
Software Developers Should Have Sysadmin Experience
The differences between system administrators and software developers as well as why all software developers should have some amount of sysadmin experience.
you can access 243 free ebooks covering a range of different topics.
http://www.openculture.com/2017/01/download-243-free-ebooks-on-design-data-software.html
http://www.openculture.com/2017/01/download-243-free-ebooks-on-design-data-software.html
Open Culture
Download 243 Free eBooks on Design, Data, Software, Web Development & Business from O’Reilly Media
Last week we highlighted for you 20 Free eBooks on Design from O’Reilly Media. Little did we know that we were just scratching the surface of the free ebooks O'Reilly Media has to offer. If you head over to this page, you can access 243 free ebooks covering…
How to Build a Multilingual App: A Demo With PHP and Gettext
https://www.toptal.com/php/build-multilingual-app-with-gettext
https://www.toptal.com/php/build-multilingual-app-with-gettext
Toptal Engineering Blog
How to Build a Multilingual App: A Demo With PHP and Gettext | Toptal®
Making your website or web app available to a wider audience often requires it to be available in multiple languages. For non-English projects, you can increase your audience by releasing it in English as well as your native language. Internationalizing and…
Antara kelebihan menggunakan gettext utk translation adalah "readability" berbanding menggunakan kaedah lain seperti menggunakan array.
Contoh menggunakan array:-
Dan dalam fail terjemahan:-
Kita dapat lihat ketiadaan konteks pada kedua-dua bahagian yang menyukar proses koding dan juga terjemahan.
Ini pula contoh menggunakan gettext:-
Dan utk translation:-
Developer dapat melihat kesemua text (bukan hanya key) dalam code, dan translator juga dapat melihat keseluruhan teks bagaimana ia digunakan dalam code.
Komen/Feedback ? Hantarkan ke @devkiniadmin !
Contoh menggunakan array:-
<h1><?=$TRANS['welcome_message']?></h1>
Dan dalam fail terjemahan:-
$TRANS['welcome_message'] = "Welcome to our website ...";
$TRANS['welcome_message'] = "Selamat datang ke laman web kami ....";
Kita dapat lihat ketiadaan konteks pada kedua-dua bahagian yang menyukar proses koding dan juga terjemahan.
Ini pula contoh menggunakan gettext:-
<h1><?=sprintf(gettext('Welcome to our website %s!'), $name)?></h1>Dan utk translation:-
msgid "Welcome to our website %s !"
msgstr "Selamat datang ke laman web kami %s !"
Developer dapat melihat kesemua text (bukan hanya key) dalam code, dan translator juga dapat melihat keseluruhan teks bagaimana ia digunakan dalam code.
Komen/Feedback ? Hantarkan ke @devkiniadmin !
HTML5 music synthesizer using plain javascript - http://sb.bitsnbites.eu/
Source code - https://github.com/mbitsnbites/soundbox
Komen/Feedback ? Hantarkan ke @devkiniadmin !
Source code - https://github.com/mbitsnbites/soundbox
Komen/Feedback ? Hantarkan ke @devkiniadmin !
GitHub
GitHub - mbitsnbites/soundbox: SoundBox is an HTML5 synth music tracker/editor, suitable for creating music for small JavaScript…
SoundBox is an HTML5 synth music tracker/editor, suitable for creating music for small JavaScript demos (4K / 8K). - GitHub - mbitsnbites/soundbox: SoundBox is an HTML5 synth music tracker/editor, ...
Linode vs Digital Ocean vs Lightsail - https://medium.com/linode-cube/10-showdown-linode-vs-digitalocean-vs-amazon-lightsail-ce8ee978c89e#.m75r5oxkq
Komen/Feedback ? Hantarkan ke @devkiniadmin !
Komen/Feedback ? Hantarkan ke @devkiniadmin !
Medium
$10 Showdown: Linode vs. DigitalOcean vs. Amazon Lightsail
Amazon caught me off guard this week with a VPS offering that mirrors the pricing of DigitalOcean and potentially rivals the quality of…
1) Charging by the hour is a good option for short-term projects with specific goals.
2) When you're offered a long-term project with clearly defined goals, you should charge by the project.
So should you charge by the hour or by the project?
There's no one-size-fits-all answer. They're both legitimate strategies that work well in different situations.
When you're presented with a new project, consider them both, figure out which is the better option, and present your decision to the client.
Then it's time to get down to business and start wowing them with your work.
http://1099.com/c/ar/ta/HowToCharge_t042.html
2) When you're offered a long-term project with clearly defined goals, you should charge by the project.
So should you charge by the hour or by the project?
There's no one-size-fits-all answer. They're both legitimate strategies that work well in different situations.
When you're presented with a new project, consider them both, figure out which is the better option, and present your decision to the client.
Then it's time to get down to business and start wowing them with your work.
http://1099.com/c/ar/ta/HowToCharge_t042.html
1099
Charging By the Project or the Hour
The decision that every IP has to make -- should you charge by the hour or by the project?
UrBackup is an easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time - via adzmely@blog.nexoprima.com
https://www.urbackup.org/index.html
Komen/Feedback ? Hantarkan ke @devkiniadmin !
https://www.urbackup.org/index.html
Komen/Feedback ? Hantarkan ke @devkiniadmin !
Really long list of interesting open source projects.
Komen/Feedback ? Hantarkan ke @devkiniadmin !
https://medium.com/@likid.geimfari/the-list-of-interesting-open-source-projects-2daaa2153f7c#.f5z6p5v8f
Komen/Feedback ? Hantarkan ke @devkiniadmin !
https://medium.com/@likid.geimfari/the-list-of-interesting-open-source-projects-2daaa2153f7c#.f5z6p5v8f
Medium
The really big list of really interesting Open Source projects.
Hi, dear developers and readers!