WHAT'S NEW?
Loading...
Showing posts with label featured. Show all posts
Showing posts with label featured. Show all posts
You Might Have Seen In The Most New Android Smartphones The Time And Date Gets Display In The Home Screen In A Very Attractive Way But In Windows The Clock Is Positioned In The Bottom Of The Screen.Today I Found A Good Software Which Can Fix This It Is Called Dexclock.It Comes By Default 4 Wallpapers But You Can Get More Form

Wallpapers Here   Download Dexclock

The core idea behind Dexclock is to blend a fully dynamic clock into artistically designed wallpapers without compromising on aesthetics. To serve the needs of a vast range of users, the wallpaper clocks are available for different screen resolutions and sizes.
Once launched, the application places its icon in the system tray, right-clicking which allows you to access its main window from the context menu. You can also open the Clock Folder from here, which is basically the directory where all your dexclocks are stored, and access the web portal to download additional wallpapers.
Dexclock_System Tray

Dexclock only comes with four wallpapers out of the box, but all them look pretty impressive! To apply a wallpaper clock of your choice simply select it from the list to the left and hit Apply. You can also select wallpaper position between a handful of options including Fill, Stretch, Fit, Tile and Center, as well as toggle 24-hour time format. The current resolution of the wallpaper is also displayed along with its preview. Lastly, you can easily specify a different Clock Folder of your choice from here if you wish.
Dexclock

Warning

Comes with additional bloatware during installation. During installation of Dexclock, you are presented with the option to install additional bloatware. Just pay attention during the install process and decline the offers, you should be fine. Remove Tick Marks and continue installation.



Dexclock bloatware

Some Best Wallpaper Clocks

Looking For Higgs Boson
Visible Light
Snail Race
Typoraphic World Map
Air Lines



You have presumably known about the Iron Man Personal Assistant, J.A.R.V.I.S , you might have thought about whether you could change over you laptop/desktop into a full offered automated assistant,you could do it.and it is pretty  simple. In spite of the fact that you may not have the capacity to start rockets and send security covering, you can do simple errands like wanting climate, closing PC down, current PC condition and so forth.
 What Do You Need :
* Windows 7 or 8 ( 7 is just incredible, 8 will work, vista won't ) 
* Windows Speech Recognition Macros. (LINK
* A Bluetooth/wireless Headset With Mike (discretionary) 
* JARVIS Theme. (read underneath)

We have partitioned the "proselyte to-jarvis" mission into 3 Divisions : 

- Training The Windows Speech Recognition Program. 
- Setting Up The Windows Speech Macros. 
- Setting Up The J.a.r.v.i.s Interface. 
With the intention that You Don't Get Confused :
The first step: Teach The Windows Speech Recognition  Software: 5 Minutes:
Yes I am aware, A simple Move, But The key component of "convert-to-jarvis" assignment, what we gotta perform will be start the home Windows Speech Recognition Program  which often happens pre-installed while using Home windows, method to can get on will be via start off bar. Currently find the required Fields, and immediately after it really is done, look at the "Train your pc to raised comprehend you" portion, it is not necessary if you have obvious voice/accent, yet My partner and i highly help you to invest a minimum of 5 Min's for this which means your computer can comprehend anyone much better.
The sencond step: Configure The Windows Speech Recognition Macros : 5 Minutes :

Notwithstanding provided that you Have set-up-ed the Windows Speech Recogination Program, you might have been going for numerous types of cool charges, But now to flavor it up, We'll utilize the Windows Speech Macros.i accept you might have recently downloaded it from the connection above and installed it.after Installing it i might encourage you to put its alternate routes in two spots, One in the desktop and other in the begin up organizer, so it might begin the second your machine boots up.so a little stroll through to this programming, This is a super-cool, small programming that educates your workstation to converse with you interactively.here is the way to situated up the orders :

Twofold Click The Macros Icon, and when the window pops up asking "What might as well the macro do?" click "Advanced." Here Is A Little Synopsis at what are you taking a gander at :

<speechMacros> - This is the starting Tag, it just tells the computer that this XML file uses the Speech
                              Macros to execute.

<command> - This is the command to be executed. Each command is basically one action... in most
                         cases you will only need one, but for some automations you'll want to include more                                  than one. You'll see an example of this later.

<listenFor></listenFor> - This tells the computer what word or phrase to listen for in order to do an                                          action.

Notice that there is a closing tag (</listenFor>), this tells the XML that this spot in the code is where to
stop doing whatever function... in this case stop listening for a word or phrase once the computer  hears it.

</command> - The closing tag for the "Command" tag... again, in XML every tag will have an
                       opening/closing tag and what happens between the two is how it knows what to                                  execute. In this case it knows that the command is finished once the word/phrase has                           been detected.

</speechMacros> - By now I think you can figure out why this is here.
                            Since I'm going to name my computer Jarvis, I'm going to tell my computer to                                   listen for it's name by changing the <listenFor> tags to say the following :  

                           <listenFor>Jarvis</listenFor>

Here Is A Little Applet That will educate my portable computer to Reply Me :
_________________________________________________________________________________
<speechMacros>
<command>
<listenFor>Wake Up Jarvis</listenFor>
<speak>Systems Online, Database Check, Good Morning YOGISOFT !</speak>
</command>
</speechMacros>
_________________________________________________________________________________
So Whenever I Say "Wake Up Jarvis" My Computer will reply me with "System Online,Database Check, Good Morning YOGISOFT ! ", You can change it to whatever you like !
_________________________________________________________________________________


An Speech Macro For Getting The Weather :
_________________________________________________________________________________
<?xml version="1.0" encoding="UTF-16"?>
<speechMacros>
<command>
<listenFor>Pull up the weather in [CityName]</listenFor>
<run command="http://www.weather.com/weather/local/{[CityName.zipCode]}"/>
</command>
<command>
<listenFor>Is it cold in [CityName]?</listenFor>
<speak>Let me check... just a moment.</speak>
<script language="JScript">
<![CDATA[
<var xml_doc = new ActiveXObject("Microsoft.XMLDOM");
<xml_doc.async = false;
<xml_doc.load("http://www.rssweather.com/zipcode/{[zipCode]}/rss.php");
<var titles = xml_doc.getElementsByTagName("title");
<var descriptions = xml_doc.getElementsByTagName("description");
<Application.Speak(titles.item(2).text + " in {[*CityName]}");
<Application.Speak(descriptions.item(2).text);]]>
</script>
</command>
<listenForList name="CityName" propname="zipCode">
<item propval="65201">Columbia</item>
<item propval="37201">Nashville</item>
</listenForList>
</speechMacros>

_________________________________________________________________________________
A Macro To Restart The Computer :
You will just have to say "Go To Sleep JARVIS" (GTS )  and the computer will restart :
_________________________________________________________________________________
<speechMacros>
<command>
<listenFor>Go To Sleep JARVIS</listenFor>
<speak>I am going to sleep Sir !! .</speak>
<run command="C:\Windows\System32\shutdown.exe" params="-r -t 00"/>
</command>
</speechMacros>
___________________________________________________________________________

For More Interactivity, install Voice Search on Google chrome or some similar app in firefox !


The Last step: Pimping The Screen: 5 Minutes:


So well we have finished the talking and answering part, however we don't require the old crappy windows 
desktop, we require a  intuitive desktop so our PC looks like jarvis, to do that we will commission
this topic from Devianart . After that we will pimp up the begin of windows, to do that we will
download this small utility called Bootchanger, and getting a boot screen movement of your decision structure here, then you are carried out.