All Projects → AYIDouble → Binary-Calculator-JavaScript

AYIDouble / Binary-Calculator-JavaScript

Licence: MIT license
📱 A handy Calculator for Binary operations, that works on all Devices 📱 💻 🖥 | ⛓ https://play.google.com/store/apps/details?id=com.binarycalculator.ayidouble.binarycalculator.app ⛓

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to Binary-Calculator-JavaScript

JabRef-Browser-Extension
Browser extension for JabRef to allow importing of new items directly from the browser.
Stars: ✭ 73 (+62.22%)
Mutual labels:  firefox
binary.com-bot
Scripts for using on Binary.com Bots.
Stars: ✭ 60 (+33.33%)
Mutual labels:  binary
Prismatic-Night
A dark themed startpage and dark themes for Firefox and Linux inspired by Material design and Adapta.
Stars: ✭ 287 (+537.78%)
Mutual labels:  firefox
descent-app
Top of descent path calculator. Let's calculate your descent!
Stars: ✭ 28 (-37.78%)
Mutual labels:  calculator
exocortex-halo
Various and sundry additional pieces of software I've written to incorporate into my exocortex.
Stars: ✭ 65 (+44.44%)
Mutual labels:  interactive
react-google-photo
React lightbox component using the google photo style
Stars: ✭ 18 (-60%)
Mutual labels:  responsive
Geolocate-IP-Browser-Extension
A browser extension, which shows you the origin of your IP address.
Stars: ✭ 21 (-53.33%)
Mutual labels:  firefox
devtools
A simple set of tools for teams building live Carbon pages.
Stars: ✭ 31 (-31.11%)
Mutual labels:  firefox
Rainbow-Wifi-Hack-Utility-Android
The program implements brute Wi-Fi network method on platform Android
Stars: ✭ 39 (-13.33%)
Mutual labels:  smartphone
svelte-gantt
📆 Interactive JavaScript Gantt chart/resource booking component
Stars: ✭ 226 (+402.22%)
Mutual labels:  interactive
fxp-jquery-sidebar
A responsive and fluid sidebar with jQuery and Hammer.js
Stars: ✭ 14 (-68.89%)
Mutual labels:  responsive
hes-gallery
Light, dependency free, responsive gallery script
Stars: ✭ 27 (-40%)
Mutual labels:  responsive
HabrSanitizer
HabroSanitizer - home for the Chrome/Firefox extension to sanitize Habr.com (habarahabr) from the graphomaniac authors
Stars: ✭ 101 (+124.44%)
Mutual labels:  firefox
wasm-joey
Serverless Wasm - A lightweight Node.js application for deploying and executing WebAssembly(Wasm) binary-code via HTTP
Stars: ✭ 48 (+6.67%)
Mutual labels:  binary
bookvis
Sources of the book "Displaying time series, spatial and space-time data with R" (2nd Edition)
Stars: ✭ 52 (+15.56%)
Mutual labels:  interactive
sirdez
Glorious Binary Serialization and Deserialization for TypeScript.
Stars: ✭ 20 (-55.56%)
Mutual labels:  binary
mdash
⭐️ Lightweight new tab page for Chrome/Firefox, synced with your bookmarks
Stars: ✭ 19 (-57.78%)
Mutual labels:  firefox
Exploits
A personal collection of Windows CVE I have turned in to exploit source, as well as a collection of payloads I've written to be used in conjunction with these exploits.
Stars: ✭ 75 (+66.67%)
Mutual labels:  firefox
pontoon-addon
Tools for Pontoon and its integration into the browser.
Stars: ✭ 13 (-71.11%)
Mutual labels:  firefox
whatsapp-bot
Made with Python and Selenium, can be used to send multiple messages and send messages as characters made of emojis
Stars: ✭ 34 (-24.44%)
Mutual labels:  firefox

🔟 Binary Calculator JavaScript 🔟

Link : https://ayidouble.github.io/Binary-Calculator-JavaScript
Mobile App : https://github.com/AYIDouble/Binary-Calculator-Android-Java-App
Official Google Play Store Download Link : https://play.google.com/store/apps/details?id=com.binarycalculator.ayidouble.binarycalculator.app

A handy Calculator for binary operations, that works on all devices. 📱 💻 🖥

Feel free to use the Calculator for teaching Numeral systems as an example. If you have Suggestions or find Errors, you're free to contact me on GitHub or submit your changes. The Reason why I build this Calculator was, because there wasn't a good one on the Web. The next Project will be a ternary Calculator for ternary calculations with trytes and trits, this will be a perfect template to create such one.

📱 Mobile (Smartphone): 📱

Binary Calculator Addition Subtraction Multiplication Division NOT AND OR XOR Mobile (Smartphone) Binary Calculator Addition Subtraction Multiplication Division NOT AND OR XOR Mobile (Smartphone) Binary Calculator Addition Subtraction Multiplication Division NOT AND OR XOR Mobile (Smartphone)

💻 Desktop: 🖥

Binary Calculator Addition Subtraction Multiplication Division NOT AND OR XOR

The Binary Calculator is just a Website that each possible device can access to.

You can use the Binary Calculator on your: 📱 💻 🖥

  • Smartphone (Android/iOS etc.) 📱
  • Tablet (Chrome, Firefox, Edge, Safari) 📱
  • Laptop (Chrome, Firefox, Edge, Safari) 💻
  • Desktop (Chrome, Firefox, Edge, Safari) 🖥

📱 FREE Download Google Play Store: 📱

Free Google Play Store Binary Calculator Addition Subtraction Multiplication Division NOT AND OR XOR Mobile (Smartphone)

Binary Operations ✖️

  • + (Addition)

  • - (Subtraction)

  • * (Multiplication)

  • / (Division)

  • ! (NOT) ex. ! 10101010 = 01010101

  • << (Bitwise Left Shift) ex. 1010 << 0101

  • >> (Bitwise Right Shift) ex. 1010 >> 0101

  • AND / NAND

  • OR / NOR

  • XOR / XNOR

As efficient as possible ⚙️

The Calculator is designed to give responses on every action, this is noticeable as an example at the addition of two Bytes, while you're typing, an algorithm already calculates every number you type and displays the result.

The Calculator allows you to

  • see how Hexadecimal Values are stored in Binary (ex. HTML Color Codes RGB(255, 255, 255) = RGB(8-Bit, 8-Bit, 8-Bit))
  • how much 8, 16, 32 Bit can store, (ex. unsigned 8-Bit can store values from (00000000) 0 ... 255 (11111111))
  • see how other numeral systems are working (ternary, quaternary, octal, hexadecimal)

The Future 💡

  • Implementing a switch that allows you to change between Unsigned and Signed (negative numbers possible, ex. unsigned 16-Bit Integer).
  • Using BigNumber.js, this is needed to display 64-Bit, 128-Bit , 256-Bit, ... (JavaScript has no datatypes, var is being saved as a signed 32-Bit Integer +- 2 147 483 647).
  • More responsive elements and better support for mobile devices.
  • Implementing a Ternary Calculator that is working with Trits and Trytes, this is very interesting for quantum mechanics (Quantum Computing). It's a good way of a concept that could be used to use the power of Qubits that can have multiple states. It's Done, Check it out here!
  • More numeral systems.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].