Advanced Search
Search Results
105 total results found
Divide both Sides
What: Divide both sides of == by the same expression. Why: Such side-wise division is an essential computation for solving equations. Time to Complete: 3 hours. eq = (x - 3 == 17*y); lhs = eq.left / 17; rhs = eq.right /17; eq2 = (lhs == rhs); show eq2;...
Multiply both Sides
What: Multiply both sides of == by the same expression. Why: Such side-wise multiplication is an essential computation for solving equations. Time to Complete: 4 hours. eq = (x - 3 == y / 13); lhs = eq.left * 13; rhs = eq.right * 13; eq2 = (lhs == rhs);...
Preface
This mostly live-code computational Wiki book addresses two audiences: STEM high school students to undergraduate college level students Programmers' and computer scientists' learning habitat to freely experiment with new concepts in programming languages On...
Implicit Line Equation
line
Words
"I am a word"
solve a*x +b == 0 for x
sol = solve a*x +b == 0 for x; show sol; save as solve4; Output "sol" β {-(b/a)}
Spray a Line!!!
What: Sprinkle points along a 2D line and play Why: The equations and inequlities dealing with lines suddenly make better sense How: Get your eyes trained on reading math and code, by simply copy-paste one or few lines of the ff scripts below into new ff pr...
Manual Operations on the Sides
What: Use ff to duplicate the manual ways handling equations as taught in school teachings. Why: To make sure you understand how to manipulate sides of an equation on your own. How: Simply try to duplicate what the teacher does to solve an equation by work...
Why???
A Very Simple Idea Create a programming language that in one sentence it is part algebraic or programming language like and part loose spoken phrases. We called these Free Form expressions or simply Free Form. Rather immediately it became obvious such language...
Path Variables
Paths and Options variables Confidential, unauthorized access forbidden. CCN Studios internal proprietary software documentation. πͺ3.0 Synopsis Path variables are based upon the file paths β/../../..β and β../../..β string formats. In Free Form Programm...
=
= operator in Free Form Programming Language Confidential, unauthorized access forbidden. CCN Studios internal proprietary software documentation. πͺ3.0 Synopsis Generally speaking the operation of the operator = in most programming languages is to copy...
hash[ ] vs. π«@ vs. π«[ ]
A hash code is a fixed-size numerical value generated from input data of arbitrary size, used primarily for indexing data in hash tables. It allows for efficient data retrieval and storage by mapping variable-length data to a fixed-length representation. Th...
Preface
The Free Form Programmable Cryptography is designed for applicable coding, and standalone application units with instant use and benefit for the public. The Free Form Programmable Cryptography uses ideograms, pictograms and small Spoken phrases, however with...
π, π, π, β
A very simple and a very short but a very powerful program: π; show (βπ); show (βπ); show π also π; save as blox; Output "βπ" β "0x40d93f50D4a56Be60fDe352c01097E1E42405b69" "βπ" β "0xa020807ff2c90743afbcb8c5f74c191cb6eb037f1613211d42a4bf3977e5f9f...
π: Public Key
π: Private Key
π
π is a mighty operator, function and a cloud data source all at once! As an operator or function it is used with no arguments and it creates the Free Form Programming Language's (ff) default blockchain whic is currently set to Bloxberg 2.0. In the ff scrip...
Encrypt: ππ
Symbol πbehaves like a binary operatorπ encrypts what is on its rhs e.g. πmππuses the key on its lhs to encryptcrypt = ππ m just like e.g. multiplication copies the resultant into the lhs of = ππ m behaves like a product by the operator πincorporating is rh...