Sunday, February 23, 2014

Plantronics Backbeat FIT Bluetooth Stereo Headset And Plantronics Voyager Edge Bluetooth Headset

The Backbeat FIT are an over-the-neck type of headphones which loop around your ears, so they look like a more stylish  And they come in Cyan blue and lime green.

The two-earbuds-connected-by-one-wire design allows for these headphones to be somewhat tanglefree compared to your regular pair of headphones. The Backbeat FIT boasts 8-hours of music playback, which is very impressive for a wireless stereo headset, and will keep it’s charge on standby for up to 6 months after a full charge. There’s also a microphone for phone-calls, and it’s sweat and rain resistant so you can run around with them all day. Dont go swimming with them though, they’re not water-proof.

Plantronics Voyager Edge Bluetooth Headset




includes a microUSB port for charging, features noise canceling, voice commands to check on battery levels or other hands-free interaction, and has sensors that know if you’re wearing the headset or removing it, which will automatically switch the phone’s loudspeaker on.
There’s also 6 hours of battery life, and a charging case which provides an additional 10 hours of battery life as well. Available in April for $129.99, in Black, Grey or White colors

Thursday, February 20, 2014

Apple iWatch

Apple iWatch Concept designed by James Ivaldi. I'm sure that the most you will love is this concept in many others.Creation of the Jivaldi team, this beauty features a flexible interface. Wearable technology is the future and this one is a step in that direction.




Apple iWatch Concept designed by James Ivaldi. I'm sure that the most you will love is this concept in many others.Creation of the Jivaldi team, this beauty features a flexible interface. Wearable technology is the future and this one is a step in that direction.
Apple iWatch Concept designed by James Ivaldi. I'm sure that the most you will love is this concept in many others.Creation of the Jivaldi team, this beauty features a flexible interface. Wearable technology is the future and this one is a step in that direction.
Apple iWatch Concept designed by James Ivaldi. I'm sure that the most you will love is this concept in many others.Creation of the Jivaldi team, this beauty features a flexible interface. Wearable technology is the future and this one is a step in that direction.

Wednesday, February 12, 2014

Water -Jet Printer

A team of scientists have created Water-Jet printer on 28 January 2014. The printer was created by the team of scientists at Jilin University of China.

These new water-jet printer use water instead of ink. The used paper fades back to white within a day, which enables it to be reused.

A dye compound called oxazolidine was used, which yielded a clear, blue print in less than a second after water was applied.

Many statistics indicate that about 40 per cent of office prints are taken to the waste paper basket after a single reading.

Water-jet technology allows each page to be reprinted dozens of times. This is money and tree saving option in a digital world that still relies heavily on hard copy.


The trick lies in the paper, which is treated with an invisible dye that colours when exposed to water, then disappears.

The print fades away within about 22 hours at temperatures below 35 degrees as the water evaporates, quicker if exposed to high heat.

Currently, four water-printed colours so far are available like blue, magenta, gold and purple, but can only print in one hue at a time, for now.


A team of scientists have created Water-Jet printer on 28 January 2014. The printer was created by the team of scientists at Jilin University of China.

These new water-jet printer use water instead of ink. The used paper fades back to white within a day, which enables it to be reused.

A dye compound called oxazolidine was used, which yielded a clear, blue print in less than a second after water was applied. - See more at: http://www.jagranjosh.com/current-affairs/scientists-at-jilin-university-of-china-created-waterjet-printer-1390999496-1#sthash.6Se1RwyA.dpuf

Tuesday, January 14, 2014

Nano Nails Wearable Technology

Many wearable technologies are there nowadays i.e. Google Glass , Smart Watch and many more. Now another one that you can wear on your finger nails i.e. “NANO NAILS”.

 http://freefeast.info/wp-content/uploads//2013/12/Tech-Tips-and-Nano-Nails.jpg

Nano Nails allow you to use your touch-screen device in an unrestricted manner.
  • Technology and beauty combine for the Modern Women
  • Best screen visualization of any stylus
  • Unmatched Accuracy : With a stylus that is always at your fingertips.
Sri Vellanki is the founder of Nano Nails & Tech Tips. She might also face this type of problem, so she invented touch-screen friendly fingernails i.e. wearable stylus that is similar to the artificial nails available in market.


Nano Nail

Nano Nails is a kind of an artificial nail stylus that replicates the motion of an object using your figure-nail. With this stylus, no need to carry separate stylus as this is glued to fingers. In Nano nail there is slight curve which help you to get proper angel , great precision, more accurate touch and it works on full press on Nail or nail-tip.

Wednesday, January 1, 2014

CoffeeScript

CoffeeScript is a little language that compiles into JavaScript.
CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.
The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript (and vice-versa). The compiled output is readable and pretty-printed, will work in every JavaScript runtime, and tends to run as fast or faster than the equivalent handwritten JavaScript.
 CoffeeScript is a lucid evolution of JavaScript created by Jeremy Ashkenas. CoffeeScript is available in browsers and environments where JavaScript

is available
Installation

The CoffeeScript compiler is itself written in CoffeeScript, using the Jison parser generator. The command-line version of coffee is available as a Node.js utility. The core compiler however, does not depend on Node, and can be run in any JavaScript environment, or in the browser.
Usage

Once installed, you should have access to the coffee command, which can execute scripts, compile .coffee files into .js, and provide an interactive REPL. The coffee command takes the following options: 

-c, --compile
Compile a .coffee script into a .js JavaScript file of the same name.
-m, --map
Generate source maps alongside the compiled JavaScript files. Adds sourceMappingURL directives to the JavaScript as well.
-i, --interactive
Launch an interactive CoffeeScript session to try short snippets. Identical to calling coffee with no arguments.
-o, --output [DIR]
Write out all compiled JavaScript files into the specified directory. Use in conjunction with --compile or --watch.
-j, --join [FILE]
Before compiling, concatenate all scripts together in the order they were passed, and write them into the specified file. Useful for building large projects.
-w, --watch
Watch files for changes, rerunning the specified command when any file is updated.
-p, --print
Instead of writing out the JavaScript as a file, print it directly to stdout.
-s, --stdio
Pipe in CoffeeScript to STDIN and get back JavaScript over STDOUT. Good for use with processes written in other languages. An example:
cat src/cake.coffee | coffee -sc
-l, --literate
Parses the code as Literate CoffeeScript. You only need to specify this when passing in code directly over stdio, or using some sort of extension-less file name.
-e, --eval
Compile and print a little snippet of CoffeeScript directly from the command line. For example:
coffee -e "console.log num for num in [10..1]"
-b, --bare
Compile the JavaScript without the top-level function safety wrapper.
-t, --tokens
Instead of parsing the CoffeeScript, just lex it, and print out the token stream: [IDENTIFIER square] [ASSIGN =] [PARAM_START (] ...
-n, --nodes
Instead of compiling the CoffeeScript, just lex and parse it, and print out the parse tree:
Expressions
  Assign
    Value "square"
    Code "x"
      Op *
        Value "x"
        Value "x"
--nodejs
The node executable has some useful options you can set, such as
--debug, --debug-brk, --max-stack-size, and --expose-gc. Use this flag to forward options directly to Node.js. To pass multiple flags, use --nodejs multiple times.


Saturday, December 28, 2013

List of Anroid game Engine



For creating games in android, there are some supporting open source android game engine which are listed below:

1.jMonkey Engine(Java based 3D Game Engine)

http://jmonkeyengine.org/

2.YoghurtGum(Android Game Engine)

https://code.google.com/p/yoghurtgum/

3.Catcake(Android Game Engine)

https://code.google.com/p/catcake/

4.jPCT-AE(Android Game 3D Engine)

http://www.jpct.net/jpct-ae/

5.Dwarf-fw(Android 3D Framework)

https://code.google.com/p/dwarf-fw/

6.Mages(Android Game Engine)

https://code.google.com/p/mages/

7.Angle(Android Game Engine)

https://code.google.com/p/angel-engine/

8.Shiva3d(Android Game Engine)

http://www.stonetrip.com/

9.Unity3d

http://unity3d.com/

10.E3Droid

http://www.e3roid.com/

11.LibGDX

https://code.google.com/p/libgdx/

12.Dxstudio

http://www.dxstudio.com/index.aspx

13.CuttleFishEngine(2D)

http://www.masonmc.com/2012/mkdir-cuttlefish2/

14.Rokon 2D game engine

https://code.google.com/p/rokon/

15.Corona Game Edition

http://www.coronalabs.com/products/corona-sdk/

Friday, November 22, 2013

Coin Card Replaces Everything in Your Wallet

Coin is a connected credit/debit card that could replace all the plastic in your wallet. Expected to ship in Summer 2014, the device will retail for $100, but you can get it at a pre-order price of $50 starting today via Coin's website.




Coin will take on the identity of all your swipe-able cards such as credit, gift, loyalty and membership cards. A card-swipe dongle ships with the device so you can connect it to your phone to upload your cards onto the companion app. That information is then stored on Coin. Tap a button on Coin to toggle through a digital display of the cards stored and select the one you want to use. The device will then take on the information and identity of the card you've selected and can be swiped for use anywhere cards are accepted. Storage and communication with the app are protected by 128-bit encryption.

Coin detects when your phone is near via a low-power Bluetooth signal and notifies you when you're a certain distance away from it. You won't need to be near your Coin for it to work, but you will need your phone and the dongle to add, manage or delete existing cards.

The device will also disable itself "if it's lost," according to a press release, but it isn't clear whether you can do this from the app or if it does so automatically based on distance from your phone. Each Coin has a battery that will last for two years and will not demagnetize if left near other cards or magnets, and like other cards it is shock and water-resistant.

Neither the press release nor video address the many security concerns with Coin, such as the concept of getting merchants to accept a generic credit card without questioning if the cardholder is the original owner of the card. Coin could also be a card thief's dream come true, making it much easier to store the information from stolen cards on one convenient device.