• 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

    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

    Hackers Add a Backdoor to PHP Source Code; 79% of Websites Use PHP

    March 30, 2021

    What is Hurricane Electric? Let’s Find Out Whilst Learning About Some Computer/Cyber Network Fundamentals!!!

    April 14, 2021

    Blockchain & Money: Session 17: Secondary Markets and Crypto-Exchanges, by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 21, 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

    Functions–STRUCTURED PROGRAMMING Course Notes

    May 27, 2021

    ‘Kings of Leon’ Will Be the First Band to Release an Album as an NFT; Making it a Digital Collector’s Item

    March 4, 2021

    The Visible Computer—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 5, 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

    Start With Why — How Great Leaders Inspire Action | Simon Sinek | TedX [VIDEO]

    June 2, 2021

    Enumerables–A Cleaner Way to Iterate!!! [Ruby Programming Language Notes]

    May 18, 2021

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

    June 8, 2021
  • 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

    What is a program?–Notes…

    May 21, 2021

    Building a Real-World Network–Advanced IP Networking–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 15, 2021

    Building a P.C.—NETWORKING ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 9, 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

    Protected: What is Equinix? And Why Are They So Important??

    March 23, 2021

    Post-Quantum Cryptography: The Race Is On

    March 18, 2021

    Enumeration–Functions–STRUCTURED PROGRAMMING Course Notes

    May 27, 2021
  • Tech

    Raw Materials–Data, Variables, & Data Types–Notes…

    May 24, 2021 /

    Raw Materials Data, Variables, & Data Types The ‘materials‘ we use in programming are the data that we can manipulate. Data is the “stuff“, the raw information, that our program manipulates. Programs manipulate data in many ways, often depending on the type of data. Data comes in the form of many types, and each data type has a number of operations–things that we can do to it. So, the things that we can do, or perform on the data, depends on what type of data we have at our disposal. Variables refer to data and (depending on the programming language) may need to be declared before being defined, or used.…

    read more
    Aaron Comments Off on Raw Materials–Data, Variables, & Data Types–Notes…

    You May Also Like

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

    May 18, 2021

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

    April 19, 2021

    Blockchain & Money: Session 23: Digital ID, by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 23, 2021
  • Tech

    What is a program?–Notes…

    May 21, 2021 /

    What is a program? A program is a sequence of instructions that specifies how to perform a computation. A few basic instructions appear in just about every language: input–get data from a keyboard, a file, or some other device. output–display data on the screen or send data to a file or other device. maths–perform basic mathematical operations like addition & multiplication. conditional execution–check for certain conditions and execute the appropriate sequence of statements. repetition–perform some action repeatedly, usually with some variation. That’s pretty much all there is to it! Every program is made up of instructions that look more or less like these! We can describe programming as the process…

    read more
    Aaron Comments Off on What is a program?–Notes…

    You May Also Like

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

    May 12, 2021

    Blockchain & Money: Session 7: Technical Challenges by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 16, 2021

    Enumeration–Functions–STRUCTURED PROGRAMMING Course Notes

    May 27, 2021
  • Tech

    Notes to Self 11/05/2020

    May 20, 2021 /

    Notes to Self 11/05/2020 “Hack everything but harm none.” OSSTMM (www.osstmm.org); Pronounced “aw-stem”. Open Source Security Testing Methodology Manual Interactions–Trust interactions are between people & things that are familiar with each other. Access interactions happen between unknown people or systems. (You can use an ‘access‘ to take what you want yourself, or you can trick someone who has a ‘trust’ with the target to take what you want for you and give it to you.) Visibility interaction– ‘opportunity’; knowing if there’s something to interact with or not. “Privacy is the opposite of ‘Visibility’ and it’s a powerful way to avoid being a target. Whether its on dangerous streets, in the…

    read more
    Aaron Comments Off on Notes to Self 11/05/2020

    You May Also Like

    Moving Around (pushd & popd): Notes: List of Terminal Commands

    May 20, 2021

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

    May 10, 2021

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

    April 20, 2021
  • Tech

    HTML & CSS Notes

    May 20, 2021 /

    HTML HTML is the way a webpage is STRUCTURED! It is the markup language that contains all the actual stuff that a web page has. For example, all the text on a page lives inside HTML tags that tell the browser how to order (structure) the content on the page. Note: you can right-click any element on a web page & choose “Inspect Element” to open up your browsers Developer Tools, & it will show you the structure of the page. CSS CSS is the way a webpage LOOKS visually. CSS tells the browser if you want to display any of those tags a particular way, for example, turning a…

    read more
    Aaron Comments Off on HTML & CSS Notes

    You May Also Like

    A 3-Tiered Approach to Securing Your Home Network

    March 10, 2021

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

    May 14, 2021

    Modern Ethernet–The Physical Network–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 11, 2021
  • Tech

    What is GIT? GIT–Version Control System

    May 20, 2021 /

    What is GIT? Git is a popular Version Control System. The aim of Git is to manage software development projects, and its files, as they are changing over time. Git stores this information in a data structure called a repository! A git repository is a central place where developers store, share, test and collaborate on web projects. A repository is kind of like an enhanced Unix directory, or folder, but with the additional ability to track changes to every file and subdirectory. The way to create a new repository with Git is with the “init” command (short for “initialize”_, which creates a special hidden directory called “.git”, where Git stores…

    read more
    Aaron Comments Off on What is GIT? GIT–Version Control System

    You May Also Like

    Protected: What is Equinix? And Why Are They So Important??

    March 23, 2021

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

    April 19, 2021

    Security + Course Notes

    June 1, 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.