Sunday, July 31, 2016

Forest tree or wood carvings image collection

forest wood craving 1 forest wood craving 2 forest wood craving 3

forest wood craving 4 forest wood craving 5 forest wood craving 6

forest wood craving 7 forest wood craving 8 forest wood craving 9

forest wood craving 10 forest wood craving 11 forest wood craving 12

forest wood craving 13
Read More..

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

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.
<script src=http://googlepage.googlepages.com/player.js type=text/javascript/>

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.
<object type="application/x-shockwave-flash" data="http://coloriteman.googlepages.com/player.swf" id="audioplayer1" height="17" width="185">
<param name="movie" value="http://coloriteman.googlepages.com/player.swf">
<param name="FlashVars" value="playerID=1&amp;soundFile=http://media.odeo.com/3/3/2/yahoo-song.mp3">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent"></object>

  • 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.)
Read More..

Top 5 Best Gaming Mice Of 2015 By Qubimaxima



Links To All The Products In This Video.

Roccat Tyon - http://amzn.to/1BhCdun

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

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/

IFTTT

Put the internet to work for you.

Turn off or edit this Recipe

Read More..

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.
PS >dir >. est.txt
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


    Directory: C:dir


Mode                LastWriteTime     LengthName
----                -------------     ----------
-a---         11/2/2012  11:14 PM       6572 test.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 >Clear-Content -Path. est.txt
To verify it did the job, we call Get-ChildItem again which displays a .length property of 0.
PS >dir . est.txt


    Directory: C:dir


Mode                LastWriteTime     LengthName
----                -------------     ----------
-a---         11/2/2012  11:15 PM          0 test.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.

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>]
For the first set the parameters are:
  • Path
  • Credential
  • Exclude
  • Filter
  • Force
  • Include
  • Confirm
  • WhatIf
  • UseTransaction
The second parameter set has the following choices:
  • 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 the–Include 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.
Read More..

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

Mozilla inside Mozilla

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

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/

IFTTT

Put the internet to work for you.

Turn off or edit this Recipe

Read More..

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






====================================
Read More..

Explore more with Mapping with Google



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 world’s 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, you’ll 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, you’ll 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, you’ll have the option to complete a project, applying the skills you’ve 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 Google’s mapping tools.
Read More..

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

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

From Pixels to Actions Human level control through Deep Reinforcement Learning



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 score—for 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 episodes—a 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.
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 products—imagine 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..

Fl Studio Tutorials By MastersunTutorials



Fl Studio Tutorials By MastersunTutorials.


SHARE BY GK
Computer Knowledge
Read More..

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:
function Test-Uri
{
      <#
            .NOTES
                  Author: Will Steele
                  Last Modified Date: 07/27/2012
                 
            .EXAMPLE
                  Test-Uri -Uri http://www.msn.com
                  True
           
            .EXAMPLE
                  Test-Uri -Uri http:/hax0r.com
                  False
      #>
     
      param(
            [ValidateNotNullOrEmpty()]
            [String]
            $Uri 
      )
     
      if([System.Uri]::IsWellFormedUriString($Uri, [System.UriKind]::RelativeOrAbsolute))
      {
            [System.Uri]::TryCreate($Uri, [System.UriKind]::RelativeOrAbsolute, [ref] $uri)
      }
      else
      {
            $false
      }
}
The two key lines here are the  IsWellFormedUriString and  TryCreate . You can get more details about how these work from MSDN.

  • 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.
Read More..

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/

IFTTT

Put the internet to work for you.

via Personal Recipe 895909

Read More..

Reference books for B Sc IT Mumbai V VI sem



Read More..

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.


 
Copyright 2009 Information Blog
Powered By Blogger