Tech Sharing Blog

Computer knowledge, news, product, SEO, earn money online sharing place

Advertisement

Posts Tagged ‘ Application ’

Local mobile application developer, JustMobile Sdn Bhd has announced a new smartphone app called MySOS, a must have app for Malaysians.

mysos app Must have apps for all Malaysian   My SOS

With the MY S.O.S app, smartphone users can now access a variety and detailed list of emergency contact numbers, such as funeral services, the various government departments, hotels, taxi services, hospitals, cinemas, banks, highway breakdowns, the general line of nearby police stations, general complaint telephone numbers that covers electricity and water cut, potholes on roads, water pipe leakages, and so forth.

 mysos app2 Must have apps for all Malaysian   My SOS

MySOS works on AndroidiPhone/iPad(iOS) & BlackBerry for free.

Popularity: 1% [?]

zipeg logo Zipeg   Viewing photo in archive instantlyZipeg is a free alternative to WinZip, WinRar, or StuffIt where Ziped support most of the common archive file format such as Zip, RAR, 7z, ARJ, LHA and many more. Zipeg is build on top of the powerfully 7zip engine and it have much more features then 7zip.


The killing features provide by Zipeg is the pictures and photo preview instantly or open in external application without extract it, just mouse over the selected file, a thumbnails will be display in the tool tips. By using this features, you may view the and search the file before you actually export it.


In addition, Zipeg also support the filenames in national alphabets in UTF-8, Unicode and codepage encodings. There is no any limitation in term of the archive file size and Zipeg is fully supported by Mac OSX and also Window XP/Vista.


File that supported by Zipeg:

  • .zip (Zip Archive)
  • .7z (7-zip Archive)
  • .rar (RAR: Roshal Archive)
  • .bz2 (BZip2 Archive)
  • .gz (GNU Zip Archive)
  • .tgz (Same as tar.gz)
  • .arj (ARJ Archiver Robert Jung)
  • .lzh (LHA/LZH Archive)
  • .z (Unix Compress)
  • .cab (Windows Cabinet)
  • .chm (Compressed HTML)
  • .cpio (Posix CPIO/PAX Archive)
  • .ear (Enterprise Archive)
  • .war (Web Archive)
  • .cbr (Comic Book Archive (RAR))
  • .cbz (Comic Book Archive (zip))

Click here to download Zipeg
Click here to go to Zipeg home page


win.zipeg.right.550x610 Zipeg   Viewing photo in archive instantly

Mouse over the picture or images file to view the thumbnail

vista.zipeg.preview.640x480 Zipeg   Viewing photo in archive instantly

You may also view the picture and images file in any of the photo viewing application

vista.zipeg.settings.files.640x480 Zipeg   Viewing photo in archive instantly

Supported file list by Zipeg


Popularity: 2% [?]

Video2MP3

By on November 7, 2009

Video2MP3 is a free YouTube, MyVideo, Clipfish, Sevenload, Dailymotion, MySpace to MP3 converter. It allow you to convert and download a video to MP3 file online. The best of the Video2MP3.net is totally free, fast, and no signup is require. All you need to do is enter the video URL into the text box on the Video2MP3 home page, than it will transfer the video to the MP3 for you to download.

Video2MP3 Logo Video2MP3

So you are able to listen your favorite tracks from the selected video hosting portal on any MP3 player.


Video2MP3 provide standard (64k MP3) and high quality (128k MP3) MP3, the higher quality the MP3 is, the slower the downloading speed because it need time to convert it and also the file fize will be bigger.


Click here to go to Video2MP3 home page

Video2MP3 Home Video2MP3

Video2Mp3 home page


Converted youtube video Video2MP3

Convert youtube video into MP3 and download it


Popularity: 10% [?]

Just working out on the phpBB3.0 on the user registration integration with the main web site. Because of I plan to write the main web site using the coldfusion + MS SQL, so the only way as I may thinking of to do the integration is write a web service a like page for my coldfusion application to call.


After read through some forum, blog, web site and finally find out the way for the integration and here to share my simple PHPBB 3.0 user registration integration code.


  < ?PHP
  define('IN_PHPBB', true);
  /* set scope for variables required later */
  global $phpbb_root_path;
  global $phpEx;
  global $db;
  global $config;
  global $user;
  global $auth;
  global $cache;
  global $template;

  # your php extension
  $phpEx = substr(strrchr(__FILE__, '.'), 1);
  $phpbb_root_path = "../";

/* includes all the libraries etc. required */
  require($phpbb_root_path ."common.php");
  require($phpbb_root_path ."includes/functions_user.php");
  $use-->session_begin();
  $auth->acl($user->data);

// username of the user being added
$username = 'david';

// the user’s password, which is hashed before inserting into the data base
$password = 'password';

// an email address for the user
$email_address = 'admin@david-cheong.com';

// since group IDs may change, you may want to use a query to make sure you are grabbing the
// right default group...
$group_name = ($coppa) ? 'REGISTERED_COPPA' : 'REGISTERED';
$sql = 'SELECT group_id
        FROM ' . GROUPS_TABLE . "
        WHERE group_name = '" . $db->sql_escape($group_name) . "'
            AND group_type = " . GROUP_SPECIAL;

$result = $db->sql_query($sql);

$row = $db->sql_fetchrow($result);

$group_id = $row['group_id'];

// timezone of the user... Based on GMT in the format of '-6', '-4', 3, 9 etc...
$timezone = '8';

$language = 'zh_cmn_hans';

// here if the user is inactive and needs to activate thier account through an activation link
// sent in an email we need to set the activation key for the user... (the goal is to get it about
// 10 chars of randomization) you can use any randomization method you want, for this example,
// I’ll use the following...
$user_actkey = md5(rand(0, 100) . time());
$user_actkey = substr($user_actkey, 0, rand(8, 12));

// IP address of the user stored in the Data base.
$user_ip = $user->ip;

// registration time of the user, timestamp format.
$registration_time = time();

// time since the user is inactive. timestamp.
$user_inactive_time = time();

$user_row = array(
    'username'              => $username,
    'user_password'         => phpbb_hash($password),
    'user_email'            => $email_address,
    'group_id'              => (int) $group_id,
    'user_timezone'         => (float) $timezone,
    'user_dst'              => $is_dst,
    'user_lang'             => $language,
    'user_type'             => '0',
    'user_actkey'           => $user_actkey,
    'user_ip'               => $user_ip,
    'user_regdate'          => $registration_time,
	'user_dateformat'   	=> 'D M d, Y g:i a'
);

$user_id = user_add($user_row);

echo 'userid' . $user_id;

?>

Click here for PHP Cross Reference of Architecture PHPBB3

Popularity: 13% [?]

Recover your mail client password

By on October 18, 2009

Mail Passview is a small password recovery tool that help you to recover your passwords and other account detail for the email clients such as

  • Outlook Express
  • Microsoft Outlook 2000 (POP3 and SMTP Accounts only)
  • Microsoft Outlook 2002/2003/2007 (POP3, IMAP, HTTP and SMTP Accounts)
  • Windows Mail
  • Windows Live Mail
  • IncrediMail
  • Eudora
  • Netscape 6.x/7.x (If the password is not encrypted with master password)
  • Mozilla Thunderbird (If the password is not encrypted with master password)
  • Group Mail Free
  • Yahoo! Mail – If the password is saved in Yahoo! Messenger application.
  • Hotmail/MSN mail – If the password is saved in MSN/Windows/Live Messenger application.
  • Gmail – If the password is saved by Gmail Notifier application, Google Desktop, or by Google Talk.


For each account, Mail Password will display the

  • Acccount Name
  • Application
  • Email
  • Server
  • Server Type (POP3/IMAP/SMTP)
  • User name
  • Password


Again, please bear in mind that if this application is misuse by some body else, this can be the tools to hack your email.


Mail PassView (205)

mailpv Recover your mail client password

Popularity: 6% [?]

IM Password recovery

By on October 18, 2009

I believe a lot of   who do not share their PC will just store the MSN password on the computer and turn on the auto log in whenever the computer start up.

But after long time, you may not remember your long saved password, now you can recover back your MSN password by the MessenPass application to recover the password.

MessenPass is a password recovery tools that reveals the password of the instant messenger application such as

  • MSN Messenger
  • Window Messenger (In Window XP)
  • Window Live Messenger (In Window XP and Vista)
  • Yahoo Messenger (Versions 5.x and 6.x)
  • Google Talk
  • ICQ Lite 4.x/5.x/2003
  • AOL Instant Messenger v4.6 or below, AIM 6.x, and AIM Pro.
  • Trillian
  • Trillian Astra
  • Miranda
  • GAIM/Pidgin
  • MySpace IM
  • PaltalkScene
  • Digsby

Please bear in mind that this is a helpful application that can help you to recover your saved password but yet it also may explore your password to the public if some one misuse it.

To use this application, there is no installation require, just download it and run it from the zip file. It only work if you currently log into your IM application or you chose to remember your password in one of the above IM application

MessenPass (186)

mspass IM Password recovery

After run the MessenPass, it will immediately disply the Software, Protocol, Username, and password


Popularity: 1% [?]

Proxy server is a server that sites between a client application, such as a web browser and a real server. It intercepts all requests to the real server to see if it can fulfill the requirests it self. If not, it forwards request to the real server.

There main purposes for using the proxy server are:

  • to keep machines behind it anonymous (mainly for security)
  • to speed up access to a resource (via caching). It is commonly used to cache web page from a web server
  • to censor network services or content
  • to forge transmitted content before delivery, eg: to insert advertisements


There are diff types of proxy server in generals:

  • Transparent Proxy: it identifies itself as a proxy server and also make the original IP address available through the http headers. The generally use to cache websites but do not effectively provide any anonymity to those who use them.
  • Anonymous Proxy: it identifies it self as a proxy server, but does not make the original IP address available. of proxy server is detectable, but provides reasonable anonymity for most users.
  • Distorting Proxy: This type of proxy server identifies itself as a proxy server, but make an incorrect original IP address available through the http headers.
  • High Anonymity Proxy: This type of proxy server does not identify itself as a proxy server and does not make available the original IP address.


You may easily get the free proxy server list from the Internet by Google it with the key word of “Free Proxy server list”. Or you may just access the following web site for the free Proxy server list:


Please bear in mind that when you use the free public proxy server, your transmitted data through the Proxy server may capture or monitor by some body including your login detail and password.

Step to set up the Proxy on difference browser:

Mozilla Firefox:

Tools -> Options -> Advanced -> Network -> Settings -> Manual proxy configuration -> enter the Proxy server IP and Port number

setting proxy for firefox Proxy Server and browser configuration


Google Chrome:
Options -> Under the Hood -> Change proxy settings -> Connections -> LAN Settings -> Proxy Server -> check the “use a proxy….” -> enter the proxy server IP and port number

* Google Chrome is share the same Proxy server setting with Internet Explorer

google chrome set proxy step 1 Proxy Server and browser configuration

google chrome set proxy step 2 Proxy Server and browser configuration

Internet Explorer:
Tools -> Internet Option -> Connections -> LAN Settings -> Proxy Server -> check the “use a proxy….” -> enter the proxy server IP and port number

google chrome set proxy step 2 Proxy Server and browser configuration

Opera:
Tools -> Preferences -> Network -> Proxy Server… -> Select what ever Protocol to use the Proxy Server -> enter the proxy server IP and port number

opera set proxy Proxy Server and browser configuration

Popularity: 2% [?]

CopyTaste make online sharing easy

By on October 18, 2009

copytaste logo CopyTaste make online sharing easyCopy Tasteis a Google Notebook a like web application that allow you to copy and paste your text and share it over the Internet. To use CopyTaste, there is no log in require, but if you would like to store and managed the post in the future, then may to log in to the copytaste using any OpenID provider as they included.


CopyTaste provide the normal text editor and also Rich Text editor which it also allow you to insert image or video into your note. After you enter your content, you may set the permission whether allow the public to read it or you want to make it private. To make it private mean that you can set the password or let’s the system to choose the random key to view your content. Besides that, you may also set the permission whether this text is allow comments or not.


After all done, just click on Submit button and a copytaste auto generated URL will be display on top of the text area which you may share your text with other by providing this special URL.


CopyTaste also provide the plugin for IE so that you can just right click on the text/content and post it directly from IE to CopyTaste easily.


To view my sample CopyPaste Content: Sample 1, Sample 2

Click here to go to CopyTaste home page

post some text on copytaste CopyTaste make online sharing easy

Just type or copy your long long text and paste it over the main text area

copytaste text posted CopyTaste make online sharing easy

A random link generated after the content submited, share your content with your friend by provide them this URL

login to copytaste with openid CopyTaste make online sharing easy

Login to Copytaste using the Open ID to managed your post at anytime

copytaste edit profile page CopyTaste make online sharing easy

After login, you may easily manage all the post done by you


Popularity: 1% [?]

Convert web site to PDF

By on October 5, 2009

HeartRails Capture is a free web service tools for you to save and capture the web site as PDF. Just go to the HeartRails Capture web site and enter the URL address to capture. HeartRails Capture will auto capture the snapshot of the web site then generate the PDF for you.


PDF file created URL will be displayed for the tags to embed or blog.HeartRails Capture is a free web service tools for you to save and capture the web site as PDF. Just go to the HeartRails Capture web site and enter the URL address to capture. HeartRails Capture will auto capture the snapshot of the web site then generate the PDF for you.


PDF file created URL will be displayed for the tags to embed or blog.


Click here for sample TechSharing PDF
Click here to go to HeartRails Captures home page


heartrails web site capture1 Convert web site to PDF

Enter the web site URL to generate the snapshot


heartrails web site capture2 Convert web site to PDF

PDF generated from the URL anter


Popularity: 1% [?]

Fuser.com puts you at the center of all the conversatinos you care about by letting you easily manage your e-mail, facebook, myspace and twitter communications in one secure place, so you’ll never miss another message.


I believe most of the internet user may have more then one email account nowadays, and we used to login to each email account through the web mail to check your inbox. But it maybe troublesome if you need to login more then one email account just to check your email. Here come the Fuser.com that allow you to check all the conversations and email at one place.


After you register and verify your email account, just login to the Fuser.com and add your webmail account into Fuser. You may add more then one email account into Fuser.com and you may also add the social network account into Fuser.


To add any new email or social networking account just click on the “Add/Edit account” link at the left bar, to edit your account configuration such as adding a new Avartar, changing the password, changing the registered email, just click on the “setting” link at the top right bar.

[More]

Popularity: 1% [?]

SEO Powered by Platinum SEO from Techblissonline