What Is Assembly Language?

Assembly language (ASM) is not a mythical dark art, in fact it’s fundamental to computers operating at all. I take a quick look at a very simple assembly language and show where it fits in.

May 29, 2017
Read More >>

Pentaho Demo: R Script Executor & Python Script Executor

Pentaho Demo: R Script Executor & Python Script Executor
May 26, 2017

This is a video recorded at Pentaho Bay Area Meetup held at Hitachi America, R&D on 5/25/17. Please join us at https://www.meetup.com/meetup-group-ReKwDXrP/ not to miss future events. Attendees will be walked through the use of two key features in the Pentaho ecosystem. Presenters will provide a short demo on how to use the R Script Executor and the Python Script Executor steps, which provide robust data science capabilities through PDI.

Read More >>

Learning a language? Speak it like you’re playing a video game | Marianna Pascal | TEDxPenangRoad

Marianna Pascal shows how the secret to speaking a new language with confidence is all about attitude, not ability. Marianna Pascal helps professionals achieve greater success in life by communicating effectively in English. Marianna began her career as an actor and performed across her native Canada in film television and on stage for 15 years. Today, Marianna improves the way employees relate to their bosses, clients, colleagues and other key…

May 11, 2017
Read More >>

How to Install Netbeans IDE on Mac OS X

How to Install Netbeans IDE on Mac OS X
May 7, 2017

Link to How to install Java JDK on Mac OS X https://youtu.be/y6szNJ4rMZ0 This Video tells you how to download Netbeans IDE for Mac OS X. In this tutorial, we will learn how to install Netbeans IDE on Mac OS X. Netbeans IDE (Integrated development environment) is written in Java and mostly used for developing Java applications. In Netbeans IDE, you can write, compile and run your Java code. ★★★Top Online…

Read More >>

Shell Scripting Tutorial for Beginners 20 – use FOR loop to execute commands

FOR loop to execute commands. A list of commands is executed for each value in the list. for Loops: Sometimes we want to run a command (or group of commands) over and over. This is called iteration, repetition, or looping. The most commonly used shell repetition structure is the for loop, which has the general form: for variable in list do command(s) done ★★★Top Online Courses From ProgrammingKnowledge ★★★ Python…

April 9, 2017
Read More >>

Which is the Best Programming Language to Learn First?

Get suggestions for learning programming language for beginners here in this video. Learn JavaScript if you are a new to programming. This language will cover up lots of topics which are common to other languages also and JavaScript will help in Web Development. Python is a very easy language to start with. If you are not sure at all to what to start with then learn C , C++ or…

March 29, 2017
Read More >>

Shell Scripting Tutorial for Beginners 14 – Array variables

An array is a variable containing multiple values. Any variable may be used as an array. There is no maximum limit to the size of an array, nor any requirement that member variables be indexed or assigned contiguously. Arrays are zero-based: the first element is indexed with the number 0. Indirect declaration is done using the following syntax to declare a variable: ARRAY[INDEXNR]=value ★★★Top Online Courses From ProgrammingKnowledge ★★★ Python…

March 25, 2017
Read More >>