Showing posts with label using. Show all posts
Showing posts with label using. Show all posts

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


image

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 app’s 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

  1. Mobile Apps using HTML interface with JQUERYMOBILE (this page)
  2. Complete code sample of Mobile Web Apps with FRONT-END and BACK-END
  3. Using AJAX to populate data from mobile web interface
  4. Generating APK using BUILD.PHONEGAP.com
  5. Generating Android Project using CORDOVA
  6. Publishing to Google Play Store
  7. Mobile Web Apps development TRAINING
  8. The sample app published in Google Play Store

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.

image

 

STEP 1: Preparing the project folder with the jquery & jquerymobile library.

We’d like to recommend the following folder and sub-folders for your HTML app project. Prepare them first.

image

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.

image

imageThe css files copied to your css folder.

Then copy the javascript files (*.js) to your js folder.

image

Now open the jquery file (*.js) your downloaded early in the tutorial.

image

Then you got your js folder ready for jquerymobile implementation.

image

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.

image

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.


image





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, there’s 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



Man creates 3D map of abandoned Scottish mansion using drone Having a camera on your drone doesnt just allow you to record ridiculous fails and daring rescue attempts, you know. As Mark from the Abandoned Scotland YouTube channel has shown in his latest video, you can also use them to do some pretty badass 3D mapping. Using a combination of Agisoft Photoscan, Drone Deploy and Phantom 3 Professional, Mark demonstrates how hes able to create a 3D model of Cambusnethan Priory — an abandoned mansion in Scotland, UK See http://ift.tt/29mPjjY

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.

Sparksspace

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.

6-22-2010 07-32-00

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


Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc.
It can be especially useful for cases where:

  • 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
Despite its small size, Rufus provides everything you need!
Oh, and Rufus is fast. For instance its about twice as fast as UNetbootin, Universal USB Installer orWindows 7 USB download tool, on the creation of a Windows 7 USB installation drive from an ISO. It is also marginally faster on the creation of Linux bootable USB from ISOs.
A non exhaustive list of Rufus supported ISOs is also provided at the bottom of this page.

How To Make USB Bootable For Windows Xp or Win7

  • 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
Done!

Enjoy





Download Link: Rufus

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... 

Before After

Youll Find the details here,  http://uofgts.com/PS-P2Site/selectionbycolor.html

 

 


Available link for download