Calendar
February 2012 M T W T F S S « May 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 -
Latest Wiki.
- fetch the records through ajax and jquery in json format using kohana
- Set user as idle in PHP using jquery
- What is XML-RPC?
- Empty image src can destroy your site
- High Performance Ajax Applications
- Performance Research, Part 3: When the Cookie Crumbles
- Best Practices for Speeding Up Your Web Site
- 15+ Tips to Speed Up Your Website, and Optimize Your Code!
- How to manage languages in kohana
- Define variable in Kohana using Config File
-
What people said about wiki?
- Steve on fetch the records through ajax and jquery in json format using kohana
- Dehmers on fetch the records through ajax and jquery in json format using kohana
- Another Title on Auth Module with SPRIG Library in Kohana
- Frederics on fetch the records through ajax and jquery in json format using kohana
- sasder on fetch the records through ajax and jquery in json format using kohana
Technical Archive
-
fetch the records through ajax and jquery in json format using kohana
Posted on May 14, 2010 | 10 CommentsHI All, After spending lot’s of time, i got result in josn format in kohana. I want to fetch all records of last 3 minutes of comment table and it will display on my site after check is record already show on browser or not. As... -
Set user as idle in PHP using jquery
Posted on April 7, 2010 | No CommentsidleTimer = null; idleState = false; idleWait = 2000; (function ($) { $(document).ready(function () { $(‘*’).bind(‘mousemove keydown scroll’, function () { clearTimeout(idleTimer); ... -
What is XML-RPC?
Posted on March 29, 2010 | No CommentsXML-RPC is a remote procedure call protocol which uses XML to encode its calls and HTTP as a transport mechanism.[1] Contents [hide] 1 History 2 Usage 3 Data types 4 Examples 5 Criticism 6 Implementations 6.1 C++ 6.2 Objective-C / GNUstep / Cocoa 6.3 Erlang 6.4 Java 6.5 XMPP 6.6 Other 7 See also 8 References 9 External links // [edit] History XML-RPC was... -
Empty image src can destroy your site
Posted on March 28, 2010 | No CommentsThis is a problem I’ve come across frequently, and since it has come up again recently, I thought I’d explore this issue in the hope that it will save others some trouble. There are so many problems that this one issue can lead to that... -
High Performance Ajax Applications
Posted on March 28, 2010 | No CommentsHigh Performance Ajax Applications View more presentations from julien.lecomte. -
Performance Research, Part 3: When the Cookie Crumbles
Posted on March 28, 2010 | No CommentsHTTP cookies are used for a variety of reasons such as authentication and personalization. Information about cookies is exchanged in the HTTP headers between web servers and browsers. This article discusses the impact of cookies on the overall user response time. HTTP Quick Review Cookies originate from... -
Best Practices for Speeding Up Your Web Site
Posted on March 28, 2010 | No CommentsMinimize HTTP Requests tag: content 80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of... -
15+ Tips to Speed Up Your Website, and Optimize Your Code!
Posted on March 28, 2010 | 1 CommentOnce you’ve been coding for a while, you begin to take something for granted. You forget just how smart you really are. How many hundreds of keyboard shortcuts have we memorized? How many languages have we learned? How many frameworks? How many hacks? To say... -
How to manage languages in kohana
Posted on March 20, 2010 | No CommentsTo manage language in kohana you must define variable in languages file. First of all you will make a directory i18n under application directory. Now you will make a folder of all languages which will be run on your site such as for english you... -
Define variable in Kohana using Config File
Posted on March 17, 2010 | No CommentsHow to make the global variable in Kohana – To get the value of the variable which is used globally into the website. For it you have to set the variable in config file of Kohana. For it, you have to open the file - Kohana ->...