Noob Coding
Last updated
Was this helpful?
Last updated
Was this helpful?
This is the repo of my notes. Now live on !
Teach: Try to develop a fast-learning process to help others grasp programming as quickly as possible. Focuses on speedrun so it does not guarantee insightful knowledge and is by no means comprehensive. However, some interesting stuff would be provided marked optional.
Teach Myself: Should be able to review or preview many important topics in our industry.
Improve: Since we are working in a fast-changing industry, the ability of fast-learning, or revolutionizing ourselves, is the most valuable asset in ourselves. Hopefully, a system of fast-learning could be established within this project.
Pick any topic you want. But I would recommend (with bias):
For data scientists or anyone who wishes to learn AI (Trending): Python
-> Big Data
-> Machine Learning
For those who want to build a website: LNMP
For those who want to have some fun and see immediate feedback: Frontend
For students or those who wish to find jobs: Java
-> LeetCode
For architects: PowerPoint
For architects who want to write some real code besides PowerPoints: C++
/Java
-> Search Engine
/Distributed Systems
A few tips and tools to boost development effectiveness.
Environment: Instead of working as root with too much privilege and too many folders, I prefer creating several linux users to seperately manage projects when I get my hands on a new machine.
Next time log in as 'ocean' and start messing around.
And some useful aliases:
Samba/FTP
Useful Commands
Setting up git:
Get your local SSH keys:
Add your private SSH key to the ssh-agent:
Add your public SSH key to your Github account:
How to insert equation on github:
Installation
Download JDK (I would recommend Java SE Development Kit 8) from the Oracle website.
Java Development Kit > Java Runtime Environment > Java Virtual Machine
.java -> $javac
-> .class -> $java
byte
, short
, int
, long
: 1, 2, 4, 8 byte(s) length integer
float
and double
: 4, 8 byte(s) length decimal(6/7 decimal digits, 15 decimal digits). Always suffix float value with the "f" else compiler will consider it as double
char
: 2 bytes length
boolean
: true
and false
with lowercase initials
Non-primitive: Arrays and Strings
"Unique" Grammer
Enhanced for loop:
do-while loop
Object-Oriented Programming
this.
Inheritance: With extends
. Multiple inheritance is not allowed in Java.
Polymorphism: Apart from method overriding, Java allowed method overloading within a class using different method signature (same method name, different parameters).
Abstract Method: Method with only signature no body (declared but not defined) or declared using the abstract keyword.
The class that inherits must provide the implementation of all the abstract methods of parent class else declare the subclass as abstract.
These methods cannot be abstract: Constructors, Static methods, Private methods, Methods that are declared "final".
Abstract Class: An abstract class outlines the methods but not necessarily implements all the methods.
Cannot be instantiated.
A class derived from the abstract base class must implement those methods that are not implemented(means they are abstract) in the abstract class.
Interface: With interface
.
Can contain only constants and abstract methods.
Cannot be instantiated.
Can only be implemented by classes or extended by other interfaces.
Java does not support Multiple Inheritance, however a class can implement more than one interfaces.
All methods in an interface are implicitly public and abstract. Using the keyword abstract before each method is optional.
An interface may contain final variables.
When a class implements an interface it has to give the definition of all the abstract methods of interface, else it can be declared as abstract class.
An interface reference can point to objects of its implementing classes.
Access Specifiers: public
/private
/protected
/Default(Package Level scope)
Useful tips:
Command Line: The simplest way to improve command line usability is to modify the ~/.bashrc
file. Always add your working directory as aliases or use .
is a good site to create useful bash prompt style. My favourite:
Vim: I use with some personal settings in ~/.vim_runtime/vimrcs/my_configs.vim
:
Install git: sudo yum install git
If you are using CentOS, other checkout
Github user: There are two kinds of url to clone your project: HTTPS and SSH. I recommend (the SSH way)[] since it helps you type your Github password less in the future:
For each project, use a .gitignore
file to avoid submitting sensitive/large/unwanted files to git:
,
Grasp Java Programming in a few days with .
Also, start with any tutorial . But you should realize that C++ IS HARD, because it's both old and powerful.
string null terminated:
Many ways to loop on every character of a string:
Various way to init a 2D array:
String to int: ,
There is no empty char:
Limit on url length (that affects the lengths of your GET uri and parameters unless you know what you are doing): unbounded. But being less than 2000 char would be most compatible. .