Skip to content

Repository definitiva in cui conserverò tutto il codice sorgente dei libri che leggo e dei tutorial che seguo.

License

Notifications You must be signed in to change notification settings

plumkewe/tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tutoral

Repository definitiva in cui conserverò tutto il codice sorgente dei libri che leggo e dei tutorial che seguo.

Linguaggi studiati

Git Zsh

Note

Le icone di colore red indicano che nella repository sono presenti dei file correlati e, quindi, possono essere cliccate per visualizzarli.

Da rivedere

  • PHP
  • Python

Sources

Language Source In
C++ coverObject Oriented Programming in C++ EN
coverUnderstanding and Using C Pointers EN
imageThe Chermo EN
image#SimpleCode RU
HTML imageDave Gray EN
CSS imageDave Gray EN
GIT imageMosh Hamedani EN
ZHS Zshterminal-mac-cheatsheet EN

Struttura

CPP

├── CPP/
│   ├── book/
│   │   ├── Object Oriented Programming in C++/
│   │   │   ├── Casts.cpp
│   │   │   ├── arrays/
│   │   │   │   ├── A User-Defined String Type.cpp
│   │   │   │   ├── Array Fundamentals.cpp
│   │   │   │   ├── Arrays as Class Member Data.cpp
│   │   │   │   ├── Arrays of Cards.cpp
│   │   │   │   ├── Arrays of English Distances.cpp
│   │   │   │   ├── Arrays of Structures.cpp
│   │   │   │   ├── Averaging Array Elements.cpp
│   │   │   │   ├── Initializing Arrays.cpp
│   │   │   │   ├── Initializing Multidimensional Arrays.cpp
│   │   │   │   ├── Input Output with string Objects.cpp
│   │   │   │   ├── Multidimensional Arrays.cpp
│   │   │   │   └── Passing Arrays to Functions.cpp
│   │   │   ├── classes/
│   │   │   │   ├── A Card-Game Example.cpp
│   │   │   │   ├── An Example of Static Class Data.cpp
│   │   │   │   ├── Constructor (A Counter Example).cpp
│   │   │   │   ├── Objects as Data Types.cpp
│   │   │   │   ├── Objects as Function Arguments.cpp
│   │   │   │   ├── Operator overloading/
│   │   │   │   │   ├── Arithmetic Assignment Operators.cpp
│   │   │   │   │   ├── Arithmetic Operators.cpp
│   │   │   │   │   ├── Comparing Distances.cpp
│   │   │   │   │   ├── Comparing Strings.cpp
│   │   │   │   │   ├── Concatenating Strings.cpp
│   │   │   │   │   ├── Conversion Between C-Strings and String Objects.cpp
│   │   │   │   │   ├── Conversions Between Objects and Basic Types.cpp
│   │   │   │   │   ├── Nameless Temporary Objects.cpp
│   │   │   │   │   ├── Operator Return Values.cpp
│   │   │   │   │   ├── Overloading Unary Operators.cpp
│   │   │   │   │   ├── Postfix Notation.cpp
│   │   │   │   │   └── The Subscript Operator ([])/
│   │   │   │   │       ├── Separate get() and put() Functions.cpp
│   │   │   │   │       └── Single access() Function Returning by Reference.cpp
│   │   │   │   ├── Returning Objects from Functions.cpp
│   │   │   │   ├── Simple Class.cpp
│   │   │   │   ├── The Default Copy Constructor.cpp
│   │   │   │   └── Widget Parts as Objects.cpp
│   │   │   ├── enumeration/
│   │   │   │   ├── Enumeration (days of the week).cpp
│   │   │   │   ├── Enumeration (organizing the cards).cpp
│   │   │   │   └── Enumeration (word count).cpp
│   │   │   ├── functions/
│   │   │   │   ├── Const Function Arguments.cpp
│   │   │   │   ├── Functions (a more complex pass by reference).cpp
│   │   │   │   ├── Functions (default arguments).cpp
│   │   │   │   ├── Functions (overloading).cpp
│   │   │   │   ├── Functions (overloading, diff arguments).cpp
│   │   │   │   ├── Functions (passing a structure).cpp
│   │   │   │   ├── Functions (passing constants).cpp
│   │   │   │   ├── Functions (passing simple data types by reference).cpp
│   │   │   │   ├── Functions (passing variables).cpp
│   │   │   │   ├── Functions (recursion).cpp
│   │   │   │   ├── Functions (return structure variables).cpp
│   │   │   │   ├── Functions (returning values).cpp
│   │   │   │   ├── Inline functions.cpp
│   │   │   │   ├── Returning by Reference.cpp
│   │   │   │   ├── Simple Functions.cpp
│   │   │   │   └── Static Local Variables.cpp
│   │   │   ├── streams/
│   │   │   │   ├── Character I O.cpp
│   │   │   │   ├── I O with Multiple Objects.cpp
│   │   │   │   ├── Reading/
│   │   │   │   │   ├── Reading Data.cpp
│   │   │   │   ├── Specifying the Offset.cpp
│   │   │   │   └── Writing/
│   │   │   │       ├── Strings with Embedded Blanks.cpp
│   │   │   │       ├── Writing Data.cpp
│   │   │   │       ├── Writing an Object to Disk.cpp
│   │   │   ├── strings/
│   │   │   │   ├── C Strings/
│   │   │   │   │   ├── Arrays of Strings.cpp
│   │   │   │   │   ├── Avoiding Buffer Overflow.cpp
│   │   │   │   │   ├── Copying a String the Easy Way.cpp
│   │   │   │   │   ├── Copying a String the Hard Way.cpp
│   │   │   │   │   ├── Reading Embedded Blanks.cpp
│   │   │   │   │   ├── Reading Multiple Lines.cpp
│   │   │   │   │   ├── String Constants.cpp
│   │   │   │   │   └── Strings as Class Members.cpp
│   │   │   │   └── C++ Strings/
│   │   │   │       ├── Accessing Characters in string Objects.cpp
│   │   │   │       ├── C-String Variables.cpp
│   │   │   │       ├── Comparing string Objects.cpp
│   │   │   │       ├── Finding string Objects.cpp
│   │   │   │       └── Modifying string Objects.cpp
│   │   │   └── struct/
│   │   │       ├── A Card Game Example.cpp
│   │   │       ├── A Measurement Example.cpp
│   │   │       ├── Initializing Structure Members.cpp
│   │   │       ├── Structs.cpp
│   │   │       └── Structures Within Structures.cpp
│   │   └── Understanding and Using C Pointers/
│   │       ├── Adding an integer to a pointer.cpp
│   │       ├── Constant pointers to constans.cpp
│   │       ├── Constant pointers to nonconstants.cpp
│   │       ├── Dereferencing a Pointer Using the Indirection Operator.cpp
│   │       ├── Displaying Pointer Values.cpp
│   │       ├── Multiple Levels of Indirection.cpp
│   │       ├── Pointer to (constant pointer to constant).cpp
│   │       ├── Pointers to a constant.cpp
│   │       ├── Substracting an integer from a pointer.cpp
│   │       └── Subtracting two pointers.cpp
│   └── youtube/
│       ├── arrays/
│       │   ├── Array-come-passarlo-nella-funzione.cpp (Creator: #SimpleCode)
│       │   ├── Arrays.cpp (Creator: The Cherno)
│       │   ├── Funzioni-con-array[OWN].cpp
│       │   ├── Sorting.cpp (Creator: The Cherno)
│       │   └── Vector[sdynamic-arrays]/
│       │       └── Vectors.cpp (Creator: The Cherno)
│       ├── classes/
│       │   ├── Classes.cpp (Creator: The Cherno)
│       │   ├── Classes[write].cpp (Creator: The Cherno)
│       │   └── SimpleCode/
│       │       ├── Che-cosa-sono-le-classi-esempio-2.cpp (Creator: #SimpleCode)
│       │       ├── Che-cosa-sono-le-classi.cpp (Creator: #SimpleCode)
│       │       ├── Classi-metodi-di-accesso.cpp (Creator: #SimpleCode)
│       │       ├── Costruttori.cpp (Creator: #SimpleCode)
│       │       ├── Distruttore-esempio-2.cpp (Creator: #SimpleCode)
│       │       ├── Distuttore.cpp (Creator: #SimpleCode)
│       │       ├── Metodi-e-funzini-delle-classi.cpp (Creator: #SimpleCode)
│       │       ├── Metodi-privati.cpp (Creator: #SimpleCode)
│       │       ├── Ottenere-e-settare.cpp (Creator: #SimpleCode)
│       │       ├── Overloading-classes.cpp (Creator: #SimpleCode)
│       │       └── Parola-chiave-#this.cpp (Creator: #SimpleCode)
│       ├── conditions/
│       ├── constructors/
│       │   └── Constructors.cpp (Creator: The Cherno)
│       ├── enumeration/
│       │   └── Enum.cpp (Creator: The Cherno)
│       ├── functions/
│       │   ├── Fattoriale-con-ricursione.cpp (Creator: #SimpleCode)
│       │   ├── Overloading-delle-funzioni.cpp (Creator: #SimpleCode)
│       │   ├── Parametri-predefiniti.cpp (Creator: #SimpleCode)
│       │   ├── Prototipi-delle-funzioni.cpp (Creator: #SimpleCode)
│       │   ├── Ricorsione.cpp (Creator: #SimpleCode)
│       │   └── Ternary-operators.cpp (Creator: The Cherno)
│       ├── keywords and operators/
│       │   ├── Auto-keyword.cpp (Creator: The Cherno)
│       │   └── New-e-Delete.cpp (Creator: #SimpleCode)
│       ├── loops/
│       │   ├── Ciclo-do-while.cpp (Creator: #SimpleCode)
│       │   ├── Ciclo-while.cpp (Creator: #SimpleCode)
│       │   ├── Control-flow-[continue_break_return].cpp (Creator: The Cherno)
│       │   ├── For-annidati-[nasted].cpp (Creator: #SimpleCode)
│       │   ├── Goto.cpp (Creator: #SimpleCode)
│       │   ├── Range-based-for-loop.cpp (Creator: Caleb Curry)
│       │   └── Specialita-del-ciclo-for.cpp (Creator: #SimpleCode)
│       ├── pointers/
│       │   ├── Aritmetica-dei-puntatori.cpp (Creator: #SimpleCode)
│       │   ├── NULL-e-nullptr.cpp (Creator: #SimpleCode)
│       │   ├── Passaggio-per-reference-alla-funziona.cpp (Creator: #SimpleCode)
│       │   ├── Pointers.cpp (Creator: The Cherno)
│       │   ├── Puntatori-nelle-funzioni.cpp (Creator: #SimpleCode)
│       │   ├── Puntatori.cpp (Creator: #SimpleCode)
│       │   ├── Return-piu-valori-via-reference.cpp (Creator: #SimpleCode)
│       │   ├── Return-piu-valori.cpp (Creator: #SimpleCode)
│       │   └── Riferimento.cpp (Creator: #SimpleCode)
│       ├── strings/
│       │   ├── Escape-sequences.cpp (Creator: #SimpleCode)
│       │   ├── String-API.cpp (Creator: Bro Code)
│       │   └── Strings.cpp (Creator: The Cherno)
│       ├── templates/
│       │   ├── Classes.cpp (Creator: The Cherno)
│       │   ├── Functions.cpp (Creator: The Cherno)
│       │   └── Funzioni-con-template.cpp (Creator: #SimpleCode)
│       ├── threads/
│       └── variables/
│           └── Area-visiva[variabili_globali_e_locali].cpp (Creator: #CodeSimple)

HTML

├── HTML/
│   └── youtube/
│       └── Dave-Gray-course/
│           ├── DAY-1/
│           │   ├── add-links/
│           │   │   ├── index.html
│           │   │   └── oltre.html
│           │   ├── getting-started/
│           │   │   └── index.html
│           │   ├── head-element/
│           │   │   ├── index.html
│           │   │   └── main.css
│           │   ├── list-types/
│           │   │   └── index.html
│           │   └── text-basics/
│           │       └── index.html
│           ├── DAY-2/
│           │   ├── add-images/
│           │   │   ├── img/
│           │   │   └── index.html
│           │   ├── create-tables/
│           │   │   └── index.html
│           │   ├── forms-and-inputs/
│           │   │   └── index.html
│           │   └── semantic-tags/
│           │       └── index.html

CSS

├── CSS/
│   ├── MDN-DOCS/
│   │   ├── CSS-building-blocks/
│   │   │   └── CSS-selectors/
│   │   └── CSS-first-steps/
│   │       ├── Getting-started-with-CSS/
│   │       │   ├── index.html
│   │       │   └── style.css
│   │       ├── How-CSS-is-structured/
│   │       │   ├── Inline-stylesheet/
│   │       │   │   ├── index.html
│   │       │   │   └── style.css
│   │       │   ├── Internal-stylesheet/
│   │       │   │   └── index.html
│   │       │   ├── Intro/
│   │       │   │   ├── index.html
│   │       │   │   └── style.css
│   │       │   └── Playing-with-CSS/
│   │       │       ├── index.html
│   │       │       └── style.css
│   │       ├── How-CSS-works/
│   │       │   ├── index.html
│   │       │   └── style.css
│   │       └── Styling-a-biography-page/
│   │           ├── index.html
│   │           └── style.css
│   ├── other/
│   │   └── position.html
│   └── youtube/
│       └── Dave-Gray-course/
│           ├── DAY-1/
│           │   ├── 1_start-here/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   ├── 2_selectors/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   ├── 3_colors/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   └── 4_units-and-sizes/
│           │       ├── index.html
│           │       └── style.css
│           ├── DAY-2/
│           │   ├── 5_box-model/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   ├── 6_typography/
│           │   │   ├── idnex.html
│           │   │   └── style.css
│           │   ├── 7_styling-links/
│           │   │   ├── about.html
│           │   │   ├── index.html
│           │   │   ├── more.html
│           │   │   └── style.css
│           │   ├── 8_list-styles/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   └── 9_mini-project/
│           │       ├── index.html
│           │       └── style.css
│           ├── DAY-3/
│           │   ├── 10_display/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   ├── 11_floats/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   ├── 12_columns/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   └── 13_position/
│           │       ├── 01/
│           │       │   ├── index.html
│           │       │   └── style.css
│           │       └── 02/
│           │           ├── index.html
│           │           └── style.css
│           ├── DAY-4/
│           │   ├── 14_flexbox/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   └── 15_grid-layout/
│           │       ├── Fireship/
│           │       │   ├── Grid-1/
│           │       │   │   ├── index.html
│           │       │   │   └── style.css
│           │       │   └── Grid-2/
│           │       │       ├── index.html
│           │       │       └── style.css
│           │       ├── PF/
│           │       │   ├── index.html
│           │       │   └── style.css
│           │       └── Tutorial/
│           │           ├── index.html
│           │           └── style.css
│           ├── DAY-5/
│           │   ├── 16_images/
│           │   │   ├── img/
│           │   │   ├── index.html
│           │   │   └── style.css
│           │   └── 17_media-queries/
│           │       ├── index.html
│           │       └── style.css

About

Repository definitiva in cui conserverò tutto il codice sorgente dei libri che leggo e dei tutorial che seguo.

Resources

License

Stars

Watchers

Forks