You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find the pattern to calculate a random number and classify it.
This fast algorithm can rationalize numbers as (a+√b)÷m. I'm putting this online mainly because I can't find it anywhere except for a lot of junk. I will show how to construct it so you can solve the computational number patterns to things like PI, base e, and even angles of sine and cosine.
Analizing finite numbers.
First, we will begin by dividing two numbers.
56÷25=2.24
If we ask how many times 25 goes into 56, the answer is 2 since the value before the decimal point is 2 after the division.
Building your own programming language, or compilers.
Introduction
This introductory text lets you fully understand what assembly is and the design process that went into designing modern compilers and programming languages, including a basic understanding of application container formats on different operating systems, such as relocations, loading, and linking.
Central processing unit (CPU)
The most important part of any system is the central processing unit, which actually runs your program's instructions.
A central processing unit is defined by core type for which kind of instructions it understands.
Graphics performance. Graphics before HTML5 canvas existed.
At one point in time, writing web applications ware stupid as to do any graphics at all involved using div elements one pixel in size with an absolute x, y position and color.
The other method I developed was a graphics engine that let you set the width and height of a bit map. Each pixel color was stored and referenced to the bytes in the bitmap for each pixel color. I implemented basic text and 2D graphics drawing functions as I built basically a bitmap codec that wrote directly to the web page from javascript memory.
Both methods gave poor performance but allowed me to do some 3D graphics using sine and cosine rotation transformations and line drawing functions. The bitmap method was faster, but the performance was still poor and would only give me the ability to render basic 3D shapes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Modern artificial intelligence, data algorithms, and the limits of computation.
Modern artificial intelligence systems and data algorithms that are great for modern application development, but are only sometimes fully applied to software and our daily lives.
This note/document teaches you how information breaks back into its original form, how quantum computers can perform such operations faster than classical computers, and why.
The smallest unit of information
We can't have information using a single symbol, as there are no combinations to compare with it unless we divide the whole into two parts, such as 1 and 0, at the most abstract level.
We put everything in place values of two, and then compare the information and real-world data to its patterns and calculation functions (using the sum of products) that express the data, information, or mathematical calculations. This may not sound easy, but it is straightforward and anyone can understand it, as it is a basic and universal method. It may even shock you at how useful, simple, and widely implemented it is.
Super Fast Bitwise Log2, for faster bit lookup algorithams.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A simple fast easy to use shell script to relocate the user folders to a flash drive or a interal system drive. Works on any linux os.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters