Skip to content

Instantly share code, notes, and snippets.

View Constannnnnt's full-sized avatar
👨‍💻
On Research

Chen Yuan Constannnnnt

👨‍💻
On Research
  • Waterloo
View GitHub Profile
@Constannnnnt
Constannnnnt / Python_Notes.md
Created July 5, 2018 13:44
Mark down what I haven't noticed or failed to understand about python. Also, mention some small tricks. [Keep updating]

Python_Notes

What I didn't know at that moment

  1. What is all in python? It is a list of public objects of that module, as interpreted by import *. It overrides the default of hiding everything that begins with an underscore. In other words, it is a list of strings defining what symbols in a module will be exported when from <module> import * is used on the module. NOTE: __all__ only affects the from <module> import * behavior only. Members that are not mentioned in __all__ are still accessible from outside the module and can be imported with from <module> import <member>.

  2. What is underscore? Following are different places where _ is used in Python.

@Constannnnnt
Constannnnnt / aws-certification.md
Created March 27, 2018 09:40 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.
@Constannnnnt
Constannnnnt / graph_search.cpp
Created September 22, 2017 18:23 — forked from douglas-vaz/graph_search.cpp
Breadth First Search and Depth First Search in C++
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <algorithm>
using namespace std;
class Node{