CyberLink PowerDirector 11 Tutorials



Tutorials & Demos of Cyberlink PowerDirector 11 Ultimate.


SHARE BY GK
Computer Knowledge
Read More..

Beginning Programming with Java for Dummies 4th Edition Ebook

A practical introduction to programming with Java Beginning Programming with Java For Dummies, 4 th Edition is a comprehensive guide to learning one of the most popular programming languages worldwide. This book covers basic development concepts and techniques through a Java lens. You?ll learn what goes into a program, how to put the pieces together, how to deal with challenges, and how to make it work. The new Fourth Edition has been updated to align with Java 8, and includes new options for the latest tools and techniques. Java is the predominant language used to program Android and cloud apps, and its popularity is surging as app demand rises. Whether you?re just tooling around, or embarking on a career, Beginning Programming with Java For Dummies, 4 th Edition is a great place to start. Step–by–step instruction, easy–to–read language, and quick navigation make this book the perfect resource for new programmers.You?ll begin with the basics before moving into code, with simple, yet detailed explanations every step of the way.

Topics include: Learn the language with sample programs and the Java toolkit Familiarize yourself with decisions, conditions, statements, and information overload Differentiate between loops and arrays, objects and classes, methods and variables The book also contains links to additional resources, other programming languages, and guidance as to the most useful classes in the Java API. If you?re new to programming languages, Beginning Programming with Java For Dummies, 4th Edition provides the instruction and practice you need to become a confident Java programmer.

Java for Dummies 4th Edition Ebook.




SHARE BY GK
Computer Knowledge
Read More..

PowerShell v3 Get Exported Objects from New WebServiceProxy

An old work project forced me to revisit the New-WebServiceProxy cmdlet. After talking to Trevor Sullivan (@pcgeek86) a bit I threw a post on Twitter and then the PowerShell Technet forums. My goal? Try to figure out what objects (classes) are exposed by my newly instantiated WebService proxy. After hacking at a bit, I came up with this (wrong) approach, but, it still showcases some fun usage of -replace and regex with the pipe (|) to allow multiple options to be matched/replaced.
$webservice = New-WebServiceProxy -Uri https://www.super.com/secret/classes.asmx -Namespace WillsWorld -Class IGotClass
This imports the classes exposed by the .asmx page, and, allows you to call from the current session. My initial take failed to take advantage of the -Namespace and -Class parameters, so, I was fighting ugly, dynamic type names on top of everything. Hint: use these options.

Once I have this loaded I figured I could parse the method signatures, and, extract the objects names. The following command got me a good bit along the way, but, again, still was lacking:
$webservice |
gm -membertype method |
select definition |
% {
      ($_ -replace "@|{|}|Definition=",) -split |(|)
} |
where {$_ -match WillsWorld} |
select -Unique |
sort
Chris Duck, fellow DFW-ite, gave me this alternative which is more to the point and accurate:
 $webservice.GetType().Assembly.GetExportedTypes()
I had played with the Assembly object, but, didnt know about the .GetExportedTypes() method. Thanks to these gentleman, I can now look at a new WebService proxy and know exactly what objects/classes I can use in addition to my methods, properties and events identified by Get-Member.
Read More..

Lock Folder Without any Software



1) Make New Folder And Name it what You want..

2) Now open that Folder and Right click in that

3) Now goto New > Text Document

4)Now Name it Lock.txt

Now copy and paste following Code in that notepad

cls
@ECHO OFF
title Patelsanjit.Blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== 1234567890 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End


5)After u copy the command go to line ( 23 ) u will find "1234567890" Change it to any password u want.

6)After that, save it as lock.bat (the text file will change to an application file)


7)Now go back to the folder & u will find a this locker.bat file.


8)Click on it & u will find a new folder called Private


9)Now copy what u want in it & after that go to locker.bat by clicking it, it will open and ask you if you want to lock your folder? Y/N ?


10)Type Y


11)If you want to UNLOCK your folder, go open locker.bat & type your password and the Private folder will be made visible again.


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

Marvin Minsky a founding father of AI dies

Marvin Minsky, one of the founding fathers of AI has died, aged 88. As a graduate AI student his book The Society of Mind was very influential on my understanding and approach to AI (I still have my copy on my office bookshelf). An article by MITs Technology Review does a good job of outlining his contributions, in AI and beyond, and "What Marvin Minsky Still Means for AI".

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

Flash CS4 All in One For Dummies Ebook

Ready to take your Flash skills to the next level? Learn how to use Adobe Flash CS4 to create innovative interactive experiences! Flash CS4 All-In-One For Dummies shows you how to create professional, cool projects, step by step, from start to finish.

Whether you’re working on your first Flash project or you’re a veteran Flash animator ready to get into more advanced applications, Flash CS4 All-In-One For Dummies walks you through Flash’s new tricks and explains how to use them. You’ll get the skinny on new features including inverse kinematics, motion tweening, and Motion Editor. You’ll also find out how to:
  • Work with panels
  • Take advantage of an ActionScript
  • Create and plan your first project
  • Follow the ins and outs of Flash graphics
  • Navigate your way around the swatches panel
  • Get your video on the Web using YouTube
  • Utilize Flash audio and video
  • Develop with the Flash timeline
To help you quickly find what you need, Flash CS4 All-In-One For Dummies is divided into eight minibooks:
  • Introducing Flash
  • Creating Graphics
  • Animating Graphics
  • Adding ActionScript 3.0 Magic
  • Working with Flash Audio
  • Working with Flash Video
  • Getting Interactive
  • Finalizing a Flash Project
Flash CS4 All-In-One For Dummies will help make your experience animating in Flash much easier!


Flash CS4 All-in-One For Dummies Ebook.




SHARE BY GK
Computer Knowledge
Read More..

PowerShell v2 Function Get TypeAccelerators

I totally pilfered this from Hal who seems to have gotten it from Shay Levy.  All I am doing here is wrapping it in a function so I can get it more easily when I want to remember what I can use:
function Get-TypeAccelerators {
[PSObject].Assembly.GetType(System.Management.Automation.TypeAccelerators)::Get.GetEnumerator() | sort key | select key
}
This is totally a place holder so I can remember it later. Not pretending I came up with it...
Read More..