Saturday February 11, 2012 @ 10:13:01 GMT+10    ( Weather:  n/a )
Home » Weblog Archives

Powered byD's Bloggie
Weblog Archive browse by category ...
 → Category :
Display order:
Page 3 of 5   ( 46 entries , showing 21 - 30 )
<<  Previous  1 2 3 4 5  Next  >>

Ads banner on this site - 9:38 pm
Aren't they ugly and fat in size ?
Internet , Site Issue , Web Hosting  -  poster 

Ugly banner
Ugly banner
Personally, I 101% don't like the ads banners that are placed on EVERY SINGLE page on my site. I don't have an option unless I pay $USD 0.99 per month to get rid of these ugly banner. I'm not sure since when they changed the banner content from "normal & healthy" banners to banners like "Meet SEXY Singles" or "Cheat At Online Poker" type of banners. I am aware that my hosting company 100Webspace has changed their marking/management strategy/style, but that's not the result I expected. But obviously one thing for sure is that they want to make more money through the new banners. Is that possible ?

I want to get my own domain name and ads free environment ! (there is no free lunch in this world...)

Last edited: Sun 2006-03-26 @ 12:04 , by DaRen 1 time(s)

D's Bloggie v3.0 is out ! - 11:56 am
It now supports description =)
Site Issue , Site Updates  -  poster 

I keep on making updates/improvement to ease my blog posting and make it as a pleasure for me to post. Finally, the v3.0 of D's Bloggie is out ! happy

What's new in v3.0
  • ! Rewrote the whole core part for the editor that uses Javascript. Compatible with modern Opera/IE/Gecko/Mozilla based browser.
  • ! Redesign the posting interface
  • + BBTags can now be inserted at cursor position instead of appending them to the end
  • + Supports inserting BBTags to the beginning/end of a selection/highlighted text.
  • + Packed all the BBTags button in a toolbar-like form with the ability to show/hide extra buttons
  • + Added "Description" and "Allow Comments"
  • + With "Allow Comments" option, specific blog entry can now be locked and not allowing public comment posting
  • + Changed the way how sticky/hidden attributes are handled. They now fall under "Post status" with (Publish, Sticky, Draft, Hidden)
  • + Added option to change the timestamp for an existing post
  • + Added the BBCode manual and example
  • - New attribute for [ img ] tag. You can control width and height of an image.
  • - New [ center ] tag
  • - New [ rainbow ] tag
  • - Dropped [ quote2 ] tag and replace it with [ box ]
  • - Minor cosmetic changes to the rendering result
  • - Fixed hell lots of minor bugs

Read more on the changelog.

Screen Shots:

Click to enlarge
Enlarge
Click to enlarge
Click to enlarge
Enlarge
Click to enlarge

New D's Bloggie coming out soon - 11:14 pm
Site Issue , Site Updates  -  poster 

Spent most of the past few days weekend's time to update my site. Currently focusing on the blog posting area, both interface and coding. Also added/modified some structure of databse. I consider this as a major update. Can't wait to finish up the work but apparently I need more time on it. Hopefully I can finish it on tomorrow... well don't think I can make it.. maybe another 2 or 3 days before I can upload a fresh copy to the server =)

Last edited: Fri 2006-03-17 @ 23:20 , by DaRen 1 time(s)

Attn: 100Webspace Admin/Support - 11:02 pm
Site Issue  -  poster 

Quote:
Attn: 100Webspace Admin/Support

Please check the http://ahkuan.hollosite.com/test.php. I've made modification to show the difference.


*EDIT*
Yay !!! Thanks for fixing the problem. The time is correct now.

Incorrect weather temperature - 1:02 am
Bug , Site Issue , Site Updates  -  poster 

Fixed the incorrect weather info on my page. It shows -18 degree Celcius whenever the weather data is not available (-18 because of the formula used to convert Fahrenheit to Celcius). It now shows N/A for info if there are no weather data from Weather.com.

Check, check and more checking before you start to process an input.

Last edited: Sun 2005-12-18 @ 02:01 , by DaRen 2 time(s)

RSS - 4:11 pm
Computing , Internet , Site Issue , Standards  -  poster 

Lately I'm interested in RSS and I'm considering to prioritize and make it the first thing on my todo list.

RSS

(Really Simple Syndication) A syndication format that was developed by Netscape in 1999 and became very popular for aggregating updates to blogs and the latest news from Web sites. RSS has also stood for "Rich Site Summary" and "RDF Site Summary."

RSS is a family of XML file formats and the information is delivered as an XML file called RSS feed, webfeed, RSS stream, or RSS channel.


Drop me a line if you know any good PHP RSS parser/reader/aggregator. I'm also interested in RSS feed generator in PHP. I wanna learn more about RSS feed and put up a feed on my site.

Some feed parsers that "looks" good among others:
  • Magpie RSS - packed with hell lots of features and functions, used by alot of RSS software
  • LastRSS - light weight RSS parser
  • Lilina News Aggregator - some sort of feeds on feeds, using Magpie library
  • Tiny Tiny RSS - not tiny at all, web based RSS reader works like desktop version. Using Magpie library

Feed generator/writer:
... haven't test them though..

New design approach - 2:54 am
Coding , PHP , Site Issue , Site Updates , Standards  -  poster 

I'm updating my site again. I've been working on the core functions / classes. Yes, the CORE part... The major ones are like user authentication and database connection. I've unified all database access under one global variable, avoiding multiple DB connection objects created locally (class/function scope). The good thing about ? it saves memory and I can know how many SQL queries are made to construct a page. Scroll down to the very bottom and you can see how like "N queries made". Quite surprising though... some pages used like 35 SQL queries... o.O omg... gotna refine them later...

My current approach [ Hide ]
[ Highlight ] [ Text ]
-------site_management.php---------------
// The class of "everything", contains db connection
// and other authentication
class site_management
{
    var $DB_OBJECT;
    function site_management()
    {
        // Let's say MYSQL_DB is your class that contains
        // all functions to access/manipulate the database
        $this->DB_OBJECT = new MYSQL_DB();
    }
}
 
-------foo.php--------------------
// Some class that requires access to database
class foo
{
    // Internal database connection object
    var $_db_object;
 
    function foo()
    {
        // If global variable $SITE->DB_OBJECT exists, make reference
        // to it otherwise instantiate a new copy locally
        if (isset($GLOBALS['SITE']) && $GLOBALS['SITE']->DB_OBJECT)
            $this->_db_object =& $GLOBALS['SITE']->DB_OBJECT;
        else
            $this->_db_object = new MYSQL_DB();
    }
 
    function bar()
    {
        // You need to perform sql query here
        $this->_db_object->query($sql); // for example
        // ...
    }
}
 
------test.php-------------------
// The above two class is located in different files
// and below is also in a seperate script file
<?php
    $SITE = new site_management();
    $foo_obj = new foo();
    $foo_obj->bar();
?>


My old way [ Hide ]
[ Highlight ] [ Text ]
-------foo.php--------------------
// Some class that requires access to database
class foo
{
    // Internal database connection object
    var $_db_object;
 
    function foo()
    {
        // Instantiate a new copy locally
        $this->_db_object = new MYSQL_DB();
    }
}


Let me know what you think about this. You can also leave me a message here.

Read more about referencing global variable:
http://www.php.net/manual/en/language.references.whatdo.php
http://www.obdev.at/developers/articles/00002.html

In authentication part I removed ALL spaghetti-style-redirection when transfering a user through a login/logout. In short, no more hidden values inside <form> to track user, session is used instead. Clean code and it works! Hopefully things will work fine... even though I'm extremely carefully when touching the core part, because almost everything are built on top of it.

You should also have notice the "N visitor(s) online now" thing on the left navigation menu. Although most of the time there is only 1 visitor, me myself lol Talking about the navigation menu, I'm adding options to show/hide the menu with javascript. See that red button with a 'X' ? That's what I'm talking about.

Others updates are misc and minor updates in template/admin control panel.

Weather updates - 4:34 pm
Computing , Cool Stuff , Internet , Site Issue , Site Updates , Website Intro  -  poster 

Weather info
I've added weather updates on mysite, you can find them in top most of my page, on the bottom most of left navigation menu and also here for detailed info.

The latest weather datas are provided by Weather.com .

If you interested in building your own weather reports (web), check out here http://www.w3.weather.com/services/xmloap.html. It's a free registration and Weather.com only requires your email address. After then you can use the partner ID and license key provided and get access to the latest weather data, via xml feed ;)

My site's "mirror" - 7:18 pm
Site Issue , Web Hosting  -  poster 

Ever wonder how my site will look like without the advertisements ?? checkout http://ahkuan.01webspace.com. The coolest thing about this hosting company, for people who signs up for free plan, they allow you to place the advertisement ANYWHERE you like. On top of that, they've got a few banner size for you to choose :O It's almost perfect site to me, except they don't provide raw access log for free planners..

ps: obviously, the "mirror" thing is a joke... ;)

Last edited: Mon 2006-09-18 @ 22:13 , by DaRen 1 time(s)

Downloading mp3 lately? - 3:07 am
Crazy Stuff , Internet , Site Issue , Site Updates  -  poster 

I can "guess" why illegal mp3 sharing is causing so much havoc.. If you still don't have a clear picture why some people/companies/authorities having urge against illegal mp3 sharing/downloading, look below for yourself...

Look carefully <_<
Enlarge
Look carefully <_<


PS: Hmm.. don't ask me where I get this picture... I just wanna test the new bbcode tag [ center ] and the new attribute for [ img ] ... hehe


*Update 2006.09.18*
No longer using the [center] tag to center image. Right now the latest [img] is able to handle this kind of position.

Originally it looks like this [ Hide ]
[ Highlight ] [ Text ]
[center]
[url=/weblogdata/2005/2005-12-09 mp3 download.png][img=/weblogdata/2005/2005-12-09 mp3 download.png|350|200]Click to enlarge[/img][/url]

Look carefully <_<
[/center]
Page 3 of 5   ( 46 entries , showing 21 - 30 )
<<  Previous  1 2 3 4 5  Next  >>
$ view_blog.php 2009.09.17 18:16:41 $
Lost? | XML/HTML sitemap | Contact
38.107.179.241 , 21 queries , 0.1628s
Gzip enabled , CSS compressed , JS compressed
Copyright © 2005-2011 Darren's Outpost