Skip to main content

50 docs tagged with "Program"

View All Tags

.exe

.exe is defined as: portable binary executable to Package & deliver Program on Windows. Topics on: . Read more: Computer Science, General Computing Concepts, Ex

Algo JS Snippets

Algo JS Snippets. Topics on: Fibonacci Recursive. Read more: Computer Science, Computer Lang, Computer, Program, Algorithm, Algo JS Snippets | Full-Stack Wiki

Algorithm

Algorithm is defined as: Finite sequence of instructions. Topics on: Big O Notation, BFS, DFS, Globbing, Algo JS Snippets, Search Algo, Sort Algo, Heuristic. Re

BFS

BFS is defined as: Search Algo to Traverse breadth first, down Graph child layer by child layer. Topics on: . Read more: Computer Science, Computer Lang, Comput

Big O Notation

Big O Notation is defined as: (equation) to express Order Of Complexity for Algorithm as # inputs vs data points scale. Topics on: Order Of Complexity, O(1), O(

Binary Search

Binary Search is defined as: Algorithm to search element in pre-sorted Array by halving with Logarithmic Complexity. Topics on: BST. Read more: Computer Science

Bootstrap

Bootstrap is defined as: startup Program to init OS ie POST, Boot Loader, etc - or broadly to init/load/setup something. Topics on: . Read more: Computer Scienc

Browser

Browser is defined as: User Agent Program to GET & display Web Pages. Topics on: Layout engine, User Agent, Chrome, Opera, Edge, Safari, Firefox, Internet Explo

BST

BST is defined as: tree data-struct for fast insert/search. Topics on: Treap, Splay Tree. Read more: Computer Science, Computer Lang, Computer, Program, Algorit

Bubble Sort

Bubble Sort is defined as: Sort Algo to iterate elements, compare next & swap index position, to complete sort order. Topics on: Bubble Sort slow impractical -

Business Logic

Business Logic is defined as: Rules & Logic for Program to deal with users & its purpose. Topics on: . Read more: Computer Science, Computer Lang, Computer, Sof

Compile Time

Compile Time is defined as: Program lifecycle phase to Compiler Source Code. Topics on: . Read more: JS, JS Concepts, JS Engine, Call Stack, EC, Compile Time, P

Compiler

Compiler is defined as: Program to translate Source Code to Machine Code (or IR). Topics on: Compilers may use AOT or JIT, AOT Compilation. Read more: JS, JS Co

Computer

Computer is defined as: Electronic machine to run Programs to perform tasks. Topics on: Program, Hardware, Software, Middleware, OS, I/O. Read more: Computer Sc

Concern

Concern is defined as: logic/purpose of Program. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, Separation Of Concerns, Concern, Program

Containerize

Containerize is defined as: (process) to Package Program into Docker Container for xplat compat. Topics on: . Read more: Dev Tool, Docker, Containerize, Package

Decomposition

Decomposition is defined as: Factoring; Paradigm stragegy for organizing Program by breaking down complex system into simpler parts. Topics on: structured analy

Dev tool

Dev tool is defined as: Utility Program to dev Software. Topics on: API, Docker, IDE, HTTP Client, Build Tool, cURL, Test Runner, Code Sandbox, dotconfig, degit

DFS

DFS is defined as: Search Algo to Traverse depth first down Graph entire child subtree & backtrack. Topics on: . Read more: Computer Science, Computer Lang, Com

Domain

Domain is defined as: target area for Program purpose/use-case. Topics on: Web Dev. Read more: Computer Science, Computer Lang, Computer, Software, Domain, Pro

Fibonacci Iterative

Fibonacci Iterative is defined as: iterate with start sequence at 1. Topics on: . Read more: Computer Science, Computer Lang, Computer, Program, Algorithm, Algo

Fibonacci Recursive

Fibonacci Recursive is defined as: assume sequence starts with 1. Example of BAD Recursion fn. Traverse down Fibonacci Tree until reach 1. Topics on: Fibonacci

Functional Programming

Functional Programming is defined as: (Paradigm) to construct Program as MCF (Modular Programming Composable). Topics on: MCF, Pure Function, Side Effect. Read

Globbing

Globbing is defined as: Algorithm to match Wildcard Character pattern ie Glob Pattern || regex. Topics on: Wildcard Character. Read more: Computer Science, Comp

Heap Property

Heap Property. Topics on: . Read more: Computer Science, Computer Lang, Computer, Program, Algorithm, Search Algo, Binary Search, BST, Treap, Heap Property|Wiki

Heuristic

Heuristic is defined as: trial & error approach to solve problems, imperfect, approx, time-efficient solution, experience-based. Topics on: Metaheuristic. Read

JS Compiler

JS Compiler is defined as: Program to transform JS Source Code, consists of Baseline Compiler, Optimization Compiler & Monitor. Topics on: Baseline Compiler, Op

JS Engine

JS Engine is defined as: Program to execute JS Source Code, consists of Call Stack, Heap, Callback Queue & Event Loop. Topics on: Browser Vendor Engines, Call S

Logarithmic Complexity

Logarithmic Complexity is defined as: Order Of Complexity scales log(n) inputs. Topics on: . Read more: Computer Science, Computer Lang, Computer, Program, Algo

Metaheuristic

Metaheuristic is defined as: framework to solve problems by experimental Heuristic method. Topics on: . Read more: Computer Science, Computer Lang, Computer, Pr

O(1)

O(1) is defined as: constant Order Of Complexity always same for 1 input - not matter how large. Topics on: finding element in array by index. finding value in

O(n2)

O(n2) is defined as: Order Of Complexity to scale exponentially to power of 2. Topics on: . Read more: Computer Science, Computer Lang, Computer, Program, Algor

Order Of Complexity

Order Of Complexity is defined as: of difficulty to scale Algorithm inputs vs time/space. Topics on: Time Complexity, Space Complexity, Logarithmic Complexity.

Procedural Programming

Procedural Programming is defined as: (Paradigm) Imperative subset to split Program into smaller sub-tasks (Procedure). Topics on: Procedure. Read more: JS, JS

Process

Process is defined as: Program instance run on OS. Topics on: Fork, Core Dump, daemon. Read more: Computer Science, Computer Lang, Computer, OS, Process, Progra

Program

Program is defined as: self-contained sequence of Statement to perform task. Topics on: Algorithm, Scaffolding. Read more: Computer Science, Computer Lang, Comp

Runtime

Runtime is defined as: final lifecyle stage when Program is run inside EC. Topics on: . Read more: JS, JS Concepts, JS Engine, Call Stack, EC, Runtime, Program

Runtime Environment

Runtime Environment is defined as: Place to Execution Program, with platform-specific Global Scope access. Topics on: . Read more: JS, JS Concepts, Java Script

Scaffolding

Scaffolding is defined as: utility Program to generate Boilerplate/template, set App skeleton. Topics on: . Read more: Computer Science, Computer Lang, Computer

Search Algo

Search Algo is defined as: Algorithm to find a solution to a problem within a set of possibilities. Topics on: Binary Search, Linear Search. Read more: Computer

Shell

Shell is defined as: Program to expose OS functionality (via CLI). Topics on: Bash, PowerShell, Shell Script, Bourne Shell, C Shell, Korn Shell. Read more: Dev

Socksifier

Socksifier is defined as: Program to allow App to access network. Topics on: Shadowsocks. Read more: Computer Science, Network, Network Protocol, SOCKS 5, Socks

Software

Software is defined as: set of Program to perform tasks (on Computer). Topics on: Software Repository, Domain, Plugin, DRM, Deprecated. Read more: Computer Scie

Sort Algo

Sort Algo. Topics on: Bubble Sort. Read more: Computer Science, Computer Lang, Computer, Program, Algorithm, Sort Algo|FullStack Wiki by Roger J

Source Code

Source Code is defined as: Human readable Abstraction over Machine Code, to write Programs. Topics on: Readability. Read more: Computer Science, Computer Lang,

Time Complexity

Time Complexity is defined as: Order Of Complexity inputs scales with time to run Algorithm. Topics on: . Read more: Computer Science, Computer Lang, Computer,

Treap

Treap is defined as: BST with Heap Property to ins/del node. Topics on: Heap Property. Read more: Computer Science, Computer Lang, Computer, Program, Algorithm,

User Agent

User Agent is defined as: Program to rep person || bot to browse WWW. Topics on: User agent spoofing. Read more: Computer Science, Computer Lang, Computer, Soft

Web Crawler

Web Crawler is defined as: 🤖 Program to systematically browse & index all public web pages (for Search Engine). Topics on: . Read more: Computer Science, Netwo

Wildcard Character

Wildcard Character is defined as: algebraic placeholder char. Topics on: . Read more: Computer Science, Computer Lang, Computer, Program, Algorithm, Globbing, W