Codeigniter Linkedin library

by Learn PHP on April 22, 2012

Linkedin is a much ignored API with a lot of potential. I was always looking for a good implementation of Codeigniter Linkedin library but never found one, with the help of Linkedin PHP library (Please someone point out to correct source). I have created a basic implementation of Linkedin library on Linkedin, documentation and more functions are in roadmap. Do check out at https://github.com/gauravtechie/Codeigniter-linkedin .

{ 2 comments }

Pinterest API

by Learn PHP on April 20, 2012

Everyone’s waiting to see a launch of Pinterest API. Pinterest had a working API which they took down for some unclaimed reasons. Some users have managed to take a cached version of Pinterest API docs online and can be found at http://tijn.bo.lt/pinterest-api .

You are not able to use the oAuth calls from these API docs, but you can successfully read data via these API docs, even for that you need to send correct headers to emulate calls such that they are coming from Pinterest iPhone app.

Correct headers are:-


Host: api.pinterest.com
User-Agent: Pinterest For iPhone / 1.4.3
Accept-Encoding: gzip
Connection: keep-alive
Proxy-Connection:...

There are news going around that Pinterest is scared of having a problem like twitter, where spammers used API very intelligently to bombard twitter with a lot of crap data. Twitter still having a hard time to tackle these spam accounts big time http://articles.businessinsider.com/2012-03-26/tech/31238519_1_mobile-apps-twitterrific-hootsuite . We hope that these fears don’t put Pinterest people off track of developing a full fledged API.

Want more of updated development. Join Pinterest unofficial API developer Group here on facebook https://www.facebook.com/groups/pinterestapi/

Update:
One implementation of Pinterest API at Github. Still to test it though by me. https://github.com/kellan/pinterest.api.php

&nbsp

{ 1 comment }

How to make svn ignore file and folders on update and commit

March 10, 2012

When we work on Production and Development environment separately on subversion, many times we need to keep a file outside of the SVN versioning. Usually conf files come under this category. A simple method of this is to navigate to the repositry and simply issue command so that svn ignore file in that folder.   Don’t forget [...]

Read the full article →

Revert files to older svn version

February 25, 2012

A lot of times developers do one or other mistakes and you need to revert the files to older version. Which basically mean that you need to merge backwards with a older version of files. So let’s say if you want to go back from version 100 to 99, you’ve to svn update svn merge [...]

Read the full article →

Restricting folders for svn access

February 25, 2012

While working with several developers at the same time, you really need a method to make sure that each team doesn’t mess up with someone else module. Splitting directories of each user is a nice idea when your developers are not that diciplined or when you are running multiple sites of same repository. I faced [...]

Read the full article →

Google Plus API

July 10, 2011

Google is rolling out API very soon for developers to take a sneak peak and develop applications. In the meantime developers can sign up at https://services.google.com/fb/forms/plusdevelopers/ to get a early access onto the Google plus API. Eventually, google plus is playing a invite only for brands and developers too after a successful stunt with social [...]

Read the full article →

ERROR: While executing gem (Gem::RemoteSourceException) HTTP Response 302 fetching

July 10, 2011

While struggling with old gems and ruby installation on my macosx. I googled a lot for response and find no satisfactory answer. The problem was simple, macosx 10.5 comes with ruby 1.8.1 and rails 1.2.6 which is now a depreciated version of ROR and not recommended to be used for production. Now since gems have [...]

Read the full article →

2 regular expression code snippets a developer needs daily

May 13, 2011

Regular expression can be easily called the heart of data mining technology. For beginners it may look like a very hard thing to grasp, But actually it’s pretty simple and compact once it’s been learned. I have listed some pretty basic regular expressions here , Which can help in mining nearly 70% of the text [...]

Read the full article →

2 most common php url functions for daily use

March 15, 2011

Seldom every php developer need some php url functions to work with , usually while parsing a web portal or finding the links url functions come very handy. Here are URL based functionalities a developer may need . 1) Get the url of the portal:- echo $_SERVER(‘HTTP_HOST’); 2) Parse the url for extracting all components:- [...]

Read the full article →

Google Plus Circles

March 13, 2011

Update:- Google launched the google circle social network as Google plus. API is still awaited. Updates will be coming as the API gets launched. Google is launching there new social networking service “Google Circles”, this is rumored to offer photo sharing, video sharing and updates. Which can be tightly linked to other social networks and [...]

Read the full article →