Wednesday, July 18, 2012

Green House Share Slide

Original page share form slideshare.net

<iframe src="http://www.slideshare.net/slideshow/embed_code/13302063" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="http://www.slideshare.net/arman_muh/greenhouse-control-by-ar-an-overview" title="Greenhouse control by ar (an overview)" target="_blank">Greenhouse control by ar (an overview)</a> </strong> from <strong><a href="http://www.slideshare.net/arman_muh" target="_blank">Muhammad ARMAN</a></strong> </div>

Nice Share for Public with the topic Greenshouse control

Sunday, April 8, 2012

Newbie Guide Howto Use PPA Purge

Have you ever upgraded an application via PPA that makes trouble? For example, upgrading Firefox that causes add-ons incompatibility and you want to have your "old" version back? If so, you are in the right place. Today, I'd like to write a post intended for newbie in Linux on how to use PPA Purge. What is PPA Purge? It's an application which lets you to downgrade your installed application to its "original" version from Ubuntu repository. It is like a first-aid-kit when you are going mad encountering many problems after upgrading application from PPA Launchpad.



Installing on Ubuntu
PPA Purge is available in official Ubuntu repository, so you can install it by typing the following command:
  • sudo apt-get install ppa-purge
How To Use PPA Purge
For example, you've upgraded Mozilla Thunderbird from PPA with this command:
  • sudo add-apt-repository ppa:mozillateam/thunderbird-next
To downgrade Mozilla Thunderbird from the above PPA, you should run this command:
  • sudo ppa-purge ppa:mozillateam/thunderbird-next
PPA Purge will automatically remove Mozilla Thunderbird which is installed from PPA and then install the "original" version of Mozilla Thunderbird from Ubuntu repository.

"Unfortunately, I forget what PPA I've used to install the app?" Well, you should make use of "history" command on Terminal combined with "grep" function. Here's the example:
  • history | grep add-apt-repository
The output of the above command is shown below


Now you have a comprehensive list of  "add-apt-repository" commands you've typed on Terminal. They can help you to remember what PPA you've used to install certain application.

Regards :)

Intinya : meng-uninstall repository atau ppa yang kita pasang

source : http://www.ubuntubuzz.com/2012/02/newbie-guide-how-to-use-ppa-purge.html

 

Blocking a Website or domain name on Ubuntu Linux

 

There are lot of softwares available in the market – just to make some websites inaccessible from a computer, possibly for productivity reasons e.g blocking facebook, (facebook is killing productivity ? but I don’t think it’s good way, as I promote free speech, free information and of course,freedom!) or to filter out the sites having contents, which may not be suitable for some users (e.g if you want to block porn sites, to make it inaccessible for kids) or simply to block useless spam sites. Anyway, in this post, you will learn – how to block websites or domains in just a couple of click, without any third party softwares – in an efficient way.

Blocking a website or domain name on Ubuntu

Although, I’m using Ubuntu 11.10, but it should work fine with older (11.04/10.10/10.04..) or newer versions(12.04/12.10..) of Ubuntu, not only on Ubuntu but also on other Linux distributions such as Linux Mint, Fedora, OpenSuse, PCLinuxOS, etc. Just follow the simple steps -

Editing Hosts file using Nano

step #1 : Open a terminal (Ctrl+Alt+t) and execute the following command -

sudo gedit /etc/hosts

OR

sudo nano /etc/hosts

if you prefer command line text editor and it’s more convenient to use in this case.

step #2 : Then add the following line to the file and click on Save (or Ctrl+s) orCtrl+x, followed by ‘y‘ if you’re using nano text editor (one of the most popular command line text editor, like vim)

127.0.0.1               domaintoblock.com

where domaintoblock.com is a sample domain name which you want to block.

step #3 : That’s all, you’re done! Now open a browser and type the domain name (website address) you specified in above step -

domaintoblock.com => Then you will get an error page such as the it couldn’t be connected to the server or the default server page of your local server (if you’ve installed apache2).

If the domain name is still not blocked then try to flush DNS cache using the nscd (Name Service Cache Daemon).

sudo apt-get install nscd
sudo /etc/init.d/nscd restart

That’s All :)

NOTE : The file system directories shouldn’t be writable for the users for which you have blocked the sites, because in that case they can easily revert the changes, so they shouldn’t be in sudoers or super user groups (add those users in somewhat less powerful group).

source : http://blog.sudobits.com/2012/01/13/how-to-block-a-website-domain-in-ubuntu/

 

Referensi command Line FFmpeg ubuntu linux

 

Berikut ini adalah contoh penggunaan dari FFmpeg yang dapat dijadikan refferensi untuk di implementasikan, believe me.. asyik :

Getting Information of video/audio file (mendapatkan informasi dari sebuah file video)

  • ffmpeg -i video.avi
Encoding a video for iPod/iPhone (avi to mp4)
  • ffmpeg -i input_video.avi input -acodec aac -ab 128kb -vcodec mpeg4 -b 1200kb -mbd 2 -flags +4mv+trell -aic 2 -cmp 2 -subcmp 2 -s 320x180 -title X output_video.mp4
Encoding  video for the PSP (avi to mp4)
  • ffmpeg -i input_video.avi -b 300 -s 320x240 -vcodec xvid -ab 32 -ar 24000 -acodec aac output_video.mp4
Penggunaannya  :
source file dan hasil silahkan disesuaikan formatnya (mpeg, flv, others),
    Source : input_video.avi
    Audio codec : aac
    Audio bitrate : 128kb/s
    Video codec : mpeg4
    Video bitrate : 1200kb/s
    Video size : 320px par 180px
    Generated video : output_video.mp4

Extracting Video to Mp3
  • ffmpeg -i input.avi -vn -ar 44100 -ac 2 -ab 192 -f mp3 output.mp3
Convert avi  to mpg
  • ffmpeg -i input_video.avi output_video.mpg
Convert avi to gif (a moving picture)
  • ffmpeg -i input_video.avi output_gif.gif
Menambahkan  sound to a video (dubbing)
  • ffmpeg -i sound.wav -i input_video.avi output_video.mpg
Convert avi to flv 
  • ffmpeg -i input_video.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv output_video.flv
  • ffmpeg -i input_video.flv output_video.avi
Convert/Compress avi to divx
  • ffmpeg -i video_origine.avi -s 320x240 -vcodec msmpeg4v2 video_finale.avi
Convert avi to mpeg for dvd players
  • ffmpeg -i input_video.avi -target pal-dvd -ps 2000000000 -aspect 16:9 output_video.mpeg

instalasi dan contoh penggunaan dan penjelasan lainnya 

FFMPEG Ubuntu Linux

ffmpeg

 

Instalasi

sudo apt-get install ffmpeg



Fitur dari ffmpeg

  • menggunakan command line ffmpeg (terminal) sebagai tool untuk mengkonversi video. Dapat digunakan sebagai pendukung grabbing dan encoding pada TV card
  • dengan command line ffserver (kebetulan RTSP sedang di kembangkan) dijadikan multimedia streaming server untuk live broadcasts
  • dengan menggunakan ffplay dapat dijadi media player yang sederhana yang didukung library dari FFmpeg
  • menggunakan libavcodec dan libavformat yang mempunyai dukungan yang lengkap.



contoh penggunaan

ffmpeg -i contoh.flv -ab 56 -ar 22050 -b 500 -s 320×240 contoh.mpg
dapat digunakan dengan sebaliknya

  • b bitrate : set video bitrate (default = 200 kb/s)
  • ab bitrate : setting audio bitrate (default=64)
  • ar sample rate : setting untuk samplerate dalam Hz (default44100 Hz)
  • s size : setting untuk gedenya format (Wide x Height) (default 160x128)

 

Sunday, April 1, 2012

This is a guest post by Ramkarthik. You can read more of his tips on blogging and making money online onBlogging Tune.

1. Close Every Other Application

2. Do Research Before Writting

3. Prepare in Schedule

4. Proof Read at Least Once

5. Do Editing till You Satisfied

Do you sit in front of computer for a long time to create a single blog post or article? Does it take too much thinking for you to come up with an effective article? If your answer was ‘yes’ to any of these questions, you should continue to read the post. Whether you are a blogger or a freelance writer or an article marketer, you need to write effective articles quickly. If you are doing one of those as a full time job, you must really use your time properly and try to write more articles in less time. Here are few things you should do when you sit to write an article or blog post.

1. Close Every Other Application

Ever installed any software? Few of them ask you to close other applications when installing it. The same should be followed when you sit to write an article. Close the chat client first. This is probably the one which eats up most of your time. Next, close your email client. Don’t have any other application open, other than your writing software. You should not open any of the applications when you are writing the article. You can open your browser when you want to look for some reference, but close it again as soon as you are done. Don’t check your blog traffic stats, AdSense earnings or anything else as well.

2. Do Research Before Writing

It is always better to do a little research before writing the article. This will help you to write an effective article. The quality of the article will show clearly that you have researched. Almost every blog post that hits the front page of social bookmarking sites is well researched and structured. By doing research, you also make your article longer and in depth.

3. Prepare a Schedule

Preparing a schedule will help you in saving time. Set a time for each and everything you do for the article. You can allocate 30 minutes or whatever you are comfortable with, for writing the article itself. Set 5 minutes for selecting an image. Also have 10-15 minutes for collecting references and coming up with a catchy headline. Within an hour, you should be able to create some top notch content.

4. Proof Read At Least Once

This is very important and most people skip this due to lack of time (or patience). This will prove to be costly when you are writing for some other person or for a client. Once you finish writing the post, read it once. If you have written many articles and don’t have time to proof read all of them, hire a person to do the work for you.

5. Do the Editing Till You Are Satisfied

Once you have completed writing the article, do the formatting works. Place the image at the right place. Give credit to the image author if needed. Preview the article. If it is what you wanted, publish the article. If not, continue with your editing and formatting. Add quotes to the post to make it more effective. Tie any loose ends.

Writing quality articles in short time is not an easy task, but if you prepare yourself and use a structured process soon you will be cranking paragraphs like there is no tomorrow!

4 Steps to Increase Your Blog Traffic

 

 

One of the most common complaints that I hear from bloggers is the fact that no matter how hard they try, they can’t grow their blogs past 100 or so daily page vies. Those early days are indeed the hardest, because you need to put hard work in without the certainty of achieving results.

If you are in that same situation, here is a simple strategy that will certainly increase your blog traffic and make you break the 1,000 daily page views mark. In fact, the strategy could be used even if your are already over that number but have reached a traffic plateau lately.

Just make sure to execute the 4 steps as planned and to spend the two hours and a half every day (obviously if you have more time available you can expand the time spent on each of the four steps proportionally).

First Step: Killer Articles (1 hour per day)

Spend one hour brainstorming, researching and writing killer articles (also called linkbaits, pillar articles and so on).

Notice that your goal is to release one killer article every week. If that is not possible aim for one every 15 days. So the one hour that you will spend every day will be dedicated to the same piece. In other words, expect killers articles to take from 5 up to 10 hours of work.

If you are not familiar with the term, a killer article is nothing more than a long and structured article that has the goal of delivering a huge amount of value to potential visitors. If you have a web design blog, for example, you could write an article with “100 Free Resources for Designers”. Here are some ideas for killer articles:

  • create a giant list of resources,
  • write a detailed tutorial teaching people how to do something,
  • find a solution for a common problem in your niche and write about it, or
  • write a deep analysis on a topic where people have only talked superficially

When visitors come across your killer article, you want them to have the following reaction: “Holy crap! This is awesome. I better bookmark it. Heck, I better even mention this on my site and on my Twitter account, to let my readers and friends know about it.”

Second Step: Networking (30 minutes per day)

Networking is essential, especially when you are just getting started. The 30 minutes that you will dedicate to it every day could be split among:

  • commenting on other blogs in your niche,
  • linking to the posts of bloggers in your niche, and
  • interacting with the bloggers in your niche via email, IM or Twitter.

Remember that your goal is to build genuine relationships, so don’t approach people just because you think they can help to promote your blog. Approach them because you respect their work and because you think the two of you could grow together.

Third Step: Promotion (30 minutes per day)

The first activity here is the promotion of your killer articles. Whenever you publish one of them, you should push it in any way you can. Examples include:

  • letting the people in your network know about it (don’t beg for a link though),
  • letting bloggers and webmasters in relevant niches know about it,
  • getting some friends to submit the article to social bookmarking sites,
  • getting some friends to Twitter the article, and
  • posting about the article in online forums and/or newsgroups.

If there is time left, spend it with search engine optimization, social media marketing and activities to promote your blog as whole. Those can range from keyword research to promoting your blog on Facebook and guest blogging.

Fourth Step: Normal Posts (30 minutes per day)

Just like a man does not live by bread alone, a blog does not live by killer articles alone. Normal posts are the ones that you will publish routinely in your blog, between the killer articles. For example, you could publish a killer article every Monday and normal posts from Tuesday through Friday. Here are some ideas for normal posts:

  • a post linking to an article on another blog and containing your opinion about it
  • a post informing your readers about a news in your niche
  • a post asking a question to your readers and aiming to initiate a discussion
  • a post highlighting a new resource or trick that you discovered and that would be useful to your readers

While killers articles are essential to promote your blog and bring new readers aboard, normal posts are the ones that will create diversity in your content and keep your readers engaged.

 

Install Notepad++ di Linux (cq. Ubuntu)

Notepad++ merupakan text editor yang menurut saya sangat berguna dan luarbiasa, hal penting lainnya dia "Free" alias gratis (jadi gak ada acara crack meng crack segala).

Versi yang diperuntukkan untuk linux tidak tersedia untuk itu terima kasih buat wine (program untuk menjalankan program atau software windows di lingkungan linux) .

Berikut cara untuk menginstall :

Pertama  :  Download versi terbaru dari Notepad++ di sini  notepad-plus-plus.org/download/ silahkan pilih sesuai selera bentuk file yang diinginkan (suggest : exe biar gak ribet)

Kedua     : Copy file tersebut ( Mau Cut juga gak apa2) ke folder tempat wine di spesifik folder system32 berada. Misalnya Kalau punya saya di .wine/drive_c/windows/system32 (hal ini memudahkan untuk instalasi melalui proses selanjutnya)

Ketiga  : jalankan di terminal (command)

wine npp.5.8.5.Installer.exe

 

 

Friday, March 30, 2012

Introduction to the Canon EOS 550D Rebel T2i

Introduction to the Canon EOS 550D  or Rebel T2i
Introduction to the Canon EOS 550D Rebel T2i 
English | Audio: aac, 48000 Hz, 143 kb/s | Video: h264, yuv420p, 854x480, 655 kb/s | 1.86Gb
Genre: eLearning / Photography



Push your creativity to the limit with the Canon T2i / 550D! Create photographic images that, up until now, have existed only in your imagination.

This guide takes you through Canon’s advanced features and explains what they are, how they work, and how they can perform in real-world situations.

Advanced camera settings: The T2i / 550D is endlessly configurable. We go into detail about the settings that can have the most impact on your shooting. We also address the topics of Live View and the T2i’s video capabilities.

Canon Speedlites and flash photography: We discuss choices and settings you can use to control pop-up Speedlites, external flash units, and natural lighting.

Color properties and settings: You will learn how to control color properties, and how to build new Picture Styles for your camera. In our color management section, we address the issue of maintaining authentic color throughout the digital image workflow, from choosing a color space, through post-processing on a computer monitor, all the way to the printed output.

The Canon T2i / 550D is known for its limitless flexibility. We take this marvelous camera into the real world and tie its settings and configurations to the subject, the physical environment, and the equipment you are carrying. By the time you finish watching this presentation, you will have the know-how that allows you to concentrate on the most important task of all: capturing the image you want, the way you see it.

Screenshot
Introduction to the Canon EOS 550D  or Rebel T2i

CG Academy - HLSL Shader Creation 1: HLSL Fundamentals

CG Academy - HLSL Shader Creation 1: HLSL Fundamentals

CG Academy - HLSL Shader Creation 1: HLSL Fundamentals
English|Instuctor: Ben Cloward| 3h 14m| .ISO| 1.46GB
Genre: Video Training


In the first of our Advanced, 3 DVD series on HLSL Shader writing within 3dsmax, Ben Cloward will give you an understanding of what a HLSL shader is. How a shader can be created with free software, edited and then displayed within 3dsmax. Fundamental programming concepts such as Data Types, Structs and Functions. How to create a shader GUI, the basic framework of a HLSL shader and much much more. By the close of the DVD, Ben will have you writing your own basic HLSL shaders.
This DVD is an ideal introduction to the world of HLSL shader writing for real-time GPU based shaders. An understanding of basic programming concepts and 3D math is useful. (For those needing 3D tutorship, see The Matrix: Explained by Borislav Petrov.

CH 01: What is HLSL?
Ben explains what HLSL is and why its useful to learn how to use it.

CH 02: The Graphics Pipeline
Then he gives a run through of a typical pipeline on current video cards. Explaining where the different elements of HLSL shaders come in to play.

CH 03: Shader Writing Setup
Ben then shows how to setup 3dsmax and 3rd party software to create an intuitive and fast shader development environment.

CH 04: Basic Programming: Data Types
Now we look at some of the fundamentals concepts of programming in HLSL. Ben starts with Data Types.

CH 05: Basic Programming: Structs
Then he moves on to explain Structs.

CH 06: Basic Programming: Functions
And Ben wraps up this section by looking at how Functions work in HLSL.

CH 07: FX Framework: The User Interface
HLSL shaders have a standard framework in which they should be created. This is known as the FX Framework. Here Ben explain the GUI elements of that framework.

CH 08: FX Framework: Input & Output Structs
We then look at the Input and Output Structs of the FX Framework.

CH 09: FX Framework: Vertex & Pixel Shaders
Then we look at the main "meat" of the FX Framework, the Vertex and Pixel Shaders.

CH 10: FX Framework: Techniques & Passes
And we finish this section by exploring Techniques and Passes.

CH 11: Creating Simple Shaders
With the FX Framework under our belt we now have the tools to attempt creating simple shaders. Here Ben shows you how to create a very simple shader to get the ball rolling.

CH 12: A Diffuse Shading Model
And we complete the DVD by looking at how we can simulate Diffuse lighting in a shading model . Then Ben shows us how to implement this in our simple shader. We now have our first functional HLSL shader.

Website:http://www.cg-academy.net/es_catalog/product_info.php?products_id=64

CG Academy - HLSL Shader Creation 1: HLSL Fundamentals

 

CreativeLive - Posing Masterclass With Bambi Cantrell Day 1

CreativeLive - Posing Masterclass With Bambi Cantrell Day 1 (2012)

CreativeLive - Posing Masterclass With Bambi Cantrell Day 1 (2012)
English | h264 960x540 2461 kb/s 300.00 fps | aac 44100 Hz 110 kb/s | 6.83 GB
Genre: Video Training

Bambi Cantrell returns to creativeLIVE in 2012 for this special workshop. Join Bambi for a look at the craft of running a successful portrait studio and wedding business. In her 25+ years of photographing professionally, Bambi has mastered the art of posing, lighting, marketing and business. Bambi will share secrets of how she continues to innovate in her photography and business in true Bambi style.

More:http://www.creativelive.com/courses/wedding-and-portrait-photography-bambi-cantrell

CreativeLive - Posing Masterclass With Bambi Cantrell Day 1 (2012)

Jacques Pepin - Essential Pepin: More than 700 all-time favorites from my life in food

Jacques Pepin - Essential Pepin: More than 700 all-time favorites from my life in food

Jacques Pepin - Essential Pepin: More than 700 all-time favorites from my life in food | 2.90 GB


For the first time ever, the legendary chef collects and updates the best recipes from his six-decade career. With a searchable DVD demonstrating every technique a cook will ever need.

In his more than sixty years as a chef, Jacques Pepin has earned a reputation as a champion of simplicity. His recipes are classics. They find the shortest, surest route to flavor, avoiding complicated techniques.

Now, in a book that celebrates his life in food, the world's most famous cooking teacher winnows his favorite recipes from the thousands he has created, streamlining them even further. They include Onion Soup Lyonnaise-Style, which Jacques enjoyed as a young chef while bar-crawling in Paris; Linguine with Clam Sauce and Vegetables, a frequent dinner chez Jacques; Grilled Chicken with Tarragon Butter, which he makes indoors in winter and outdoors in summer; Five-Peppercorn Steak, his spin on a bistro classic; Meme's Apple Tart, which his mother made every day in her Lyon restaurant; and Warm Chocolate Fondue Souffle, part cake, part pudding, part souffle, and pure bliss.

Essential Pepin spans the many styles of Jacques's cooking: homey country French, haute cuisine, fast food Jacques-style, and fresh contemporary American dishes. Many of the recipes are globally inspired, from Mexico, across Europe, or the Far East.

In the accompanying searchable DVD, Jacques shines as a teacher, as he demonstrates all the techniques a cook needs to know. This truly is the essential Pepin.

Jacques Pepin - Essential Pepin: More than 700 all-time favorites from my life in food

 

FXphd ZBR201 - Modeling with ZBrush

FXphd ZBR201 - Modeling with ZBrush
FXphd ZBR201 - Modeling with ZBrush 
Language: English | AVC1 1024x768 | MP3 128 Kbps | 980Mb
Genre: eLearning



This course, taught by Siju Thomas is going to focus on learning to sculpt with an artistic perspective. The course will be grounded in anatomically accurate sculpture of a humanoid creature form?a hunter turned were-lion or a gorilla-man. We will be building a character from inside out finishing the body and then finishing the cloth all as separate parts. I love the idea of learning the app through a project - it's really the best way.

Download: 

 

TekPub - Mastering C# 4.0 with Jon Skeet

TekPub - Mastering C# 4.0 with Jon Skeet (2011)
TekPub - Mastering C# 4.0 with Jon Skeet (2011)
English | Duration: 6h 43m | FLV | 852x480 | 25fps 831kbps | MP3 128kbps | 2.7GB
Genre: eLearning


If you're just learning Microsoft's flagship language - or if you've been at it for years - this production will teach you a lot. Jon Skeet is well-known as the "Chuck Norris" of StackOverflow.com with inhuman skills when it comes to answering questions about C# 4.0. Tap his brain and learn the language like never before with our all-new series.

Includes:
1 - What's New With 4.0?
In this episode we'll take a quick tour of all the new goodies in C# 4.0 - showing you why you should care about this latest rev of the language. This is a summary episode only - we'll dive deep into each topic later on.
2 - Basics: The Coding Environment
In this episode Jon gives you a quick tour of Visual Studio 2010 - the place where you'll write your code most often. This is a beginner episode, for those who have not worked with Visual Studio before.
3 - Basics: Writing Your First Class
In this episode Jon starts from the ground up - writing a C# class and then testing it with NUnit. Along the way he'll talk about various details related to classes and things to look out for. Even if you're a seasoned C# developer - going over the basics never hurts - and Jon might drop some pearls of wisdom along the way!
4 - Basics: Methods, Constructors, and Exceptions
In this episode Jon covers the actions and behaviours that you can program for a C# Class. This is a beginner's episode, but there is plenty in here for seasoned developers as well.
5 - Basics: Class Properties and Structure
In this episode Jon shows you how to work with Property assignments in C# and how you can set them up to convey specific behaviour of your class. This is a beginner's episode - but there's a lot in here that would make for a good review for any C# developer.
6 - Basics: Integers and Operators
In this episode Jon talks about integers and the different "shades of int" you find in C# 4.0. He also talks about reference vs. value types, and various operators you can use when doing some math in C#.
7 - Decimals and Floating Points
In this episode Jon walks through the various issues you might encounter when dealing with decimals and floating-point numbers. It's not straightforward in C#, and Jon gives you practical advice on when and how to use the various types in C#.
8 - Strings: Equality, Interning, and Concatenation
In this episode (the first of a small series on Strings) Jon takes a look at the beloved, intense, misunderstood and vast System.String class. He'll walk you through Equality - how to tell if a string truly equals another, Interning and if you should care about it, and Concatenation: when do you need a StringBuilder?
9 - String Manipulation
In this episode Jon shows you how to manipulate strings using Substring, IndexOf and Split.
10 - Regular Expressions
In this episode Jon walks you through 3 scenarios where Regular Expressions can help - and also hurt. Simple string replacement and matching, as well as a more complicated example of log parsing.
11 - Encoding
In this episode Jon shows you the various ways that C# represents strings and how you can manipulate encodings.
12 - Cultures
In this ever-so-brief episode Jon shares his experience with "The Turkey Test" - and ways to deal with Cultures and strings. It's short, but it's very valuable.
13 - Dates and Time
In this episode Jon dives deep into Timespan and DateTime - and how the .NET framework designers dealt with the interesting ways that humans deal with time.
14 - Conditions and Loops
In this episode Jon dives into controlling the flow of execution in your application using structures such as if/else, for, while, and break/continue. 

More info:
_http://tekpub.com/productions/csharp4

Sceenshot:
TekPub - Mastering C# 4.0 with Jon Skeet (2011)

 

TotalTraining.com - Adobe Flash CS3 Professional Essentials

Total Training - Adobe Flash CS3 Professional Essentials
TotalTraining.com - Adobe Flash CS3 Professional Essentials | 8.5 Hrs, 2 DVD | 4.1 GB
Genre: eLearning



Give your website a new look! Now is the time to give it a zap of creativity with animated objects and sound effects. Whether you are a web designer or game developer, you will learn the necessary techniques to get your project rolling. Discover how to design fun, creative, interactive websites through structured and easy to follow lessons. With help from a pro, you'll be able to expand your knowledge as you learn to utilize all of the amazing techniques with Adobe Flash CS3.

DVD1
Lesson 1: GETTING STARTED (54 min)
1. Moving around in the Workspace
2. Using the Basic Drawing Tools
3. Comparing Vector & Bitmap Graphics
4. Selecting Elements on the Stage
5. Using Groups
6. Using Drawing Object Mode
7. Using Layers
8. Using the Transform Tools
Lesson 2: USING THE VECTOR DRAWING TOOLS (79 min)
1. Understanding the Basics of Vectors
2. Creating Curved Lines
3. Combining Corner & Smooth Points
4. Adding, Deleting & Converting Anchor Points
5. Switching between the Pen Tools on the Fly
6. Drawing with the Pen Preview Enabled
7. Using the Free-Form Tools
8. Controlling Strokes & Fills
9. Expanding on Strokes & Fills
10. Modifying Strokes
11. Using the Color Mixer Panel
12. Working with Gradients
13. Creating Symbols
14. Adjusting Symbol Properties
Lesson 3: IMPORTING GRAPHICS (60 min)
1. Importing Bitmaps
2. Compressing Bitmaps
3. What Affects Bitmap Compression
4. Making Movie Clips from Bitmaps
5. Using a Bitmap Fill
6. Importing from Photoshop®
7. Masking Layers
8. Tracing a Bitmap
9. Importing Illustrator® Files
Lesson 4: ANIMATING VIA THE TIMELINE (64 min)
1. Introducing Frame Animation
2. Adding & Removing Frames
3. Adding Keyframes
4. Animating with Keyframes
5. Moving Keyframes
6. Copying & Pasting Keyframes
7. Creating a Motion Tween
8. Setting Tweens
9. Fixing a Bad Tween
10. Applying Tweens
11. Creating a Shape Tween
12. Applying Shape Hints
13. Creating Additional Movie Clips
14. Using a Path in a Tween
Lesson 5: WORKING WITH TEXT (61 min)
1. Installing Fonts
2. Using Grids & Guides
3. Creating a Web Layout from a Photoshop File
4. Importing a Photoshop File into Flash
5. Saving a Template
6. Using the Text Tool
7. Working with Text Properties & Filters
8. Explaining Anti-Alias & Font Settings
9. Animating Text
10. Setting Up the Contact Page
11. Separating Text Characters
12. Animating Letters
13. Looking at the Dynamic Text Field
14. Creating a Scrollbar
15. Final Comments & Credits

DVD2
Lesson 1: CREATING INTERACTIVE BUTTONS (74 min)
1. Creating Buttons
2. Programming Button States
3. Building a Multi-Layer Button
4. Modifying the Color of Other Button States
5. Make Buttons from Movie Clips & Add a Glow Effect
6. Add Actions to the Timeline in the Actions Panel
7. Adding Actions to Buttons in the Behaviors Panel
8. Importing Text from a Photoshop® File
9. Setting Up Website Navigation
10. Loading External SWF Files
11. Creating a SWF File to Load into the Home Movie
12. Adding External Loads to Keyframes
Lesson 2: INCLUDING SOUND (34 min)
1. Introducing Sounds
2. Setting Up Sound Properties
3. Adding Sound to the Timeline
4. Setting Keyframe Sound Properties
5. Using the Sync Settings
6. Adding Sounds to Buttons
7. Controlling Sound Using Behaviors
Lesson 3: INCLUDING VIDEO (36 min)
1. Using the Video Import Wizard
2. Encoding FLV Files
3. Choosing the Controller Skin
4. Using the FLV Components
5. Using the Flash Video Encoder
6. Animating a Movie File
Lesson 4: OPTIMIZING & PUBLISHING (37 min)
1. Preparing to Publish
2. Looking at the Flash Tab in the Publish Settings
3. Adjusting the HTML Settings
4. Finishing Up the Publish Settings
5. Publishing Using Dreamweaver®
6. Posting Your Files on the Server
7. Synchronizing Changes
8. Final Comments & Credits

Total Training - Adobe Flash CS3 Professional Essentials
Total Training - Adobe Flash CS3 Professional Essentials
Total Training - Adobe Flash CS3 Professional Essentials

 

Arroway - Wood Textures Volume Three | 10.8Gb

Arroway - Wood Textures Volume Three [Full Content]
Arroway - Wood Textures Volume Three | 10.8Gb



This collection contains a cross-section of wood species from North, Middle and South America and thus provides a broad spectrum of different styles, ranging from the mundane to the exotic.

The manufacturing of wood veneers takes great skill as well as experience. Similarly, the creation of textures out of such veneers takes a lot of knowhow and is a very time and resources consuming task. The use of our innovative scanning process made it possible to digitize large veneered panels in high resolution while avoiding the problem of surface reflection. The thus obtained 4GB of raw data per wood species were then processed into high-quality textures using our tried and tested map creation techniques.

This new texture collection has been produced to the same high standards as the first two parts and concludes our very successful wood veneer series.

Further details

The collection contains large-scale veneer textures of 33 wood species from North, Middle and South America. There are three textures sets available for every wood species, each with different area and resolution:

* approx. 3m x 4m (9.8ft x 13.1ft) at 51dpi (6000px x 8000px)
* approx. 3m x 1m (9.8ft x 3.3ft) at 85dpi (10000px x 3300px)
* approx. 3m x 0.36m (9.8ft x 1.2ft) at 127dpi (15000px x 1800px)

Cisco ISE Platform


Cisco ISE Platform
English | ISO | 3.75GB
Genre: eLearning


Govern Your Network with Central Policy Enforcement.

Whether you need to support employee "bring-your-own-device" (BYOD) to work practices, or provide more secure access to your data center resources, the Cisco Identity Services Engine (ISE) meets your needs. It helps you reliably enforce compliance, enhance infrastructure security, and streamline service operations. Cisco ISE is a context-aware, identity-based platform that gathers real-time information from the network, users, and devices. ISE then uses this information to make proactive governance decisions by enforcing policy across the network infrastructure. The Cisco Identity Service Engine is a core component of the Cisco TrustSec solution and Cisco SecureX architecture.

More info:
_http://www.cisco.com/en/US/products/ps11640/index.html

Blender Guru - Discover the Secrets to Creating Realistic Nature in Blender

Blender Guru - Discover the Secrets to Creating Realistic Nature in Blender
Blender Guru - Discover the Secrets to Creating Realistic Nature in Blender
English | Video: h264, yuv420p, 1280x720, 310 kb/s | Audio: aac, 22050 Hz, s16 | 2.36 GB
Genre: Video training



The course carefully guides you through the process of creating realistic nature scenes with Blender. The tutorials start out easy and then increase with complexity as the course progresses.

ScreenShot

Blender Guru - Discover the Secrets to Creating Realistic Nature in Blender

 

 


Download Rapidgator
http://rapidgator.net/file/867188/CartoonSmart.Blender.Basics.Full.4.Pack.part1.rar.html
http://rapidgator.net/file/867220/CartoonSmart.Blender.Basics.Full.4.Pack.part2.rar.html
http://rapidgator.net/file/867250/CartoonSmart.Blender.Basics.Full.4.Pack.part3.rar.html
http://rapidgator.net/file/867263/CartoonSmart.Blender.Basics.Full.4.Pack.part4.rar.html
http://rapidgator.net/file/867277/CartoonSmart.Blender.Basics.Full.4.Pack.part5.rar.html

Download Letitbit
http://letitbit.net/download/78046.72766ff3b6de8ad460fac9b80528/BlenderGuruDiscoverSecretsRealisticNature.part1.rar.html
http://letitbit.net/download/87795.820d5501b261a941e39a9a57fb9e/BlenderGuruDiscoverSecretsRealisticNature.part2.rar.html
http://letitbit.net/download/59435.57a60cd5c9bd7c9cf708abb8fb62/BlenderGuruDiscoverSecretsRealisticNature.part3.rar.html
http://letitbit.net/download/21327.2f005600ab4726c0ba109e642e74/BlenderGuruDiscoverSecretsRealisticNature.part4.rar.html
http://letitbit.net/download/67402.6819213f870a0ee6806532917766/BlenderGuruDiscoverSecretsRealisticNature.part5.rar.html

Download ShareFlare - Premium Recommend
http://shareflare.net/download/11060.180983e65b82bb45bb38eff663ec/BlenderGuruDiscoverSecretsRealisticNature.part1.rar.html
http://shareflare.net/download/00204.01e0fa6c473dc3b51bb56e94ba00/BlenderGuruDiscoverSecretsRealisticNature.part2.rar.html
http://shareflare.net/download/22664.24cf70b33f48dc2618e9222e1511/BlenderGuruDiscoverSecretsRealisticNature.part3.rar.html
http://shareflare.net/download/02904.0278a3d9f5f684c3636072ed99ec/BlenderGuruDiscoverSecretsRealisticNature.part4.rar.html
http://shareflare.net/download/89212.88b940ceaae2ed88c54c2ed47934/BlenderGuruDiscoverSecretsRealisticNature.part5.rar.html

 

 

Speed Life Seminar by Ross Jeffries

Speed Life Seminar by Ross Jeffries

Speed Life Seminar by Ross Jeffries
English | Avi | Div3 | 352x240 | 25fps | Mp3 64kbps 44100hz | 1.59Gb
Genre: Video training


This is the unedited video footage of this sold out invitation only private seminar I did in beautiful Puerto Vallarta, Mexico. Over 3 and ? hours of solid girl getting training!Here’s just a partial list of what you’ll discover in the Speed Life Seminar:How to create the exact lifestyle you want by using the power of “movie scripting” in under 20 minutes!How to lock in your positive mental attitude and recall it at will whenever you want!How to use “psyche push” to magically insert your desires into her head so that she begins to think its her idea to get with you!How to use speed life framing patterns to test her readiness to kiss, makeout and leave with you!And Much Much More!

Speed Life Seminar by Ross Jeffries

 

Lynda com Family And Group Portraiture

 Lynda com Family And Group Portraiture DVD-iNKiSO

Lynda com Family And Group Portraiture DVD-iNKiSO | 800 MB

In this course, Pulitzer finalist Natalie Fobes shows how to capture engaging portrait shots of couples, families, and other groups using a variety of posing and composition techniques.

The course discusses how to plan for a portrait photo shoot and how to make stylistic decisions regarding props, clothing, and makeup. Next, the course reviews the essentials of posing women and men, starting with a single subject, moving on to a couple, and then working up to large groups. The course also demonstrates how to pose and compose a group portrait in ways that highlight the relationships between group members, whether they’re family members or business colleagues. Lastly, to illustrate the time constraints photographers often face, Natalie works against the clock to shoot a group of people she’s never met.

The course also covers various postprocessing techniques geared specifically for portraiture, such as working with wrinkles and skin textures.

Design3 Complete Unity3D Game Engine Tutorials

Design3  Complete Unity3D Game Engine Tutorials

Design3 Complete Unity3D Game Engine Tutorials
English | Mp4 | h264 | 1440x900 | 15fps |782kbps | Mp3 30fps 48000hz | 12Gb
Genre: E-learning


Design3 loves the Unity engine! We love it because it’s a game development tool that’s intuitive, easy to use, and supports multi-platform development. The Unity engine gets out of your way, allowing you to focus on creating games and interactive content. It’s an ideal solution for beginners and veterans alike looking to develop simulations and casual and serious games for web, mobile, or console.
Interface
=========
What exactly is an "interface"? The interface is the interaction or communication point between various software and hardware components and you, the developer. An easier way to think about the interface of a software program is that the interface determines how the work environment looks, where the menus and buttons are located, the colors and icons of the tools, and how you actually use the software. design3's interface tutorials will teach you how to use the software tools, streamline your workflows, and maximize the full potential of your projects.

Techniques
==========
Every tool has unique features that do specific things. Learn how to efficiently and effectively use these features with design3's technique tutorials. Work like the pros, maximize the potential of your tools, save time, and create amazing projects.

Game Builds
===========
A game build determines your game's progression and is basically what your players will use to play your game. In these tutorials you'll learn the basic structures for different types of genres by dissecting already built games. First play the game in the design3 arcade and then find out how that game was made by working through the tutorials.

Coding
======
Coding is the process of designing, writing, testing, debugging, and maintaining the source code for your games. This source code is written in one or more programming languages with the purpose of creating specific operations or desired behaviors. Learn basic AI, animation scripting, networking scripting, gameplay programming, and more with these tutorials.

Mobile
======
Want to make mobile games? In these tutorials you will learn how to make games for iOS and Android, as well as how to deploy them to the App Store and App Marketplace. Our goal is to not only help you make great mobile games, but also make money from them too.

Asset Integration
=================
You've created or gathered the assets, now it's time to put those assets into your game. These asset integration tutorials will demonstrate how to put your 2D and 3D assets, such as models, textures, and characters, into various game engines. Learn how to organize and manage your assets in order to improve your workflows and see your custom content in a game environment.

For more information: http://www.design3.com/training-center/engines-sdks/unity

Design3  Complete Unity3D Game Engine Tutorials



Pluralsight.net Courses to Develop for Android 2011

Pluralsight.net Courses to Develop for Android  2011

Pluralsight.net Courses to Develop for Android 2011
English | WMV | Wmv3 | 1024?768 | 15fps 289kbps | Mp3 128kbps 44100hz | 1.82GB
Genre: eLearning


This course covers beginning level Android development from the perspective of a .NET developer. In this course you will learn to create a simple multi-screen Android application that can utilize menus and preferences and learn to deploy that application to the Android marketplace.


Pluralsight.net Courses to Develop for Android  2011



Creative Lighting for Photographers by Joe McNally

Creative Lighting for Photographers by Joe McNally

Creative Lighting for Photographers by Joe McNally
English | Mp4 | H264 | 480?320 | 29.97fps 1665kbps | Mp3 128kbps 48000hz | 1.09GB 
Genre: Video Training


Joe McNally takes you to, what only can be called not the prettiest of locations to teach you just how far a little creative lighting can take your shot… and tell a story. Join him as he uses a lot of different lights in a lot of different ways to tell a story with a beautifully lit, if not so beautiful, ending.
Course Lessons: Lesson 01 Describing the Scene (3:11)
Lesson 02 Transforming Light Sources (8:55)
Lesson 03 Altering the Mood (6:28)
Lesson 04 Single SB900 Flash (10:22)
Lesson 05 Hard Light (5:51)
Lesson 06 Snapping Away (5:15)
Lesson 07 Lots of Drama (8:39)
Lesson 08 Creepy Color (4:38)
Lesson 09 Crime Scene Shoot (7:45)
Lesson 10 High Speed Synch (5:36)
Lesson 11 Skate Park Shoot (8:35)
Lesson 12 Action Shots (2:57)
Lesson 13 Bits and Pieces (7:48)


Creative Lighting for Photographers by Joe McNally