Talking about Jobs/Careers and the types of companies in USA, Dress Codes, Interviews, a little this and that... and Enjoying your life having a career!
Show less
Learn Node JS by Example, we'll start with installing Node and using NPM for packages. We will run a extremely simple server just to give you an idea of a bare bones server.
We can save a lot of time by using the Express Framework built for Node. It's one of the most popular if not the most popular. This is how we install it, run it, and a quick bite of what's going on...
This is much like PHP include in a way, but more like Python's "import" to require a specifically named variable/function/class. It is very useful in JavaScript to declutter your code, this works t...
I'll use Handlebars as a template engine rather than Jade/Pug as it is much more common to front-end developers. This is how we set it up with layouts and partials using Handlebars in Express.
We'll be using MongoDB and it's is much different than Relational Databases, this is how to install it (Ubuntu / Windows). Here are some links to assist you (I used Ubuntu 16):
We will clean the directory with a folder and modules not needed. Then we will add the missing logout GET route. Lastly add a middleware folder for the future.
This is a long video, learn the hard way and we'll appreciate more packages later! We start by adding express-session which is middleware that attaches to the route's 'req' variable appearing as 'r...
We setup Log Rotation rather than standard logging using Node's built in FileSystem ("fs"), Im using Node 6.9.5. We use another tool to make the logging rotate, after that we setup the two template...
We'll use the bcryptjs and validator packages to prepare for our user saving. We have to update the name fields in our templates as well to get the correct posts. We end with an error, so next flas...
I just rush through the extremely basic things, I don't think you guys are monkeys and this is pretty easy to pickup very fast, learn by a short quick example :)
We are going to jump right in and play around, and make an image that would work with the web. You don't have to follow along exactly, but if you see what I'm doing it'll help you realize how thing...
So let's draw a pig in photoshop. Try to practice the hotkeys, I keep bringing them up because you'll save SO MUCH TIME by memorizing them, Very important! You won't regret it! I'd suggest Illustra...
Here i take a screenshot of Digg.com (Just for the sake of an example), and show you how you can trace things to build a layout. We'll lightly touch on the slice tool, this should help you get sta...
In this tutorial I'll just show you how to make a ribbon. This time we'll introduce you to some Raster Image Warping. Hope it helps you become a better Photoshop user!
This will give you an idea on how to improve your photo's, it's actually pretty simple. The tools we'll be using and going over are: Clone Stamp Tool, Smudge Tool, Dodge Tool and Burn Tool. We'll q...
In this example of Adobe Photoshop I'll be showing you the brush tools. There is much more than just a simple circle brush and you can do a lot of things with them. You should play around with the ...
Here are most of the select tool features you should know. You don't have to be a master at them, but get familiar and you'll save yourself a lot of trouble in the future. There are many ways to se...
I'll show you how to define patterns because they are awesome. We'll first make a pixel pattern, apply a gradient to it, and layer mask it. Sounds confusing, but it's really very simple! Then we'l...
This is a quick overview of what MySQL is. We will use a Excel Spreadsheet to get the idea behind it. And we will create a sample database in phpMyAdmin. Don't worry, we'll get into the SQL later!...
We learn MySQL CREATE and DROP. "You ask, why bother when I can point and click?" Because you might have to do SQL on a server with no GUI, Create an install script, a program SQL update script, et...
We cover more than only MySQL INSERT in here, but our past tutorial we did CREATE and DROP. We'll CREATE a DATABASE and two TABLES we will use throughout these tutorials. Sometimes the small talk i...
Join Forum @ http://jream.com/forum We are jumping into JOINS, yes they are scary, and they ARE very tricky at first. You have to VISUALIZE what you are doing when you JOIN TABLES together!
Welcome to the MySQL ALIAS tutorial. A MySQL ALIAS is like a shortcut on your desktop, it points to the actual real thing. You can use these to shorten your SQL code and make everything much more r...
MySQL UNION is used for stacking a result set on top of another. This is much different than a JOIN, so pay attention to see the difference. You may not use these very much but it's good to know it...
In this MySQL Tutorial we learn a few Aggregate functions such as COUNT, MAX, MIN, AVG. Furthermore, we learn to use the GROUP BY command to group it all together and collect more than one result f...
This ones tricky guys! We are going to create a Query within a Query. Please take your time to see the code and think about what is happening so you understand. The SELECT statement in the SUB QUER...
The MySQL Console is good to get comfortable in, it's the same thing we were doing with Heidi SQL, except it's not as fun to type in and it's easy to typo's that you have to redo everything with. I...
Join Forum @ http://jream.com/forum I had a brain-fart during the tutorial forgive me for the pause somewhere in there! Anyways, Lets get our hands dirty with a File Logger object in OOP. I think ...
Join Forum @ http://jream.com/forum Here we improve on the File Logger from the last tutorial making it go through a few private methods. We setup out Private Properties(variables) and Private Met...
Here we create a Character with some subclasses (or children), and we use the properties from the Parent. We also use a __construct for the first time. I think this video is a little unorganized an...
Join Forum @ http://jream.com/forum This will show you what abstract classes are. They can not be constructed and in a way they should be used as Template classes.
This is a complex example of using PHP Interfaces. Sorry I could not think of a simpler example of making use of it -- I rarely use these and prefer Abstract classes, though they are different. In ...
Join Forum @ http://jream.com/forum Static Methods(functions) are called from anywhere in your system. I prefer to call my classes Static because I like all my methods within a class using static ...
In OOP you can use Magic Methods and I'll cover three of them here. get set and call. Magic methods alwasys start with two underscores! They have good uses if you need them.
In OOP you can use Magic Methods and I'll cover some more here, __construct which we already covered, and __destruct, __clone, __invoke, and __toString.
Encapsulation is protecting your sysetm from being used incorrectly, I will demonstrate an extremely simple example of this! This is important to know :)
JQuery Traversing means kind of like: "Travel through elements". I'll give you a couple examples here. It's up to you to toy around with it and get used to it -- when you do it becomes really easy :)
This is just a quick run down on a few effects, there doesn't need to be a long video here just get you started and run with it. The documentation is better than this tutorial in my opinion so ther...
Join Forum @ http://jream.com/forum Here we learn to use the load() function and the $.get() function to accomplish similar things. Please make sure you understand a simple difference in the examp...
Join Forum @ http://jream.com/forum Here is an introdoction to the $.post() function in JQuery to submit data to your server. This is a quick example and sorry I mistaked a few minor areas I was t...
Here is how you can use JSON (JavaScript Object Notation) with JQuery. In the following example I use a Database Query and return the result to JQuery via A...
We will create a form with a loading image that appears to be AJAX, but it's really not. Why do this? Because it's cool, and it's not as much work as AJAX. It will add a little extra flavor to form...