Saturday, March 18, 2017
Map Android Phone In Windows To Access Files Over WiFi Using SwiFTP
Map Android Phone In Windows To Access Files Over WiFi Using SwiFTP
If you are a gadget geek at heart and love to do anything that encompasses remotely accessing your device from anywhere, give SwiFTP FTP Server a shot. It is a free open source Android app that lets you remotely connect to your phone over WiFi / 3G to upload and download content. This Android application converts your phone into an FTP server which is accessible by a unique FTP IP generated by the app.We tested this app on HTC Desire And HTC Dream G1 and it works perfectly on both. It works great on my Droid X too.
Full details.
Available link for download
Thursday, March 9, 2017
Mobile Apps using HTML interface with jQueryMobile
Mobile Apps using HTML interface with jQueryMobile
| This is the main tutorial for developing a mobile web app using the HTML interface with jQueryMobile. The series contains tutorial on how to use HTML and jQueryMobile to construct the apps interface, PHP+MySQL to run the back-end, AJAX, using phoneGap/Cordova to generate Android APK, and lastly to upload to Google Play Store. These are the link of completed tutorials related to Mobile Web Apps Development
|
jQueryMobile is a JavaScript + CSS framework born from jQuery. The best place to learn jQueryMobile is by accessing the official website at http://demos.jquerymobile.com/
As the name framework, there suppose to have library of codes ready to use. In the jQueryMobile case, you need to download both the jQuery framework, and the jQueryMobile framework in order for this tutorial to proceed as we intent.
- Download the jquery framework here.
- Download the jquerymobile framework here.
STEP 1: Preparing the project folder with the jquery & jquerymobile library.
Wed like to recommend the following folder and sub-folders for your HTML app project. Prepare them first.
Open the jquerymobile zip files you just downloaded previously. Copy all the Cascading Style Sheet (*.css)files and the images to the css folder you created. You can do this by selecting the images folder and the css, clicking and dragging them to your css folder. *The images folder in the jquerymobile zip file contains the icons for your css interface.
The css files copied to your css folder.
Then copy the javascript files (*.js) to your js folder.
Now open the jquery file (*.js) your downloaded early in the tutorial.
Then you got your js folder ready for jquerymobile implementation.
STEP 2: Developing the HTML interface
The mobile interface is mainly in the index.html. Use any of your HTML editor to ammend the index.html content. This is some example of the content. The first part is the jquery and jquerymobile API inclusion in the header. The template below also provide heading, content and footer divisions.
The sample code:
<!DOCTYPE html>
<html>
<head><title>Page title is here</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- include the jquerymobile and jquery API files here -->
<link href="css/jquery.mobile-1.4.5.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.11.2.min.js"></script><script src="js/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- main page -->
<div data-role="page" id="home">
<!-- header -->
<div data-role="header" data-position="fixed">
<h1>Header content is here</h1>
</div>
<!-- content -->
<div role="main" class="ui-content">
<p>Main content is here</p>
</div><!-- end content -->
<!-- footer -->
<div data-role="footer" data-position="fixed">
<h2>Footer text is here</h2>
</div><!-- end footer -->
</div><!-- end of home -->
</body>
</html>
Note the viewport in one of the meta. By setting the viewport attributes to content="width=device-width, initial-scale=1", the width will be set to the pixel width of the device screen.
<meta name="viewport" content="width=device-width, initial-scale=1">
Output sample: preview in the browser.
STEP 3: Multi-page template structure
A single HTML document can contain multiple "pages" that are loaded together by stacking multiple divs with a data-role of "page". Each "page" block needs a unique id that will be used to link internally between "pages" (href="#foo"). When a link is clicked, the framework will look for an internal "page" with the id and transition it into view.
Here is an example of a three"page" site built with three jQuery Mobile divs navigated by linking to an id placed on each page wrapper. Note that the ids on the page wrappers are only needed to support the internal page linking, and are optional if each page is a separate HTML document.
- page 1 is the main page with id=home
- page 2 is the about page with id=about
- page 3 is the directory page with id=directory
For this exercise to work, theres an image named logo.jpg need to be prepared in the folder images. Your company logo or any low resolution image will do.
The complete source-code of the index.html file.
<!DOCTYPE html>
<html>
<head><title>Kerul.net Company Directory</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/jquery.mobile-1.4.5.min.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.11.2.min.js"></script><script src="js/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- ************************** main page -->
<div data-role="page" id="home">
<!-- header -->
<div data-role="header" data-position="fixed">
<h1>kerul.net</h1>
</div>
<!-- content -->
<div role="main" class="ui-content">
<p>This app provide info about the company.</p>
<!-- provide a logo.jpg image in the folder images -->
<img src="images/logo.jpg" width="200" height="200">
</br>
</div><!-- end content -->
<!-- footer -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#home" >Home</a></li>
<li><a href="#directory" >Dir</a></li>
<li><a href="#about" >About</a></li>
</ul>
</div><!-- end navbar -->
</div><!-- end footer -->
</div><!-- end of home >
<!-- ************************** about apps -->
<div data-role="page" id="about">
<!-- header -->
<div data-role="header" data-position="fixed">
<h1>kerul.net</h1>
</div>
<!-- content -->
<div role="main" class="ui-content">
<p>Developer - kerul.net</p>
<p>
This is the a sample app developed using HTML for Kerul.net. The blog has been discussing programming since 2005. The company started publishing Android apps in the year 2010, and its apps among others are Malay Proverb Dictionary (Peribahasa) and m-Mathurat. Currently, it is working on the Windows Phone version of the apps. There are also Hijra of the Prophet Muhammad app in the Windows Phone store.
PHP, C#, and Java are also the programming languages that the blog is familiar with.
</p>
<a href="http://kerul.net" class="ui-btn ui-icon-action ui-btn-icon-right ui-btn-corner-all" target="_blank"> go to kerul.net</a>
</br>
</div><!-- end content -->
<!-- footer -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#home" >Home</a></li>
<li><a href="#directory" >Dir</a></li>
<li><a href="#about" >About</a></li>
</ul>
</div><!-- end navbar -->
</div><!-- end footer -->
</div><!-- end of home >
<!-- ************************** direktori page -->
<div data-role="page" id="directory">
<!-- header -->
<div data-role="header" data-position="fixed"Available link for download
Monday, January 30, 2017
Man creates 3D map of abandoned Scottish mansion using drone
Man creates 3D map of abandoned Scottish mansion using drone
Available link for download
Thursday, January 26, 2017
Manage Your Recycle Bin Using RecycleBinEx
Manage Your Recycle Bin Using RecycleBinEx
Many occasions you have deleted files from your system and suddenly realised that you have deleted very important one .It look hard for you to find out those accidentally deleted files from Recycle Bin due to unarranged icons for recovery especially when we realize it after few weeks.RecycleBinEx is a powerful and easy to use recycle bin manager that offers additional features over the standard Windows Recycle Bin.
You can filter files by keyword or extension, and quickly group items based on the date they were deleted.You can sort the items in Recycle Bin with RecycleBinEx , group them according to the deleted time, the logical disk, etc.With this tool you can select and remove the deleted items which were deleted one day ago, two days ago, 7 days ago, 3 months ago... like that by just one click.It integrates with the Windows Recycle Bins context menu and you can even set it to auto-delete files that are older than a certain number of days.
If youre running multiple versions of Windows on your computer like Windows XP and Windows 7 on one hard disk. When you are login Windows XP, with the system default recycle bin, you cannot clean the files you have deleted in Windows 7 system and vice versa. But with RecycleBinEx you can manage all your Windows recycle bins under different Windows Operating Systems together.
Features
- Group deleted items by deleted time, logical disk etc.
- Manage all Windows Recycle Bins together.
- Merge to context menu of system Recycle Bin.
- Jump list support in Windows 7.
- Filter deleted data quickly.
- Command line mode support.
- Task Scheme support
Download: RecycleBinEx
Available link for download
Sunday, November 6, 2016
Make USB Bootable Windows XP Using Rufus
Make USB Bootable Windows XP Using Rufus

- you need to create USB installation media from bootable ISOs (Windows, Linux, UEFI, etc.)
- you need to work on a system that doesnt have an OS installed
- you need to flash a BIOS or other firmware from DOS
- you want to run a low-level utility
A non exhaustive list of Rufus supported ISOs is also provided at the bottom of this page.

- Plug in your USB Flash drive
- to make a Windows bootdisk (Windows XP/7) select NTFS as file system
- then click on the buttons that looks like a DVD drive, that one near to the checkbox that says "Create bootable disk usng:"
- Choose the XP ISO
- Click Start
Enjoy
Available link for download
Tuesday, September 20, 2016
Making A Selection using Color Range
Making A Selection using Color Range
Selection using Color Range and Refining the Edges...
Youll Find the details here, http://uofgts.com/PS-P2Site/selectionbycolor.html
Available link for download