Search TekSocial
Stay Connected

Enter your email address:

(We respect your privacy!)

Or subscribe with your favorite RSS Reader

  

Entries in tutorial (26)

4:20PM

Code Academy: Learn Some Code Free

Today we are going to be looking into a unique website called “Code Academy”. This website is an interactive coding environment that will teach you how to code in the sections it has available. In this case I show you the HTML and CSS portion of it while dabbing a bit into python. So if you ever wanted to learn code but found it hard to just read and do, then give this website a try. It’s much like an online classroom that teaches you how to do something, then it makes you try and follow along. It will tell you if you’re right or wrong and help you try to understand how things work a bit better. So why not give it a try and learn how to code today? Go check it out!

Source: http://www.codecademy.com/

10:51AM

Photoshop Tutorial: Animating

Now it has been a while since I last did a tutorial video for Photoshop, and today I come back with something a bit more useful when it comes to making an animated logo. In the video I demonstrate how to animate using a sprite sheet, but the concept is quite simple to understand altogether. All you have to do is animate frame-by-frame, or in this case layer by layer. There isn’t a whole lot I can really show you through this article that I did in the video. But I will try my best to recapture this moment for you in text form for those who don’t like watching an eight minute video. So without further distractions, let’s get started.

Click to read more ...

10:56AM

Programming with Python: Functions and Variables 

The title may make this lesson look like a scary mesh of gibberish to some of you. Not literally the title, but the general idea of what we are going to being working on today. But don’t worry; this isn’t a hard concept to get at all. So let’s get started on this lesson of programing with python. Firstly, we have to set up words to define. These words can be defined with both numbers and letters. What I mean by this is, we can have the word “Tom” equal “100” or for every time we have the function “print: Tom” we can have it print out the phrase “Is cool!” Sounds fun right? So, how do we achieve this? To put it quite simply, just as easy as I made it sound out to be. Look at the image below to get the idea of what the code will look like. 

Click to read more ...

4:37PM

How to Setup and Use Virtual Box

Today I am going to show you how to setup and use a program called Virtual Box. Virtual Box is a virtual machine that emulates both hardware and software of a computer. Meaning you can run Windows on your Mac with no hassle what so ever. Firstly, I would like to say setting up this program isn’t as hard as you may think. So let’s dive right in, and get you on your way to using a Virtual Machine so you can experience a different kind of operating system today.

Click to read more ...

4:06PM

Programming with Python: Print, Comment

Hello guys, today I am going to try my best to teach you some methods in programming. I am not a professional at this, but a guy who is learning it himself, but I figured by teaching others it would benefit them in some way while being able to me to get a review going on. So how are we going to do this? First, let me tell you what you will need. You’re going to need a text editor. No no, I don’t mean textedit or notepad. Here, you will need these.

(Mac) http://www.barebones.com/products/textwrangler/
(Windows)  http://notepad-plus-plus.org/

Now we are going to need the actual programing software itself. This will allow us to work with the python interface while being able to edit the code in the long run. Since we are starting with python, I suggest you download Python 2.7.5, as we will be working with that in this series.

Click to read more ...