Home page
Communities
Stats
About read.cash
Register
Login
Open register popup
read.cash
Topics
Life
Cryptocurrency
Blog
Writing
Experiences
Story
Blogging
Crypto
Bitcoin Cash
Thoughts
Blockchain
Money
BCH
Experience
Personal
Cryptocurrencies
Bitcoin
read.cash
Freewrite
Reality
Finance
Motivation
Love
Investment
Personal Thoughts
Journey
Family
Random
Travel
Food
...All topics...
Communities
Login
Get Started
Fria
Computer Programmer
User for
3 years
| Last online 4 months ago
(show activity)
1
Subscribe
@Fria
·
2 years ago
Exodus 3:15 (NWT) Then God said once more to Moses: “This is what you are to say to the Israelites, ‘Jehovah the God of your forefathers, the God of Abraham, the God of Isaac, and the God of Jacob, ha...
1 likes
·
0
comments
·
Bible Time (33bb)
@Fria
·
2 years ago
Matthew 7:7 (NWT) Keep on asking, and it will be given you; keep on seeking, and you will find; keep on knocking, and it will be opened to you;
1 likes
·
0
comments
·
Bible Time (33bb)
@Fria
·
2 years ago
1 Timothy 4:16 (NWT) Pay constant attention to yourself and to your teaching. Persevere in these things, for by doing this you will save both yourself and those who listen to you.
1 likes
·
0
comments
·
Bible Time (33bb)
@Fria
·
2 years ago
Computer Graphics: Domino Clock using C Language
Since I was a kid I'm very curios about things and i like games and i played with dominos and I thought about a clock like a domino so now I programmed one... hour minute 1 05-09 o....
1 likes
·
0
comments
·
Programming Languages (ec99)
@Fria
·
2 years ago
Computer Graphics: Turtle Graphics using C Language
Turtle graphics started way back 1967 it was included in LOGO programming language a programming language for kids and adults alike and because of its easy syntax and visual feedback with simple anima...
2 likes
·
1
comments
·
Programming Languages (ec99)
@Fria
·
2 years ago
Esoteric Programming Language: PBrain Interpreter using C Language
PBrain is a procedural brainf*ck brainf*ck instructions: . -> output a character from current memory cell , -> input a character and put into current memory cell + -> increment current memory cel...
1 likes
·
0
comments
·
Programming Languages (ec99)
@Fria
·
2 years ago
Lossless Data Compression: Huffman Encoding/Decoding using C Language
Example: Sample Data: ABRACADABRA Character Frequency Count: A -> 5, B -> 2, C -> 1, D -> 1, R -> 2 Huffman Tree: Huffman Table: A -> 0 B -> 100 C -> 1010 D -> 1011 R -> 11 Substitut...
1 likes
·
0
comments
·
Programming Languages (ec99)
@Fria
·
2 years ago
Lossless Data Compression: Run Length Encoding/Decoding using C Language
Run length encoding is one of the simplest lossless data compression algorithm and it goes like this just count the number of same adjacent characters and write <number of characters> <character>... a...
3 likes
·
3
comments
·
Programming Languages (ec99)