Posts Tagged ‘ syntax ’

P'Sec: Database Table Creation Part I « David Seah / Code

September 14, 2011
By

I'm going to turn on PHP error handling (which is off by default on my server) so I can see error messages interactively. That didn't seem to work…hmm. So I'm going back to the LOGS now, following the instructions I wrote for ...

Read more »

Application Level Error Handling from Global.asax

August 27, 2011
By

Application Level Error Handling from Global.asax. by Shyam Srinivas | Tags: ASP. NET, Error Handling , Tips and Tricks. There may be tens, if not hundreds, of loop holes in an asp.net web application. It cannot be predicted ...

Read more »

Python string objects implementation | Laurent Luce's Blog

June 20, 2011
By

This article describes how string objects are managed by Python internally and how string search is done. PyStringObject structure · New string object · Sharing string objects · String search ...

Read more »

Python integer objects implementation | Laurent Luce's Blog

May 16, 2011
By

This article describes how integer objects are managed by Python internally. An integer object in Python is represented internally by the structure PyIntObject. Its value is an attribute of type long. ...

Read more »

PhP Program Coding

April 27, 2011
By

PHP Error Handling . When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. ...

Read more »

Vb.Net Error catching

April 1, 2011
By

Once the error(s) where caught I used the error display method I wrote about in this post. db3e8019-e09f-44fe-8454-0b415f055a2a|0|.0. Tags: .net 4.0, Vb. Net, error handling , catch, error catch, catch when, exceptions. Categories: ...

Read more »

Security Issues with Python Pickle | Mutaku

March 17, 2011
By

StringIO(pickle_string)).load(). Please check out Nadia's article for more information. Her site also contains some other great python tips and tricks, many of which involve dealing with Python Image Library. ...

Read more »

FUN in S&T: Some Python Tips

January 17, 2011
By

Some Python Tips ========================= Print the list ~~~~~~~~~~~~~~~~~ - we should print list like this > > > print "%s" % 'n '.join(sys.path) Floating Division ~~~~~~~~~~~~~~~~~ > > > from __future__ import division ...

Read more »

FUN in S&T: Python Tips, Tricks, and Hacks

January 15, 2011
By

Python Tips , Tricks, and Hacks. FROM: http://www.siafoo.net/article/52#checking-for-property-and-method-existence. By David. Updated 4 months ago (17 Aug 2010 at 10:12 PM) history recent activity. Want to write shorter, cleaner code? ...

Read more »

Error vs Exception, Part 1 – Anvil Studios

May 3, 2010
By

... PHP's error and exception models — what each is, how they work, and how and when to use the one over the other. In this installment, I will first attempt some definitions, and then take a closer look at PHP's error handling model. ...

Read more »