LectureNotes v2.3.11 Apk

Posted by Unknown Senin, 21 Oktober 2013 0 komentar
LectureNotes v2.3.11 Apk download for Android. LectureNotes is an Android app for note-taking by handwriting on the screen, in particular with a stylus. It has been designed while having a user at university (or at school) in mind, for instance a lecturer who is using it for preparing her/his lecture or even for actual teaching (by writing on the device and projecting the screen content for the audience) or a student who is using it for taking handwritten notes during a lecture. However, it has found many users outside university, for instance businesspersons who use it for business notes and sales presentations or artists who use it to create sketches and drawings.



Its major target devices are tablets with Android 3.0 or later (it is developed on a Lenovo ThinkPad Tablet with an N-trig stylus, a Samsung Galaxy Note 10.1 with an S-pen, and an Asus Nexus 7, a Samsung Nexus 10, and an Amazon Kindle Fire HD with an Adonit Jot Pro and a Wacom Bamboo stylus). The basic functionality works on all devices with Android 3.0 or later, but some which are hardware-dependent such as pressure sensitivity might not.

NOTE: There is a free trial version to test if the app is right for you. The free trial version is fully functional with the exception that the number of notebooks is constrained to two, with no more than eight pages per notebook.

User feedback:
We would love to hear from you, please send feedback and feature requests to us by email (devel [a] acadoid.com). If you encounter a problem with the app, please email us and we will do our very best to fix it quickly.

Major features:
* requires only minimal permissions and no internet connection (we do respect your privacy!)
* allows multiple pages to be simultaneously visible on the screen (i.e. continuous page view)
* allows smooth writing, typing, scrolling, and zooming
Additional features:
* free choice of notebook's page width and height (i.e. horizontal and vertical resolution of pages' bitmaps)
* free choice of notebook's cover color, paper color, paper pattern type (plain, ruled, checkered, image, or custom), paper pattern size, and paper pattern color
* four standard pencil colors, three standard pencil widths, seven standard eraser sizes, and eighteen custom pencils (for which color, width, softness, and pressure or velocity sensitivity can be freely chosen)
* text layer for entering text via keyboard
* drawing tools such as line, empty and filled rectangle, empty and filled oval or circle, and text
* cut, copy, and paste within notebook pages and across notebooks
* multiple layers in notebook pages
* image and image set import into notebook (including image import directly from camera)
* single- and multi-page PDF import (requires PDFView to be installed)
* notebook export as compressed PDF
* notebook export to Evernote (requires Evernote app to be installed)
* audio recording and replay (requires LectureRecordings to be installed)
* video recording and replay (requires LectureVideos to be installed)
* sharing and import of notebook pages
* keyword attachment to notebook pages and automatic indexing
* insertion, deletion, and rearrangement of notebook pages
* sharing and import of notebooks
* organization of notebooks in folders
* backup and restore of notebooks board

Possible issue: For certain functionality, the app requires other apps to be installed: Notebook and folder import, notebooks board restore, and image set import require a file manager app to be installed; image import directly from camera requires a camera app to be installed; PDF import requires a file manager app and PDFView to be installed; export to Evernote requires the Evernote app to be installed; audio recording and replay require LectureRecordings to be installed; video recording and replay require LectureVideos to be installed.



REQUIRES ANDROID: 3.0 and up

SIZE: 3.5 MB


SCREENSHOTS:

















Baca Selengkapnya ....

Holo Label Widget Pro v1.0.4 Apk

Posted by Unknown 0 komentar
Holo Label Widget Pro v1.0.4 Apk download for Android. With this Widget-App you can give your apps, widgets, bookmarks, ... on the homescreen a label/headline. That will make your screen clear and you will find everything faster. The best is, this widget has the holo design (Jellybean design).


These are the functions:
- Color theme setup (Pro version only!)
- Extra thin text (Pro version only!)
- Activate underline/roof over (Pro version only!)
- Use divider (Pro version only!)
- Set individual text
- Choose category (Also individual available now!)

This app looks ideal in combination with Android Jellybean Wallpaper and/or Holo widgets.


What's New

Version 1.04:
- Fixed update bug (Update on adding widget)



REQUIRES ANDROID: 3.0 and up

SIZE: 280 KB


SCREENSHOTS:

 













Baca Selengkapnya ....

How to Download Nexus 7 Manual / Guide PDF

Posted by Unknown 0 komentar

advertising Nexus 7 is the first Google tablet made by Asus and Google. Nexus 7 features the latest Android OS Android 4.1 Jelly Bean. It is the best tablet currently available at $ 199. Nexus 7 has new features like Google Now and other improvements. Nexus 7 tips to find if you want to have some fun with Google now, you should know how the new Nexus 7 tablet.

Google Nexus 7 support page is buried on the Google website. It is difficult to find, at least for me. The support site Nexus 7 User is useful if you want to use your voice features include Google Search etc.

Download Nexus 7 Guide
manual Nexus 7 can be downloaded from Nexus7 support page. This page is hard to find to find.

I am a listing of some of the following information that may be of Nexus seven manual useful.

1.Make personal search with Google Now, search tips and tricks, voice action commands

2.Plug for devices that use Android Beam, Bluetooth, Windows or Mac

3. Secure Nexus 7 tablet with encryption, locking face etc.

4.Jelly Beans tips

Learn also how to disable the notifications Nexus 7

View Original Article


Baca Selengkapnya ....

Combine two CSV files into one using the Command Line (batch file)

Posted by Unknown Minggu, 20 Oktober 2013 0 komentar
Introduction
Batch files are still useful! Often we need to perform some routine tasks over and over. There are macros, scripting languages (AutoIt) and other solutions - but what about using batch files? In this article I will explain how recently I needed to combine a couple of CSV files regulary.

IMPORTANT: This article is only a guide, the steps in it are specific to my requirements but I hope the principals maybe of use to you!


Scenario
The BI (Business Intelligence) software we use at work output files as CSV (Comma Separated Values). This is great for opening in Excel and using pivot tables with. However, the BI software outputs only one year of budget figures at once. If you want to compare figures from year to year you must run a report for each year you need. You can then add these files together to make one big Excel worksheet. This procedure is not difficult, you can copy/paste the data from one CSV file to the other. However, wouldn't it be great if you could just run a batch file for this to be done for you, automatically?


Think and Plan
Before I did anything I had a good think about what I wanted to do and how I was going to do it. You need to understand each step in the process and think of a way to automate that step in the batch file.

I opened the CSV file in Notepad and took a look at it. The first three lines were title text telling me what the report is - this can be removed as it's not needed. Line four is the header, the column titles. This is important so I must keep it. This means I will need to find a way to delete the first three lines of text from a text file.

Imagine the second CSV file, this also has the first three lines of text to be deleted. But also line four, the header is not needed in the second CSV file because it will be added to the first CSV. This means I also need to delete not three but four lines from the second CSV file.

The last thing to do will be to add the two files together and to check everything is fine.

I decided to rename the CSV files to a.csv and b.csv. That way the batch file will just refer to those file names and in the future I will not have to keep editing the batch file to change the names again.


Delete lines from a text file
The MORE command outputs the contents of a text file. It has a switch /E that means it outputs everything but the first x number of lines. Using this we can create a new CSV file without the first three lines.

MORE /E +3 a.csv > tempa.csv
MORE /E +4 b.csv > tempb.csv

The above code worked for me. The first line removes the first three lines (rows) from the a.csv file. It creates a new file called tempa.csv

The second MORE command removes the first four lines from the b.csv file. A file called tempb.csv is created.


Combine two files
COPY tempa.csv + tempb.csv tempCombined.csv

The above command will copy the two files tempa.csv and tempb.csv into one new file tempCombined.csv.


Delete a blank line
There is a little problem with the tempCombined.csv file - a blank line appears in the middle between the sets of data. If you used the tempCombined.csv file in Excel you'd have a blank line which would show up when using pivot tables. We need to delete the blank line...

TYPE tempCombined.csv | FINDSTR /v "^$" > Combined.csv

The TYPE command outputs the file and the "|" pipes the output into the FINDSTR command. This looks for the string "^$", it means blank line. Output the result to Combined.csv, done!


The Finished Batch File
@echo off
echo.
echo Combine two CSV report files into one
echo.

echo Remove titles rows...
MORE /E +3 a.csv > tempa.csv
MORE /E +4 b.csv > tempb.csv

echo.
echo Add the CSV files together
COPY tempa.csv + tempb.csv tempCombined.csv

echo.
echo Delete blank rows
TYPE tempCombined.csv | FINDSTR /v "^$" > Combined.csv

echo.
echo Delete any previous temporary working files
del temp*.csv

echo.
echo Finished!

Copy and paste the above into Notepad and save as Combine2CSV.cmd.


Conclusion
I save my reports as a.csv and b.csv, double click the Combine2CSV.cmd file and it makes Combined.csv! Open that in Excel and it's ready to insert pivot tables. This saves me some time and hassle. I hope it will help you too or at least parts of this article may be of help in what you want to do.

Baca Selengkapnya ....

Quickly Notification Shortcuts v1.1.1 Apk

Posted by Unknown 0 komentar
Quickly Notification Shortcuts v1.1.1 Apk download for Android. Quickly is a simple app that creates an ongoing notification in your notification drawer filled with up to 12 shortcuts to an application launcher, direct dial to a contact, direct messaging to a contact, direct call to a contact, a shortcut to a URL, or applications that you can configure. Once the notification is created, expand the notification to see the shortcuts.



The nice thing about Quickly is that it never runs in the background, and the only system resource it uses is about 800kb for it's notification. It's lightweight and efficient and will remain that way.

NOTE:
-----------------------------
If you're using a Android 4.1 you will have to use a pinch-to-expand gesture to show the shortcuts when the notification is collapsed.
"This addon uses pinch motions, not swipe motions. pinch from center to edge of notification area to get the shortcuts to display, and from edge to center to collapse it."

What's New

v1.1.0.0:
+ See in-app changelog
+ Fixed a lot of bugs
v1.0.1:
+ Integrated Settings Fragment into the content frame for the navigation drawer.
+ Various bug fixes
v1.0.0.5:
See: http://goo.gl/Eiz7s


REQUIRES ANDROID: 4.1 and up

SIZE: 550 KB


SCREENSHOTS:

 





Baca Selengkapnya ....

Animated Photo Frame Widget + v4.7.1 Apk

Posted by Unknown 0 komentar
Animated Photo Frame Widget + v4.7.1 Apk download for Android. You are worth having the best of photo widget on Android. Animated Photo Frame Widget + can help you to create your own unique photo widget. It differs from other photo widgets and offers up to 30 picture frames and 7 transition modes during slideshow process. It can enhance the diversity of your desktop and make your album choosing more conveniently by its' photo selector.



※ Pro version features

● Slideshow interval can be chosen.
● One click shuffle all your photos.
● 4 in 1 photo frame widget.
● Future update functions and more than 30 kinds of different design photo frame.
● New rich design sense of the time panel. (Show/Hide)
● 10 kinds of rich design sense fonts.
● Simultaneously select multiple albums playback.
● Gallery Click Function.
● No ads.


《Main Features of Animated Photo Frame Widget + 》

◆ 「Smooth in passing to next slide with wonderful transition effects」 :
7 options available
No Animation, Fade in/out, slide, scale, rotate, page down, page turning
◆ 「Zooms in and out without damaging the image quality」:
Any size can be supported by Animated Photo Frame Widget.
Free adjustment and place of your frame Personalization (2*2 minimum , no restriction on maximum )
◆ 「Quick speed on selecting the whole album or photos」 :
No need to assign specific path/route or to select photos by other tools.
Built-in album selector can list all of your photos in an easy way.
◆ 「Considerate power-saving design」 :
It would automatically stop updating when you close the screen without consuming the electricity of device.
It will automatically launch update function when you open the screen.
After comparison test of all photo widgets on Google Play.
Animated Photo Frame Widget + is the most energy-efficient photo widget.
So don't worry about it.
◆ 「Console panel」 :
Easily stop the auto-play function anytime and skim photos manually by widget.
◆ 「Random play / Shuffle」 :
You can play any album in shuffle or directly play all photos saved in the device.
◆ 「Independent Widget」 :
You can place some widgets on the desktop. Each of them works independently.
◆ 「Image Observer」 :
You can edit/crop、add or delete photos in albums, image observer will auto rescan the photo list.

【Attentions】
After install app, you must start with few steps.
(It doesn’t exist in app list.)
Home -> Widget -> Animated Photo Frame Widget + -> Drag it to home
Or
Long click home -> Widget -> Animated Photo Frame Widget + -> Drag it to home
Notice ! It will check google play license at first start, 
make sure your network connection is on.

What's New

<font color="blue">If widget have any problems after update, please try to re-install again.
It may be the Google play update problems.</font>
《<b><font color="blue">HTC Sense UI 4+ launcher do not support animated transitions. Install other launchers to instead</font></b>》
V 4.7.1 :
1. Change gray background theme.
2. Improve widget performance.
V 4.7.0 :
1. Widget can save photo position now, you can pause photo anywhere.
2. New settings transition animation.

READ MORE@: https://play.google.com/store/apps/details?id=com.hikaru.photowidget

REQUIRES ANDROID: 3.0 and up

SIZE: 12 MB


SCREENSHOTS:



 













Baca Selengkapnya ....

tinyCam Monitor PRO v5.0.6 Apk

Posted by Unknown 0 komentar
tinyCam Monitor PRO v5.0.6 Apk download for Android. One of the best app available for Android for remote surveillance, control and video recording for your private/public network or IP cameras, video encoders and DVRs with CCTV cams (#1 rated surveillance app, 4.6 average rating with 30,000+ active users).




Monitor your baby, pet, home, business, traffic, and weather remotely and securely (no data being sent to 3rd parties). tinyCam Monitor provides best value to customers. Buy now to get more features in future updates for free! More than 25 major updates per year with new features!

Listed as a featured app on Google TV in Google Play. View your security cams right from the sofa!
24 hours refund policy available. Just email us with your order number for a full refund.


Loaded with tons of features:
- Very intuitive custom made interface. See the screenshots to appreciate the quality of the app.
- Support for M-JPEG based devices of all major vendors (100+)
- 1-way audio (listening) for D-Link, Edimax, Gadspot, SONY, Sharx Security, LogiLink, TRENDnet, Y-cam (selective models), Panasonic
- 2-way audio (talking and listening) for Axis, FOSCAM, Loftek, Tenvis, Wansview, INSTAR, and more on the way!
- SSL support (https) for secured monitoring and encrypting credentials
- 11 different layouts with unlimited number of cameras support
- Control pan-tilt-zoom (PTZ) enabled devices, i.e. Pixord, Vivotek
- Relay, LED control for some models
- Cyclic 24/7 video recording (sequence of JPEG images) on SD card, FTP server, or Dropbox. Video playback is under development.
- Easy to use pinch to zoom for digital zooming and swipes for camera selection
- Sequence mode for automatic cameras switching
- Import/export settings to SD card or Dropbox service
- Support for any USB/laptop cams through 3d party software for PC/Mac (see FAQ)
- Native interface for Honeycomb tablets and Google TV
- Very CPU efficient

Still not amazed? How about these UNIQUE features:
- The only app in the market which supports ON CAMERA MOTION DETECTION (selective models). Make automatic snapshots or play alert sound on motion!
- LAN SCANNER for automatic cams detection. Have a camera IP address suddenly changed? It takes only couple minutes to fully rescan your home network
- Audio real-time processing (SQUELCH & ALARM) for using it as a baby monitor
- BACKGROUND AUDIO


What's New

v5.0.6:
- A lot of bug fixes and stability improvements.
- Changes https://t.co/i6s8wXkriJ
v5.0:
[ui]
- UI redesign.
- Internal app redesign.
- New joystick pan-tilt control.
[audio]
- Multiple cams audio monitoring at once.
- Audio histogram.
- Push to talk.
- 2-w audio for Foscam FI9821W, FI9821W V2, FI9826W, FI9828W/FI9828E, FI9831W.
- 2-w audio for FI8602W, FI8608W, FI8620, FI9820W.
[drivers & h.264]

- H.264 for FI9821W, FI9821W V2, FI9826W, FI9828W/FI9828E, FI9831W. Select H.264 codec.




REQUIRES ANDROID: 2.2 and up

SIZE: 5.2 MB


SCREENSHOTS:



 













Baca Selengkapnya ....
Trik SEO Terbaru support Online Shop Baju Wanita - Original design by Bamz | Copyright of apk zippy.