Assembly – Hello World – Variation 2

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/10/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello2.asm ; ; COMPILE ; nasm -fwin64 hello2.asm && gcc -o hello2.exe Read More …

Assembly – Check Prime Number

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Check Prime Number ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; prime.asm ; ; COMPILE ; nasm -fwin64 prime.asm && gcc -o prime.exe Read More …

Assembly – GUI Message Box

Tested in Windows 10, with NASM v2.14.02. ; —————————————————————————————- ; INFORMATION ; MrNetTek ; Assembly Message Box ; eddiejackson.net/blog ; 3/9/2020 ; free for public use ; free to claim as your own ; ; DOWNLOAD ; https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/win64/ ; ; SAVE AS ; hello_gui.asm ; ; COMPILE ; nasm -fwin64 hello_gui.asm && gcc -o hello_gui.exe Read More …

Python Vault

Python scripts demonstrating some of the functionality of the language. also see: posts   — 275 scripts — AddressBook.py Anagram.py ArgumentParser.py Arguments.py Array.py BinarySearch.py BinarySearchTree.py BinaryToDecimal.py python/BinaryTree.py BreadthFirstTraversal.py BubbleSort.py BucketSort.py CharCount.py CheckGreater.py CipherText.py Closures.py CountingSort.py CountVowels.py DecimalToBinary.py Decorators.py DepthFirstTraversal.py DoublyLinkedList.py EvenOdd.py Factorial.py Factorial2.py Fibonacci.py FileSearching.py Graph.py GuessTheNumber.py HangmanGame.py HashingFile.py HashTable.py HeapSort.py InsertionSort.py Isogram.py LCM.py ListComprehensions.py Read More …