Your hub for design & web dev inspiration | @manningstinson
    Loading posts...
  • Intro Git

    General What is source code management What is Git What is GitHub What is the difference between Git and GitHub How to create a repository What is a…

  • Python ID & Objects

    Ever wandered what happens under the hood in a python application? We will be covering the very basics (elementary) concepts in Python, and in Object Oriented Programming (OOP…

  • Intro Git

    General What is source code management What is Git What is GitHub What is the difference between Git and GitHub How to create a repository What is a…

  • Intro to Linux Shell

    Learning Objectives At the end of this project, you are expected to be able to explain to anyone, without the help of Google: General What does RTFM mean?…

  • Shell – Permissions

    Learning Objectives At the end of this project, you are expected to be able to explain to anyone, without the help of Google: Permissions What do the commands…

  • Shell, I/O Redirections and filters

    man or help: echo cat head tail find wc sort uniq grep tr rev cut passwd (5) (i.e. man 5 passwd) Learning Objectives At the end of this…

  • Shell init files, variables & expansions

    Resources Read or watch: Expansions Shell Arithmetic Variables Shell initialization files The alias Command Technical Writing man or help: printenv set unset export alias unalias . source printf…

  • C – Hello, World

    Resources Read or watch: Everything you need to know to start with C.pdf (You do not have to learn everything in there yet, but make sure you read…

  • Shell loops, conditions and parsing

    Resources Read or watch: Loops sample Variable assignment and arithmetic Comparison operators File test operators Make your scripts portable man or help: env cut for while until if…

  • C – Functions, nested loops

    Resources Read or watch: Nested while loops C – Functions Learning to Program in C (Part 06) (stop at 14:00) What is a function prototype (read only the…