Tag Archives: Thomie Jose

GAME : Typing Mania

Download: TJSAsTypingMania

TJSAsTypingMania

TJSAsTypingMania

This is another game that during my OJT I have experimented on the .Net Framework during our free time.

The goal of the game is to type the letters that will be shown to you in the shortest possible time.

Beer: Did you know?

Just visit MALL OF ASIA this day for a celebration of my Best-friend’s Birthday and read this Trivia. I saw this on the table while were eating the blowout.

Be informed! Once again Happy Birthday Shiela Tio. I had a nice days with you my dear classmates. Take Care always.

An Intuitive Online Bible FREE

A Bible online that offers different version, Audio format, and shared community notes.

http://www.youversion.com/

Here are some information about the site’s about us page:

Relevancy

In generations past, the access people had to the Bible was very limited. Today, this is no longer the case. However, many people who have access to the Bible think its message does not apply to their lives. At the same time, there are others who believe there is a connection between the Bible and their every day experiences.

Information Revolution

Over the last decade, the Internet has brought about a revolution which empowers people like never before. With the ability to share, contribute, create, broadcast and communicate, it’s easy to express who we are and what we believe with the rest of the world.

YouVersion

Since its start in 1996, LifeChurch.tv’s purpose has been to lead people to become fully devoted followers of Christ. In doing so, we have looked for new ways to help people connect the Bible to their daily lives. Our methods have changed over the years as we’ve incorporated various technologies and strategies. But at the core, our focus remains on relevancy as we consistently strive to demonstrate and teach people how God’s Word relates to everyone, no matter where they are in life.

YouVersion represents a new frontier in LifeChurch.tv’s efforts. We aren’t just building a tool to impact the world using innovative technology, more importantly, we are engaging people into relationships with God as they discover the relevance the Bible has for their lives.

 

Greenshot : Opensource Screenshot

Are you searching for an FREE and OPEN SOURCE screen image capture software? Then the wait is here. Introducing Greenshot!

What is Greenshot?

Greenshot is a light-weight screenshot software tool for Windows with the following key features:

Create complete or partial screenshots quickly.Easily annotate, highlight or obfuscate parts of the screenshot.Send the screenshot to a file, the clipboard, a printer or as e-mail attachment.

Being easy to understand and configurable, Greenshot is an efficient tool for project managers, software developers, technical writers, testers and anyone else creating screenshots.

DOWNLOAD

 

Just Visited the new website of PAG-ASA!

Visit at http://www.weather.gov.ph/

My guess is right that it uses a PHP CMS. It utilizes Joomla as its Framework.

Proof: http://www.weather.gov.ph/administrator/

TWAMP a Windows, Apache, MySQL, PHP Server

Most user developing PHP web apps on a Windows PC uses Either WAMP or XAMPP. Both are free and might be heavy.

Today I will share to you what I use in developing websites portable or on the go. Yes you can put it to your Flash Drive and develop on the go.

TWAMP Specification

  • Drupal 6.20 + Drupal 7.0 (also a dual-core XDD)
  • Built-in latest Traditional Chinese / Simplified Chinese / Japanese language file
  • Drupal 7 super easy to install (the default DB is installed automatically without manually enter the database name account password)
  • Fixed installation icon shows errors
  • Add a separate Drupal 6, Drupal 7 Adaptive Install icon
  • Fixed installation of Drupal 6 language, do not re-import the language file
  • Built-in PHP XDebug support UEStudio or PDT eclipse debugging environment (to be manually turned on)
  • Apache 2.2.17
  • MySQL 5.1.49-community
  • PHP 5.2.17
  • PhpMyAdmin 3.3.9.2
  • Perl 5.12.3
  • Add eAccelerator v1_0_svn427 (New version of eAccelerator accelerator, enabled by default)
  • Update Zend Optimizer 3.3.0 (default enabled)

DOWNLOAD: TWAMPd_v7.03a

Use 7-zip to extract.

WordPress Get the current post slug

Hi there, I have search the net and this person found a way to get the slug the easier way.

 

The common approach:

$post_obj = $wp_query->get_queried_object();
$post_ID = $post_obj->ID;
$post_title = $post_obj->post_title;
$post_slug = $post_obj->post_name;

His approach:

$slug = basename(get_permalink());
That's it. Just include it inside the_loop.
Source: http://www.joshstauffer.com/get-post-slug-in-wordpress/

 

Unlock that Undeletable File!

If you’ve ever been unable to delete a file in Windows, and can’t figure out what program’s using it, Unlocker is the solution. Have you ever seen these Windows error messages?

  • Cannot delete folder: It is being used by another person or program
  • Cannot delete file: Access is denied
  • There has been a sharing violation.
  • The source or destination file may be in use.
  • The file is in use by another program or user.
  • Make sure the disk is not full or write-protected and that the file is not currently in use.

Unlocker can help! Simply right-click the folder or file and select Unlocker. If the folder or file is locked, a window listing of lockers will appear. Simply click Unlock All and you are done!

Website

Living, he loved me. Dying, he saved me. Amen!

Hi guys, I would like to share this song. I loved its meaning and I pray you’ll love it too. Amen to our God!

httpv://www.youtube.com/watch?v=xODpgyqGCYM&feature=related

Casting Crowns – Glorious Day (Living HE Loved Me) Lyrics
c/o http://www.elyricsworld.com/glorious_day_(living_he_loved_me)_lyrics_casting_crowns.html 

One day when Heaven was filled with His praises
One day when sin was as black as could be
Jesus came forth to be born of a virgin
Dwelt among men, my example is He
Word became flesh and the light shined among us
His glory revealed

Living, He loved me
Dying, He saved me
Buried, He carried my sins far away
Rising, He justified freely forever
One day He’s coming
Oh glorious day, oh glorious day

One day they led Him up Calvary’s mountain
One day they nailed Him to die on a tree
Suffering anguish, despised and rejected
Bearing our sins, my Redeemer is He
Hands that healed nations, stretched out on a tree
And took the nails for me

One day the grave could conceal Him no longer
One day the stone rolled away from the door
Then He arose, over death He had conquered
Now He’s ascended, my Lord evermore
Death could not hold Him, the grave could not keep Him
From rising again

One day the trumpet will sound for His coming
One day the skies with His glories will shine
Wonderful day, my Beloved One, bringing
My Savior, Jesus, is mine

WordPress Themes 1

Hi there!

I have some HTML/CSS Website that I have converted to a WordPress template. Here are the templates try it!

Try it, its Free. All copyrights of the template remains of the owner. I just convert them to a WordPress Template.

PHP : How to remove a folder and its content?

If you are using PHP then you can use this function.

/*

@params

$dir – the full directory path of the FOLDER you want to delete

$DeleteMe – if you want to delete the said FOLDER or not.

*/

function rmdir_r ( $dir, $DeleteMe = TRUE ){

if ( ! $dh = @opendir ( $dir ) ) return;
while ( false !== ( $obj = readdir ( $dh ) ) )
{
if ( $obj == ‘.’ || $obj == ‘..’) continue;
if ( ! @unlink ( $dir . ‘/’ . $obj ) ) $this->rmdir_r ( $dir . ‘/’ . $obj, true );
}

closedir ( $dh );
if ( $DeleteMe )
{
@rmdir ( $dir );
}

}

Top 10: Creative Pencil Vs Camera Photos

He’s a visual creator out of Belgium and his name is Ben Heine. Combining his own drawings and regular photos, this skilled artist creates art in a wonderful mix of photography and illustration. And while there are bound to be more artists like him out there we were so impressed by Heine’s work we’ve decided to dedicate a whole list in his name.

Sample:


 

Visit this url to view all the photos : http://totallytop10.com/entertainment/arts-culture/top-10-creative-pencil-vs-camera-photos


PHP: Just got into mysql_insert_id() is very useful.

Long ago I have been programming with PHP but I am having problem in getting the inserted key for the new record that I have just inserted to my database.

 

My turn around was to query the same data that I have inserted. Recently, it just to  my head if there is a function on the net that perform the said task. And poof there it is. mysql_insert_id();

Usage

1. Perform an insert query. ea. INSERT INTO name(`name`) VALUES(‘NAME’)

2. Use the function to get the primary-auto-increment key. $id = mysql_insert_id();

Thats it you have get the key of your inserted record.

 

Hope it help you.

WEBSITE : Transportation Method Using Modified Stepping Stone

WEBSITE : http://transpomodi.tk

During my school days, I, together with my co leagues, had develop one website for Operational Research.  The said website was develop as part of their finals for the said subject.

Its main goal is to easily compute optimized number of items to be delivered to a particular location. Or what ever the purpose of using the transportation method using modified stepping stone in the area of Operational Research.

Again you are free to use the website for any purpose. Hope it help you.

The said website were developed by:

  • Thomie Jose San Agustin
  • Calbin Montalban
  • Kevin Stephen Muñoz

 

GAME : MouseAttack v1.0

Download: TJSAsMouseAttack

During my OJT I have experimented on the .Net Framework to develop some games during our free time.

One the games I have develop is the MouseAttack. Its a game were you need to avoid some falling objects in order to get more points. The game was developed for a little time, but I hope you like it.

Want to have an Extra Yahoo Email Address but the save login details?

If that’s what you want. Yahoo is give you one (1) extra email that you can change every year. Yahoo extra Email address put an extra email address on top of your current email.

For an example, your email is myemail@yahoo.com and you avail an extra email address maynameisone@yahoo.com. When you login using maynameisone@yahoo.com, you will be having the same inbox you have on your myemail@yahoo.com.

It means you have two email account having one inbox.

What is the benefit?

  1. Have your the same account but different email.
  2. Set the extra email as your main email.(For those person who had non-nonprofessional email address yet want to maintain the said email)
  3. Changing the email once a year.
  4. Can use also in logging in to Yahoo services.

That some of the benefits. So if you haven’t get your extra email address, then create yours now by logging in to your yahoo account and going to this URL http://edit.yahoo.com/config/list_alias

Had a hard time with Joomla 1.5’s tutorial

I had a hard time yesterday on working the given tutorial of Joomla to create a component. I did follow each step and tried copying and pasting the code. Still the code is not found after installation.

Fortunately, I got into a Plugin Tutorial for CB that did the work. I hope that I can search for a better tutorial other than the available at docs.joomla.org and bend Joomla.