Sometimes we may need to collect facebook user’s basic data for our website or application. Then we’ve to call graph api or legacy api or fql query to collect some specific data. This is a basic requirements for most of the fbconnect base website or facebook application. To simplify this task here I published some code so that you could easily use this code and can integrate in your site. Read Full Article
I ran into an interesting bug/fact today while messing around with MySQL 5.5. It seems that in the DDL, you can’t say “Type=InnoDB|MyISAM|Foo” anymore. You have to say “Engine=InnoDB”.
This will break your propel:build-all , or propel:build-all-load .. or if you manually try to execute the sql from data/sql/*. You’ll get the following error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘Type=InnoDB’ at line 11
This issue is resolved in Propel 1.5.0, but I’m not sure when Symfony will include that in the Symfony 1.4 series.
To fix this issue, all you need to do is edit one file:
…
[Read more]Some days ago I was working in a vocabulary game and dictionary. The dictionary contains 1,10,000 words and meanings. I developed a vocabulary game where I had to randomly choose 10 words out of 1,10,000 dataset. Here I’m describing the possible solutions for this problem and which solution I used.
Data table
Table name is dictionary and it has id, word and meaning fields. id contains auto incremented id and it is unbroken sequence 1,2,3…..n.
id | word | meaning |
1 | aback | Having the wind against the forward side of the sails |
2 | abandon | Forsake, leave behind |
… | ….. | …. … |
Here I listed some programming and web related books those I found important for knowledge/skills/career whatever you said. Some of the books I read completely and some books partially. But all of these books I found very helpful to increase knowledge.
PHP
Beginning PHP 5 and MySQL If you’re beginner and want to learn from the start then you should read this book. You’ll find lot of examples of php, mysql in this book. | |
PHP Cookbook If you like problem/solution based study then this is one … |
I’ve released version 1.1.7 of the Better Cacti Templates project. This release includes a bunch of bug fixes, some new graphs for MySQL, and two new sets of graphs, for Redis graphing and for JMX graphing.
There are upgrade instructions on the project wiki for this and all releases. There is also a comprehensive tutorial on how to create your own graphs and templates with this project. Use the project issue tracker to view and report issues, and use the project mailing list to discuss the …
[Read more]
I am back home from a good week at the 2010 O'Reilly MySQL
Conference & Expo. I had a great time and got to see some old
friends I had not seen in a while.
Oracle gave the opening keynote and it went pretty much like I
thought it would. Oracle said they will keep MySQL alive. They
talked about the new 5.5 release. It was pretty much the same
keynote Sun gave last year. Time will tell what Oracle does with
MySQL.
The expo hall was sparse. Really sparse. There were a fraction of
the booths compared to the past. I don't know why the vendors did
not come. Maybe because they don't want to compete with
Oracle/Sun? In the past you would see HP or Intel have a booth at
the conference. But, with Oracle/Sun owning MySQL, why even try.
Or maybe they are not allowed? I don't know. It was just
sad.
I did stop by the Maatkit booth and was embarrassed to tell …
I'm very pleased to announce the publication of my book Expert PHP and MySQL, published by Wrox. This book was written by myself, Andrew Curioso and Ronald Bradford. The short of it is, upon finishing my previous book, Developing Web Applications with Apache, MySQL, memcached, and Perl, Wiley asked me if I knew of anyone who would like to write a MySQL/PHP book. I had worked with Andrew at Lycos and found him to be a brilliant PHP developer, having been the primary developer of Lycos's Webon product-- which has some excellent usage of PHP, Javascript and MySQL. When I friend of mine Bob Wilkins, who started MyVBO, was looking for a developer I suggested Andrew (he now works at MyVBO), and for this book I also suggested Andrew. Andrew had also written a short book for O'Reilly on AJAX, so Wiley was glad to have …
[Read more]
I was telling someone how we roll changes to production at
dealnews and they seemed really amazed by it. I have never really
thought it was that impressive. It just made sense. It has kind
of happened organically here over the years. Anyhow, I thought I
would share.
Version Control
So, to start with, everything is in SVN. PHP code, Apache
configs, DNS and even the scripts we use to deploy code. That is
huge. We even have a misc directory in SVN where we put any
useful scripts we use on our laptops for managing our code base.
Everyone can share that way. Everyone can see what changed when.
We can roll things back, branch if we need to, etc. I don't know
how anyone lives with out. We did way back when. It was bad.
People were stepping on each other. It was a mess. We quickly
decided it did not work.
For our PHP code, we have trunk and a production branch. There
are also a couple of …
If you think I’ve been a long time in replying to your e-mails in the past month or so, there’s a good explanation for that.
For the past many years, I’ve been using an e-mail hosting provider that prides itself on offering a special class of services. Things have actually been very good, with few hiccups along the way. However, for the past month, things have seriously gone downhill with e-mails taking hours or even days to arrive.
And the problem is indeed with the provider: The Received: headers tell their own very sad story on just how long it takes for an e-mail to progress through their internal systems.
Worse, the support people are being less than helpful, refusing to recognize the problems and doing nothing to communicate what they are doing to resolve their problems.
Below is a quick analysis of just how things have been in March. The times shown are from the time an e-mail first enters the …
[Read more]Just released by Wrox: Expert PHP and MySQL by Andrew Curioso, Ronald Bradford and Patrick Galbraith.
For once, an “Expert” book where you not only can, but must take the title seriously. This book is choke-full of information, examples and best practices written by some of the foremost experts in their respective fields. All of the authors clearly have …
[Read more]