Sunday, July 31, 2016
Notepad secret
open notepad write "bush hid the facts" without the quotes and save it
with any name now open it well what do you see ???
the reason for this is that the file has the
combination of 5-3-3-4 which is not accepted by unicode thus this error.
Read More..
with any name now open it well what do you see ???
the reason for this is that the file has the
combination of 5-3-3-4 which is not accepted by unicode thus this error.
How to put a flash mp3 player in blogger post
Here is a simple tutorial to add small flash Mp3 player to any post in blogger.
Copy and paste the below code just before </head> tag in Layout >> Edit Html.
Copy the below code and paste it wherever you want the flash player to be displayed, but paste it in the Edit Html tab of Create Post.
- Do not forget to replace
http://media.odeo.com/3/3/2/yahoo-song.mp3
with the URL of your Mp3 - You can configure height and weight as required.
Note: If you are using Internet Explorer, you will probably need to click the player twice to make it play. (All other Web browsers will let you click once.) If you do not see the MP3 player, then you dont have the Flash player installed. (More than 90 percent of all Internet users do have it.)
Top 5 Best Gaming Mice Of 2015 By Qubimaxima
Links To All The Products In This Video.
Corsair Vengeance M65 - http://amzn.to/1b9j8FL
Razer Naga Epic Edition - http://amzn.to/1EkAXLA
Logitech G402 Hyperion Fury - http://amzn.to/1EkBblW
Logitech G502 Proteus Core - http://amzn.to/1b9jkVy
SHARE BY GK
Computer Knowledge
Saturday, July 30, 2016
New Zealands Great Walks added to Google Maps
If youve always wanted to walk one of New Zealands classic walks now you can without even breaking a sweat. Google has added several classic NZ walks, such as the Milford Track, to Google street view within Google Ma ps. This was reported in the New Zealand Herald last week.
from The Universal Machine http://universal-machine.blogspot.com/
Put the internet to work for you.
Turn off or edit this Recipe
|
Recommended for you |
PowerShell v3 in a Year Day 13 Clear Content
Topic: Clear-Content
Alias: clc
The help for Clear-Content says, "Deletes the contents of an item, such as deleting the text from a file, but does not delete the item." Clear-Content is the antithesis of the Get-Item cmdlet insofar as it focuses on the contents of an object, not on the object itself. Here is a quick demonstration of how to use it. We will first create a small dummy file with the contents of the directory, then, we will call the Clear-Content cmdlet to remove the contents.
To get more specific, here are the two parameter sets for Clear-Content:
Alias: clc
The help for Clear-Content says, "Deletes the contents of an item, such as deleting the text from a file, but does not delete the item." Clear-Content is the antithesis of the Get-Item cmdlet insofar as it focuses on the contents of an object, not on the object itself. Here is a quick demonstration of how to use it. We will first create a small dummy file with the contents of the directory, then, we will call the Clear-Content cmdlet to remove the contents.
To verify we have content in the file, we call dir (Get-ChildItem) and reference the specific file to which we dumped content:PS >dir >. est.txt
As you can see, the Length (character count) is 6572. That sounds about right for this directory. Now, lets clear out the files contents:PS >dir . est.txtDirectory: C:dirMode LastWriteTime LengthName---- ------------- -----------a--- 11/2/2012 11:14 PM 6572 test.txt
To verify it did the job, we call Get-ChildItem again which displays a .length property of 0.PS >Clear-Content -Path. est.txt
As noted in the help, "The Clear-Content cmdlet deletes the contents of an item, such as deleting the text from a file, but it does not delete the item. As a result, the item exists, but it is empty. Clear-Content is similar to Clear-Item, but it works on files instead of on aliases and variables." It is important to keep in mind, as indicated above, it works specifically on files, not, other providers.PS >dir . est.txtDirectory: C:dirMode LastWriteTime LengthName---- ------------- -----------a--- 11/2/2012 11:15 PM 0 test.txt
To get more specific, here are the two parameter sets for Clear-Content:
- Clear-Content [-Path] <String[]> [-Credential <PSCredential>] [-Exclude <String[]>] [-Filter <String>] [-Force[<SwitchParameter>]] [-Include <String[]>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]][-UseTransaction [<SwitchParameter>]] [<CommonParameters>]
- Clear-Content [-Credential <PSCredential>] [-Exclude <String[]>] [-Filter <String>] [-Force [<SwitchParameter>]] [-Include <String[]>] -LiteralPath <String[]> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [-UseTransaction [<SwitchParameter>]] [<CommonParameters>]
- Path
- Credential
- Exclude
- Filter
- Force
- Include
- Confirm
- WhatIf
- UseTransaction
- Credential
- Exclude
- Filter
- Force
- Include
- LiteralPath
- Confirm
- WhatIf
- UseTransaction
Some examples of how to use Clear-Content are listed below:
- This example demonstrates how to clear the contents of a wildcarded selection of .txt files in the C:userswill directory whose name ends with _iis.log. Clear-Content -Path C:userswill*_iis.log
- Here is an example that shows how to clear the contents of all files with a .log extension. The -Force parameter is a switch which, when included, indicates to the command to clear the contents of read-only files as well: clear-content -path * -filter *.log -force.
- Here is an example that looks in the C: emp directory for files whose names begin with Smp, does not include the number 2. The -WhatIf switch suppresses the actual changes from being made and clear-content c:Temp* -Include Smp* -Exclude *2* -whatif
This is a relatively lightweight cmdlet, but, it is important to have it well-placed in the tool kit. Instead of having to delete files, which sometimes is the fastest way to remove content, calling Clear-Content might be just as effective, if not more so, than, calling Remove-Item. In either case, Clear-Content is a great way to reset the contents of a file object so you have a blank slate. In cases where you are logging and need to clear logs every day, this proves to be the perfect tool for the job.
One caveat I find important to point out any time one is dealing with file system objects (and their related cmdlets) involves some confusion with how -Filter, -Include and -Exclude work. After having fought this battle plenty of times, I found great blog post by Thomas Lee, Get-ChildItem and theInclude and Filter parameters, which explains some issues folks run into when working with these three parameters. Before you start using this cmdlet heavily be sure to explore how these parameters work (and misbehave). After you get a good feel for their real-world usages of these folk, go to town, but, make use of the -WhatIf parameter a lot as you test this out.
Friday, July 29, 2016
Remove SHORTCUT link from the desktop folder
how to remove short cut arrows on ur desktop items
just go to >start>run>regedit>hkey_classes_root>u
find a file by name lnkfile click on that to that right
u can see a file by name is shortcut delete that and
again come to left click on pipfile u delete again is shortcut
then restart the pc u cant see the shortcut arrow
Read More..
just go to >start>run>regedit>hkey_classes_root>u
find a file by name lnkfile click on that to that right
u can see a file by name is shortcut delete that and
again come to left click on pipfile u delete again is shortcut
then restart the pc u cant see the shortcut arrow
Mozilla inside Mozilla
Copy and paste the following code into your address bar to have a Firefox window inside the same window:
chrome://browser/content/browser.xul
Thursday, July 28, 2016
An experiment in digital citizenry
You may already conduct a lot of your life online, but few countries have totally embraced the concept of online citizenship. the small European country of Estonia has been conducting an interesting experiment making all their population "e-Residents". The Register has just published an interesting article on its reach and impact. This was brought to my attention by my colleague Mark Wilson.
from The Universal Machine http://universal-machine.blogspot.com/
Put the internet to work for you.
Turn off or edit this Recipe
|
Recommended for you |
How to Edit Any Webpage
- Go to Any web site (I have Use Google)
- Now Goto Addressbar and delet all thing(e.g, http://www.google.co.in)
- And now Copy and paste the Following Code in address bar.
javascript:document.body.contentEditable=false; document.designMode=on; void 0
- And Hit Enter
- Now You can do What You want..
- For example:-You can do like following
====================================
Explore more with Mapping with Google
Posted by Tina Ornduff, Program Manager
In September 2012 we launched Course Builder, an open source learning platform for educators or anyone with something to teach, to create online courses. This was our experimental first step in the world of online education, and since then the features of Course Builder have continued to evolve. Mapping with Google, our latest MOOC, showcases new features of the platform.
From your own backyard all the way to Mount Everest, Google Maps and Google Earth are here to help you explore the world. You can learn to harness the worlds most comprehensive and accurate mapping tools by registering for Mapping with Google.
Mapping with Google is a self-paced, online course developed to help you better navigate the world around you by improving your use of the new Google Maps, Maps Engine Lite, and Google Earth. All registrants will receive an invitation to preview the new Google Maps.
Through a combination of video and text lessons, activities, and projects, youll learn to do much more than look up directions or find your house from outer space. Tell a story of your favorite locations with rich 3D imagery, or plot sights to see on your upcoming trip and share with your travel buddies. During the course, youll have the opportunity to learn from Google experts and collaborate with a worldwide community of participants, via Google+ Hangouts and a course forum.
Mapping with Google will be offered from June 10 - June 24, and you can choose whether to explore the features of Google Maps, Google Earth, or both. In addition, youll have the option to complete a project, applying the skills youve learned to earn a certificate. Visit g.co/mappingcourse to learn more and register today.
The world is a big place; we like to think that you can make it a bit more manageable and adventurous with Googles mapping tools.
Read More..
In September 2012 we launched Course Builder, an open source learning platform for educators or anyone with something to teach, to create online courses. This was our experimental first step in the world of online education, and since then the features of Course Builder have continued to evolve. Mapping with Google, our latest MOOC, showcases new features of the platform.
From your own backyard all the way to Mount Everest, Google Maps and Google Earth are here to help you explore the world. You can learn to harness the worlds most comprehensive and accurate mapping tools by registering for Mapping with Google.
Mapping with Google is a self-paced, online course developed to help you better navigate the world around you by improving your use of the new Google Maps, Maps Engine Lite, and Google Earth. All registrants will receive an invitation to preview the new Google Maps.
Through a combination of video and text lessons, activities, and projects, youll learn to do much more than look up directions or find your house from outer space. Tell a story of your favorite locations with rich 3D imagery, or plot sights to see on your upcoming trip and share with your travel buddies. During the course, youll have the opportunity to learn from Google experts and collaborate with a worldwide community of participants, via Google+ Hangouts and a course forum.
Mapping with Google will be offered from June 10 - June 24, and you can choose whether to explore the features of Google Maps, Google Earth, or both. In addition, youll have the option to complete a project, applying the skills youve learned to earn a certificate. Visit g.co/mappingcourse to learn more and register today.
The world is a big place; we like to think that you can make it a bit more manageable and adventurous with Googles mapping tools.
Wednesday, July 27, 2016
Flash CS6 Tutorials for Beginners AS3 Actionscript 3 By Hun Kim
Flash CS6 Tutorials for BeginnersAS3 / Actionscript 3 Game Development Tutorials.
Clear, Concise, and Free video tutorials at www.hunkim.com
SHARE BY GK
Computer Knowledge
Top 10 Best Android Games 2015
Heres a list of 10 Best Android Games.
WWE 2K:- https://play.google.com/store/apps/de...
Help Me Jack: Atomic Adventure:- https://play.google.com/store/apps/de...
Red Bull Air Race The Game:- https://play.google.com/store/apps/de...
Earn to Die 2:- https://play.google.com/store/apps/de...
Staying Together:- https://play.google.com/store/apps/de...
Bladelords - the fighting game:- https://play.google.com/store/apps/de...
Valiant Hearts The Great War:-https://play.google.com/store/apps/de...
Corridor Z - The Zombie Runner:- https://play.google.com/store/apps/de...
First Touch Soccer 2015:-https://play.google.com/store/apps/de...
Osmos HD:- https://play.google.com/store/apps/de...
SHARE BY GK
Computer Knowledge
From Pixels to Actions Human level control through Deep Reinforcement Learning
Posted by Dharshan Kumaran and Demis Hassabis, Google DeepMind, London
Remember the classic videogame Breakout on the Atari 2600? When you first sat down to try it, you probably learned to play well pretty quickly, because you already knew how to bounce a ball off a wall in real life. You may have even worked up a strategy to maximise your overall score at the expense of more immediate rewards. But what if you didnt possess that real-world knowledge and only had the pixels on the screen, the control paddle in your hand, and the score to go on? How would you, or equally any intelligent agent faced with this situation, learn this task totally from scratch?
This is exactly the question that we set out to answer in our paper Human-level control through deep reinforcement learning, published in Nature this week. We demonstrate that a novel algorithm called a deep Q-network (DQN) is up to this challenge, excelling not only at Breakout but also a wide variety of classic videogames: everything from side-scrolling shooters (River Raid) to boxing (Boxing) and 3D car racing (Enduro). Strikingly, DQN was able to work straight out of the box across all these games using the same network architecture and tuning parameters throughout and provided only with the raw screen pixels, set of available actions and game score as input.
The results: DQN outperformed previous machine learning methods in 43 of the 49 games. In fact, in more than half the games, it performed at more than 75% of the level of a professional human player. In certain games, DQN even came up with surprisingly far-sighted strategies that allowed it to achieve the maximum attainable scorefor example, in Breakout, it learned to first dig a tunnel at one end of the brick wall so the ball could bounce around the back and knock out bricks from behind.
This work offers the first demonstration of a general purpose learning agent that can be trained end-to-end to handle a wide variety of challenging tasks, taking in only raw pixels as inputs and transforming these into actions that can be executed in real-time. This kind of technology should help us build more useful productsimagine if you could ask the Google app to complete any kind of complex task (Okay Google, plan me a great backpacking trip through Europe!).
We also hope this kind of domain general learning algorithm will give researchers new ways to make sense of complex large-scale data creating the potential for exciting discoveries in fields such as climate science, physics, medicine and genomics. And it may even help scientists better understand the process by which humans learn. After all, as the great physicist Richard Feynman famously said: What I cannot create, I do not understand.
Read More..
Remember the classic videogame Breakout on the Atari 2600? When you first sat down to try it, you probably learned to play well pretty quickly, because you already knew how to bounce a ball off a wall in real life. You may have even worked up a strategy to maximise your overall score at the expense of more immediate rewards. But what if you didnt possess that real-world knowledge and only had the pixels on the screen, the control paddle in your hand, and the score to go on? How would you, or equally any intelligent agent faced with this situation, learn this task totally from scratch?
This is exactly the question that we set out to answer in our paper Human-level control through deep reinforcement learning, published in Nature this week. We demonstrate that a novel algorithm called a deep Q-network (DQN) is up to this challenge, excelling not only at Breakout but also a wide variety of classic videogames: everything from side-scrolling shooters (River Raid) to boxing (Boxing) and 3D car racing (Enduro). Strikingly, DQN was able to work straight out of the box across all these games using the same network architecture and tuning parameters throughout and provided only with the raw screen pixels, set of available actions and game score as input.
The results: DQN outperformed previous machine learning methods in 43 of the 49 games. In fact, in more than half the games, it performed at more than 75% of the level of a professional human player. In certain games, DQN even came up with surprisingly far-sighted strategies that allowed it to achieve the maximum attainable scorefor example, in Breakout, it learned to first dig a tunnel at one end of the brick wall so the ball could bounce around the back and knock out bricks from behind.
Video courtesy of Atari Inc. and Mnih et al. Human-level control through deep reinforcement learning"
So how does it work? DQN incorporated several key features that for the first time enabled the power of Deep Neural Networks (DNN) to be combined in a scalable fashion with Reinforcement Learning (RL)a machine learning framework that prescribes how agents should act in an environment in order to maximize future cumulative reward (e.g., a game score). Foremost among these was a neurobiologically inspired mechanism, termed experience replay, whereby during the learning phase DQN was trained on samples drawn from a pool of stored episodesa process physically realized in a brain structure called the hippocampus through the ultra-fast reactivation of recent experiences during rest periods (e.g., sleep). Indeed, the incorporation of experience replay was critical to the success of DQN: disabling this function caused a severe deterioration in performance.Comparison of the DQN agent with the best reinforcement learning methods in the literature. The performance of DQN is normalized with respect to a professional human games tester (100% level) and random play (0% level). Note that the normalized performance of DQN, expressed as a percentage, is calculated as: 100 X (DQN score - random play score)/(human score - random play score). Error bars indicate s.d. across the 30 evaluation episodes, starting with different initial conditions. Figure courtesy of Mnih et al. Human-level control through deep reinforcement learning, Nature 26 Feb. 2015. |
We also hope this kind of domain general learning algorithm will give researchers new ways to make sense of complex large-scale data creating the potential for exciting discoveries in fields such as climate science, physics, medicine and genomics. And it may even help scientists better understand the process by which humans learn. After all, as the great physicist Richard Feynman famously said: What I cannot create, I do not understand.
Fl Studio Tutorials By MastersunTutorials
Fl Studio Tutorials By MastersunTutorials.
SHARE BY GK
Computer Knowledge
PowerShell v3 Function Test Uri
As part of the security module I am working on I thought some Uri testing would be a good analysis tool. This function is merely a subroutine, but, still is worth pointing out:
Read More..
The two key lines here are the IsWellFormedUriString and TryCreate . You can get more details about how these work from MSDN.function Test-Uri{<#.NOTESAuthor: Will SteeleLast Modified Date: 07/27/2012.EXAMPLETest-Uri -Uri http://www.msn.comTrue.EXAMPLETest-Uri -Uri http:/hax0r.comFalse#>param([ValidateNotNullOrEmpty()][String]$Uri)if([System.Uri]::IsWellFormedUriString($Uri, [System.UriKind]::RelativeOrAbsolute)){[System.Uri]::TryCreate($Uri, [System.UriKind]::RelativeOrAbsolute, [ref] $uri)}else{$false}}
- IsWellFormedUriString: Uri.IsWellFormedUriString Method
- TryCreate: Uri.TryCreate Method (String, UriKind, Uri%)
Again, this is a simple function, but, highly useful for anyone doing pen testing, analysis, checks, etc.
The IT History Society
If you have an interest in computing and its history you may be interested in joining the IT History Society, or just using its digital archives. Dedicated to preserving IT history the IT History Society (ITHS) is "an international group of over 600 members working together to document, preserve, catalog, and research the history of Information Technology (IT). Comprised of individuals, academicians, corporate archivists, curators of public institutions, and hobbyists." Its online resources include:
- A global network of IT historians and archivists
- Our exclusive International Database of Historical and Archival Sites
- IT Honor Roll of people who have made a noteworthy contribution to the industry
- IT Hardware and Companies databases
- Research links and tools to aid in the preservation of IT history
- Technology Quotes
- Calendar of upcoming events
- An active blog
- And more
from The Universal Machine http://universal-machine.blogspot.com/
Put the internet to work for you.
via Personal Recipe 895909
Tuesday, July 26, 2016
computer tips some useful tips for your compele online security
computer tips
the goal of every good thing if the neighborhood has seen some of the worst aspects. Just as with Internet viruses, etc.(computer tips) . Though this is the beginning of things, but the latest plan premium over the last few years with the increased use of the Internet against the step, step increases in these activities continues icon sad some tips for you to complete online security include it with the hacking.
the goal of every good thing if the neighborhood has seen some of the worst aspects. Just as with Internet viruses, etc.(computer tips) . Though this is the beginning of things, but the latest plan premium over the last few years with the increased use of the Internet against the step, step increases in these activities continues icon sad some tips for you to complete online security include it with the hacking.
Popular Posts
-
A while back Jeff Hicks put some functions up to help navigate the file system a little more easily. Somehow I pulled this (and one other) ...
-
Stick war: legacy description: one of the most popular and highest rated web games of all time now...
-
Aplikasi keyboard adalah merupakan hal yang penting pada ponsel android anda. tanpa aplikasi keybo...
-
Enjoy millions of the latest android apps, games korean hangul keyboard (beta user more efficientl...
-
How to get an iphone-like keyboard on android. posted: 21 sep 2014, 23:01, by florin t. the first ...
-
Apk-keyboard-l-transparan-untuk-android what are you waiting for? you can get free download apk-ke...
-
... sebanyak keyboard piano apps untuk android kamu. download keyboard piano apps apk exciting yan...
-
Ridmik keyboard free download downloader's guide to google play android antivirus that won...
-
Direct link resetter_printer_servicetool_v1074_ip2770 (working).rar download, download resetter_pr...
-
Download and enjoy keyboard color. search; images; maps; play; youtube; news; gmail; drive; the ne...
Blog Archive
-
▼
2016
(908)
-
▼
July
(88)
- Forest tree or wood carvings image collection
- Notepad secret
- How to put a flash mp3 player in blogger post
- Top 5 Best Gaming Mice Of 2015 By Qubimaxima
- New Zealands Great Walks added to Google Maps
- PowerShell v3 in a Year Day 13 Clear Content
- Remove SHORTCUT link from the desktop folder
- Mozilla inside Mozilla
- An experiment in digital citizenry
- How to Edit Any Webpage
- Explore more with Mapping with Google
- Flash CS6 Tutorials for Beginners AS3 Actionscript...
- Top 10 Best Android Games 2015
- From Pixels to Actions Human level control through...
- Fl Studio Tutorials By MastersunTutorials
- PowerShell v3 Function Test Uri
- The IT History Society
- Reference books for B Sc IT Mumbai V VI sem
- computer tips some useful tips for your compele on...
- Don Jones Month of Lunches Day 6
- Adobe Photoshop Professional Effects Tutorials
- Is your English prefect
- Asus P6TD Deluxe Support Intel Core i7 and 24GB RAM
- A year and a bit with Inbox Zero
- Windows 7 Keyboard Shortcuts Top Windows Shortcut ...
- How to recover any file from corrupted or broken H...
- The Medicine when Folder option vanishes
- MVP Out of Curiosity
- Blender 3D Basics In Hindi By Blender PaathShala
- Xp Vista Windows 7 Activate Key Brand key
- Explore the history of Pop and Punk Jazz and Folk ...
- TSQL Fast Back Up Restore of Table
- PowerShell v3 in a Year Day 11 Get Verb
- EaseUs Partition Master 10 8 All Edition Reg Keys
- PowerShell v2 You Can Omit Get Heres Why
- Bitdefender Total Security 2015 Free Download Full...
- How to Fix Corrupted File in XP
- PowerShell v2 RegEx Examples
- Tips on Choosing Apt Web Templates and Service Pro...
- symbols for notepad
- PowerShell v2 Function Add WebConfigAppSetting
- Top 5 Gaming Keyboards Of 2015 By Qubimaxima
- PowerShell Add a Shutdown Button in Windows 8
- My USB Fan Really Amazing
- How to make Windows Xp Genuine and Activate Free 1...
- PowerShell v3 Script Design Point Build Forms That...
- Hide your Hard Disk drives
- Desktop Publishing Course DTP Study Material Kit
- How Packet Travels in Network 3D Animation
- Blender 3D Tutorials By Paul Campbell
- How to Shake Your Orkut Windows Fun
- BASIC is 50 years old
- How To Make A Game Like Mario In Flash By Game Dev...
- What happens if your Government unfriends you
- Smart Autofill Harnessing the Predictive Power of ...
- Rupee Font Use the Indian Rupee Symbol on Computer...
- NoteBook Toshiba Qosmio X300 13W Eye Catching For ...
- Compare How London Looks on Google vs Paintings Fr...
- We are joining the Open edX platform
- Tate Britain Is Offering Everyone Remote Tours Usi...
- Application Paint Net
- Download Cool Santa Clause Christmas Wallpapers
- Berkeley Earth Maps Powered by Google Maps Engine ...
- Short cut for shutdown and Restart on desktop
- Microsoft Challenges Google’s Artificial Brain Wit...
- Working Together to Support Computer Science Educa...
- Backyard cricket the official rules
- The iSANZ 2015 Best International Superstar award ...
- Remembering to forget
- How to extract or get email id from orkut
- Map of Life A preview of how to evaluate species c...
- Try to LOCK ur folder wit out S W method 1
- How to Copy Text from Images or protected web pages
- Toshiba Satellite A300 A305 System With a Face
- Monitoring the Worlds Forests with Global Forest W...
- Adobe After Effects Advanced Tutorials By Tutorial...
- See through the clouds with Earth Engine and Senti...
- DeepDream a code example for visualizing Neural Ne...
- Cloud storage on the Raspberry Pi
- Embeeded Systems Notes TY BSc IT by MICHAEL BARR O...
- Doing Data Science with coLaboratory
- Powershell v1 v2 v3 Weirdness with File Formats
- High Definition Scary Halloween Desktop Wallpaper
- TYBSc IT Sem 5 Exam Time Table 2010 Regular
- A PPT Presentation on Web 2 0
- Making Blockly Universally Accessible
- Another Spam email won the sum of £860 000 00 GBP ...
- Teaching machines to read between the lines and a ...
-
▼
July
(88)
Powered by Blogger.