• Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram
Starby Four

Vibes|Music|Tech

  • Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram
  • Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram

No Widgets found in the Sidebar Alt!

  • Tech

    Declarations, Prototypes, Definitions, & Implementations–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    Declarations–a declaration introduces a name into a scope. Generally speaking, a scope is either an entire ‘.cpp’ file (source file) or anything in code delimited by {} (braces), be it a function, a loop within a function, or even an arbitrarily placed block of {} within a function. A name introduced, is visible within the scope from the point at which it is declared to the end of that scope. A declaration merely tells the compiler how to use something, it does not actually create anything. Prototypes–a prototype is just another name for a declaration of a function. Definitions–a definition fully specifies an entity. Definitions are where the actual creation…

    read more
    Aaron Comments Off on Declarations, Prototypes, Definitions, & Implementations–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Blockchain & Money: Session 14: Blockchain Payments, Part 2 by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 20, 2021

    Blockchain & Money: Session 11: Blockchain Economics by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 19, 2021

    What is Traffic Light Protocol (TLP)?

    June 2, 2021
  • Tech

    Header Files, Source Files, & Extension Names–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    What’s the difference between Header files & Source files? Basically, header files are #included and not compiled, whereas source files are compiled and not #included. So do not compile ‘.h‘ files, and do not #include ‘.cpp‘ Source files. Also, do not #include the same .h file twice. This will lead to an error. Extensions All files are fundamentally the same in that they’re all text file, however different kinds of files should have different extensions: Header files should use a .h extension (.h/.hpp/.hxx). Which particular one of these you use doesn’t matter. C source files should use .c (.c only). (But that’s for ‘C’ language.)

    read more
    Aaron Comments Off on Header Files, Source Files, & Extension Names–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Printers & Multifunction Devices—NETWORKING ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 9, 2021

    LinkedIn Learning Path–Comp TIA A+ and Network + Courses…

    December 30, 2020

    Arch Linux/Slackware Linux Install Notes

    June 1, 2021
  • Tech

    Class Methods & Separating Interface From Implementation–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    Class Methods Methods, or member functions, are functions that belong to the class. There are two ways to define functions that belong to a class, or member functions, or methods. Inside the class definition Outside the class definition (including from a different file like a source file) To define a member function outside the class definition, you have to declare it inside the class (with a function prototype), and then define it outside of the class. This is done by specifying the name of the class, followed by the scope resolution operator ( :: ), followed by the name of the function. Separating Interface from Implementation *Note: It’s better software…

    read more
    Aaron Comments Off on Class Methods & Separating Interface From Implementation–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Amazon’s “Sidewalk” Mesh Network Goes Live; All Devices Are Opted-In Automatically By Default

    June 8, 2021

    Hackers Breach Thousands of Security Cameras, Exposing Tesla, Jails, Hospitals…

    March 10, 2021

    Symbols!!! [Ruby Programming Language Notes]

    May 19, 2021
  • Tech

    Classes & Objects–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    C++ Classes & Objects Classes and Objects are the two main aspects of OOP. Ex: Class Objects Apple Fruit Banana Mango or: Class Object Volvo Car Audi Toyota A class is a template for objects, and an object is an instance of a class. When the individual objects are created they inherit all the variables and functions from the class. Everything in C++ is associated with classes & objects, along with its attributes (data members–such as “weight” & “color”), and methods (member functions–such as “drive” & “brake” for a “car”). Attributes & methods are basically variables & functions that belong to the class. These are often referred to as “class…

    read more
    Aaron Comments Off on Classes & Objects–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Pointers–STRUCTURED PROGRAMMING Course Notes

    May 29, 2021

    Hashes–Another Data Structure!!! [Ruby Programming Language Notes]

    May 18, 2021

    Safety & Professionalism—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 3, 2021
  • Tech

    Computer Organization–Notes

    May 25, 2021 /

    Computer Organization Input Unit–the “receiving” section. It obtains info from input devices & places it at the disposal of the other units for processing. Output Unit–the “shipping” section takes information that the computer has processed & places it on various output devices to make it available for use outside the computer. (i.e.–displayed on screens, printed on paper, played on audio devices, or used to control other devices. Can also be output to networks, such as the Internet. Memory Unit–this rapid-access, relatively low-capacity “warehouse” section retains info that has been entered through the input unit, making it immediately available for processing when needed. Also retains processed info until it can be…

    read more
    Aaron Comments Off on Computer Organization–Notes

    You May Also Like

    Blockchain & Money: Session 14: Blockchain Payments, Part 2 by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 20, 2021

    Array-Giving Enumerables!!! [Ruby Programming Language Notes]

    May 18, 2021

    Wireless, Virtual, Cloud, & Mobile Networking–Advanced IP Networking–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 15, 2021
  • Tech

    Functions, & O.O.P.–C++ Notes (C Plus Plus Notes)

    May 25, 2021 /

    Functions Performing a task in a program requires a function! The function hides from its user the complex tasks that it performs. C++ Functions–A function is a block of code which only runs when it is called. Data, known as parameters, can be passed into a function. Functions are used to perform certain tasks, or actions, and they are important for reusing code: Define the code once, and use it many times. C++ provides some pre-defined functions, such as ‘main()‘ which is used to execute code. But you can also create your own functions to perform certain actions. C++ Functions consist of two parts: Declaration–the functions name, return type, and…

    read more
    Aaron Comments Off on Functions, & O.O.P.–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Blockchain & Money: Session 21: Post Trade Clearing, Settlement, and Processing, by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 21, 2021

    Learning To Program Is Hard…

    December 30, 2020

    Safety & Professionalism—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 3, 2021
  • Tech

    What is a “Function” in Programming?, & What is “Object Oriented Programming” (OOP)–Notes

    May 24, 2021 /

    Functions Function–a block of code packaged together with a name. Functions are a core feature of all programming languages. aka–sub-routines, methods, or some other name. a way to break up your code. a key benefit of functions is that they help us avoid writing the same lines of code again & again. Once you create a function, you can call it by using its name followed by a set of parenthesis( ). Functions can change their behavior depending on the parameters and arguments given. To have a function return a value, use the “return” statement. Ex: ‘return my_value’ Being able to return values from functions is a cornerstone of programming.…

    read more
    Aaron Comments Off on What is a “Function” in Programming?, & What is “Object Oriented Programming” (OOP)–Notes

    You May Also Like

    Understanding Networks–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 11, 2021

    What is a program?–Notes…

    May 21, 2021

    Declarations, Prototypes, Definitions, & Implementations–C++ Notes (C Plus Plus Notes)

    May 26, 2021
  • Tech

    Some Quick Notes On Python Syntax…

    May 24, 2021 /

    Some Quick Notes On Python Syntax: Python was designed for readability, and has some similarities to the English language with influence from mathematics. Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses. Python relies on indentation (using whitespace), to define scope; such as the scope of loops, functions, & classes. Other programming languages often use curly-brackets for this purpose. Python uses the colon symbol (:) and indentation for showing where blocks of code begin and end. That is, blocks in Python, such as functions, loops, ‘if’ clauses and other constructs, have no ending identifiers (other than the start of…

    read more
    Aaron Comments Off on Some Quick Notes On Python Syntax…

    You May Also Like

    Securing TCP/IP–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 14, 2021

    Printers & Multifunction Devices—NETWORKING ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 9, 2021

    5 Strategies for Reinventing Your Career in Uncertain Times…

    December 30, 2020
  • Tech

    A Comment on Comments In Programming Languages…

    May 24, 2021 /

    A Comment on Comments: One of the most important of programming tools is comments! Comments are just lines in the programs which describe what’s going on. Comments can tell the programmer what’s going on and more importantly why! Good comments are important if the programmer reading the code isn’t the one who wrote it, or, it’s been a long time since they wrote it. Another way of thinking about comments is that, “comments are Code!“, and rather than comments explaining code to other programmers, CODE explains the comments to the computer! Either way comments are useful and important and every language has a way of indicating comments. Python uses a…

    read more
    Aaron Comments Off on A Comment on Comments In Programming Languages…

    You May Also Like

    Control Statements–STRUCTURED PROGRAMMING Course Notes

    May 27, 2021

    5 Strategies for Reinventing Your Career in Uncertain Times…

    December 30, 2020

    Blockchain & Money: Session 16: Central Banks and Commercial Banking, Part 2 by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 21, 2021
  • Tech

    Arithmetic Operators Notes

    May 24, 2021 /

    Arithmetic Operators Notes Operator Example Description M + N Addition of M and N M – N Subtraction of N from M M * N Multiplication of M and N M / N Division of M by N (The result will be a real number.) M // N Integer division of M by N (The result will be an integer.) M % N Modulo: find the remainder of M divided by N M ** N Exponentiation: M to the power of N (e.g., 2 ** 4 results in 16. 2*2*2*2=16 Arithmetic Operators Note: Python also has the math module that contains common math functions (such as sin, cos, etc.) Shortcut…

    read more
    Aaron Comments Off on Arithmetic Operators Notes

    You May Also Like

    Blockchain & Money: Sessions 1 & 2: Introduction and Money, Ledgers & Bitcoin by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 13, 2021

    Troubleshooting Operating Systems–NETWORKING ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 10, 2021

    Working With the Command-Line Interface–NETWORKING ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 10, 2021
 Older Posts
Newer Posts 

Archives

Categories

More

About

Documentation

Vim

Recent Posts

  • Metaverse security is a thing because security is still a thing…
  • What is a password manager and why do you need one…
  • What Is The Metaverse?
  • FAA Plans Warnings on 5G…What 5G Means for the FAA, FCC and Air-safety…
  • Blockchain & Money: Session 18: , by M.I.T. Sloan School of Management with Professor Gary Gensler

Tags

2020 A+ Bitcoin Blockchain C++ Careers CLI Cloud Coding CompTIA CompTIA A+ CompTIA Network+ Course Notes Covid-19 Crypto Cryptography Cyberattack Cybersecurity Data Structures Definitions Economy Essential Music Functions Learning Life M.I.T. Methods Mobile Music Music Video Networking News Notes NYC Peering Programming Ruby Security Structured Programming TCP/IP Tech Terminal The Internet Video Wireless Networking
© 2025 Starby Four.
Ashe Theme by WP Royal.