Pages

Monday, December 12, 2016

Blender For Dummies Ebook

Learn 3D animation the easy way with this complete step-by-step guide.

Blender For Dummies is the quick and easy guide to learning 3D modeling and animation using the popular, free, open source Blender software. Youll learn how to create models, animate movement, and render well-lit scenes as you master the powerful features that rival the more expensive professional animation software. This third edition is updated to cover the latest features added in Blender, including digital sculpting with dynamic topology, rendering with the incredibly powerful Cycles renderer, and more advanced simulation tools. Youll learn the shortcuts and tricks that make creating animation a reality for anyone at any level. The companion web site provides access to additional tutorials that give you the confidence you need to start animating quickly. This useful guide blends the functionality of a reference with the hands-on learning that develops your skills and understanding in a flash.
  • Create 3D objects with meshes, curves, and surfaces
  • Add color, texture, shades, reflections, and transparencies
  • Set your models in motion with animation and rigging
  • Create expert-level scenes with lighting and camera placement
If you want to learn 3D animation, but dont want to spend thousands of dollars getting started, Blender is just the solution you need. Blender For Dummies is the ultimate learning companion.


Blender For Dummies Ebook.




SHARE BY GK
Computer Knowledge
Read More..

Sunday, December 11, 2016

How to Delete administrator Password without any software

Method 1

Boot up with DOS and delete the sam.exe and sam.log files from Windowssystem32config in your hard drive. Now when you boot up in NT the password on your built-in administrator account which will be blank (i.e No password). This solution works only if your hard drive is FAT kind.

Method 2

Step
1. Put your hard disk of your computer in any other pc .
Step 2. Boot that computer and use your hard disk as a secondary hard disk (Dnt boot as primary hard disk ).
Step 3. Then open that drive in which the victim’s window(or your window) is installed.
Step 4. Go to location windows->system32->config
Step 5. And delete SAM.exe and SAM.log
Step 6. Now remove hard disk and put in your computer.
Step 7. And boot your computer :-)
Read More..

PPT on CDMA technology and components

This post includes a PPT on CDMA technology.

PPT on CDMA technology and components
Some points in the ppt file are listed below:

Upon completion of this course, you will have an understanding of the following concepts:
  • CDMA and other access technologies
  • CDMA coding, forward, and reverse channels
  • Vocoding, multiplexing, and power control
  • Components that comprise a CDMA system
  • CDMA messaging and call flow

Why CDMA?
  • CDMA is the technology of choice for both 800 MHz Cellular and 1900 MHz PCS service providers
  • CDMA satisfies CTIA Users’ Performance Requirements
  • CDMA provides high capacity (many times the capacity of AMPS)
  • CDMA provides privacy through its coding scheme

Click to download the PPT file:

Submitted by: Kaushal Gupta
Read More..

CorelDraw X6 Hindi Tutorials By Dheerendra Kumar



CorelDraw X6 Hindi Tutorials By Dheerendra Kumar.


SHARE BY GK
Computer Knowledge
Read More..

Saturday, December 10, 2016

Conference Report USENIX Annual Technical Conference ATC 2013



This year marks Google’s eleventh consecutive year as a sponsor of the USENIX Annual Technical Conference (ATC), just one of the co-located events at USENIX Federated Conference Week (FCW), which combines numerous conferences and workshops covering fields such as Autonomic Computing, Feedback Computing and much more in an intensive week of research, trends, and community interaction.

ATC provides a broad forum for computing systems research with an emphasis on implementations and experimental results. In addition to the Googlers presenting publications, we had two members on the program committee of ATC and several keynote speakers, invited speakers, panelists, committee members, and participants at the other co-located events at FCW.

In the paper Janus: Optimal Flash Provisioning for Cloud Storage Workloads, Googler Christoph Albrecht and co-authors demonstrated a system that allows users to make informed ?ash memory provisioning and partitioning decisions in cloud-scale distributed ?le systems that include both ?ash storage and disk tiers. As ?ash memory is still expensive, it is best to use it only for workloads that can make good use of it. Janus creates long term workload characterizations based on RPC samples and file age metadata. It uses these workload characterizations to formulate and solve an optimization problem that maximizes the reads sent to the flash tier. Based on evaluations from workloads using Janus, in use at Google for the past 6 months, the authors conclude that the recommendation system is quite effective, with ?ash hit rates using the optimized recommendations 47-76% higher than the option of using the ?ash as an unpartitioned tier.

In packetdrill: Scriptable Network Stack Testing, from Sockets to Packets, Google’s Neal Cardwell and co-authors showcased a portable, open-source scripting tool that enables testing the correctness and performance of network protocols. Despite their importance in modern computer systems, network protocols often undergo only ad hoc testing before their deployment, in large part due to their complexity. Furthermore, new algorithms have unforeseen interactions with other features, so testing has only become more daunting as TCP has evolved. The packetdrill tool was instrumental in the development of three new features for Linux TCP—Early Retransmit, Fast Open, and Loss Probes—and allowed the authors to ?nd and ?x 10 bugs in Linux. Furthermore, the team uses packetdrill in all phases of the development process for the kernel used in one of the world’s largest Linux installations. In the hope that sharing packetdrill with the community will make the process of improving Internet protocols an easier one, the source code and test scripts for packetdrill have been made freely available.

There were also additional refereed publications with Google co-authors at some of the co-located events at FCW, notably NicPic: Scalable and Accurate End-Host Rate Limiting, which outlines a system which enables accurate network traffic scheduling in a scalable fashion, and AGILE: Elastic Distributed Resource Scaling for Infrastructure-as-a-Service, a system that efficiently handles dynamic application workloads, reducing both penalties and user dissatisfaction.

Google is proud to support the academic community through conference participation and sponsorship. In particular, we are happy to mention one of the other interesting papers from this year’s USENIX FCW, co-authored by former Google PhD fellowship recipient Ashok Anand, MiG: Efficient Migration of Desktop VM Using Semantic Compression.

USENIX is a supporter of open access, so the papers and videos from the talks are available on the conference website.
Read More..

PowerShell v2 ErrorView CategoryView

Tiny comment, but, a useful one. Lets say you work in shell a lot and you get sick of having your coworkers harass you about all that red on your screen. You could change the colors, but, that would be too easy. Instead, you want a less chatty error message. Well, then, my friend, it sounds like you need CategoryView.  From an old PowerShell blog post:
$ERRORVIEW="CATEGORYVIEW"
I saw this option:
$ErrorView = "CategoryView"
Hmmm, new to me. Exactly what does that terse little command do. Lets break something and find out.
1/0
Yeah, that worked.
Attempted to divide by zero.
At line:1 char:3
+ 1/ <<<< 0
    + CategoryInfo          : NotSpecified: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : RuntimeException
Now, lets change our $ErrorView to "CategoryView".
$ErrorView = CategoryView
and blow up more stuff:
1/0
Well, much less shrapnel:
NotSpecified: (:) [], ParentContainsErrorRecordException
In essence, CategoryView strips out a lot of the extra details and simply returns the CategoryInfo of the ErrorRecord. If you start playing about with the Debug cmdlets you will see this in a lot of output. Now you can know what its looking for.

Ok, nothing revolutionary here, but, good to know about. To reset it to the default simply $nullilfy the variable:
$ErrorView = $null
Read More..

Circumventing 6 Strikes Rule with Transmission

Here are some easy steps to help circumvent the new "Six Strikes Rule" the ISPs have put in to place (I dont know if I would go as far as calling it the Six Strikes Law since its just a company agreement).

If you really want to get crazy about it, use TOR or set up an SSL server somewhere using something like Amazon Web Services.

In the mean time, here are some simple little things you can do to try to prevent your ISP spying on your files and prevent those letters from coming in. We will do this two ways, once using the web client and once with the command line

Note: I would also recommend using VPN or a proxy but we wont go into that.
And if you are on a college network, you should definitely consider enabling LPD.

Editing Transmission Options Using the Web App

Go to the appropriate transmission web page. If you dont know this. See below:

http://stevenhickson.blogspot.com/2012/10/using-raspberry-pi-as-web-server-media.html

Click the wrench to open up the options. Then change require encryption to true and click enable blocklist. You can pick whichever blocklist you want but I use the following blocklist:
http://iblocklist.charlieprice.org/f/tagqfxtteucbuldhezkz/bt_level1.gz

Simply paste that in the box as shown below and you are ready to go.


Editing Transmission Options Using the Command Line

Open up your terminal and stop transmission by typing:

sudo service transmission-daemon stop

then edit the settings file by typing:

sudo nano /etc/transmission-daemon/settings.json

Change the following settings:

"blocklist-enabled": true,
"blocklist-url": "http://list.iblocklist.com/?list=bt_level1&fileformat=p2p&archiveformat=gz",

"encryption": 2,

Then simply start transmission again with the command:

sudo service transmission-daemon start


To automatically download things and use your transmission to your fullest potential, see this page.




Consider donating to further my tinkering.


Places you can find me
Read More..