User contributions for AwesomO
Jump to navigation
Jump to search
16 June 2025
- 05:2005:20, 16 June 2025 diff hist +89 Fetch Posts From HIVE Blockchain No edit summary current
- 05:1305:13, 16 June 2025 diff hist +20,000 N Fetch Posts From HIVE Blockchain Created page with "* Fetching a syntax_wiki post from HIVE ==Container Setup== * create container <code>lxc launch ubuntu:24.04 hive</code> * Login to container <code>lxc exec hive bash</code> * switch to user ubuntu <code>su - ubuntu</code> ===Update System and Install Dependencies=== * Update package lists <code>sudo apt update && sudo apt upgrade -y</code> * Install essential packages <code>sudo apt install -y python3 python3-pip python3-venv git build-essential</code> * Install de..."
- 04:3304:33, 16 June 2025 diff hist +267 Editing Find Hive Users Memo Key and Send Encrypted Message →Create Virtual Environment (Recommended) current
- 04:3204:32, 16 June 2025 diff hist −160 Editing Find Hive Users Memo Key and Send Encrypted Message →Install Beem
- 03:4003:40, 16 June 2025 diff hist +104 Editing Find Hive Users Memo Key and Send Encrypted Message No edit summary Tag: Visual edit: Switched
- 03:3503:35, 16 June 2025 diff hist +21,901 N Editing Find Hive Users Memo Key and Send Encrypted Message Created page with "=Intro= Learning about hive by tinkering * Find The Memo Public Key from username * Encrypt a Message so only the private key holder of that public key can decrypt ==Creating Container== * Creating a Container so we know reproducable (depends installed ... etc) * create container <code>lxc launch ubuntu:24.04 keys</code> * Login to container <code>lxc exec keys bash</code> * switch to user ubuntu <code>su - ubuntu</code> ==Update Container and Install Dependencies=..."
5 June 2025
- 13:2713:27, 5 June 2025 diff hist +603 Ubuntu 24.04 LXC Basic's →Rename Containers current
- 00:1000:10, 5 June 2025 diff hist −36 Main Page →We All Start as Noobs current
3 June 2025
- 22:1122:11, 3 June 2025 diff hist +3,841 N SCP Basics Created page with "==Transferring files with SCP== The Secure Copy Protocol (SCP) is a useful tool for transferring files between your local machine and a remote server using SSH. SCP ensures that the data is encrypted during transit, providing a secure and efficient way to transfer files. ===Install an SCP client=== Most Unix-based systems, including Linux and macOS, have an SCP client pre-installed. For Windows, you can use the built-in SCP client included with the OpenSSH package (a..." current
- 11:2911:29, 3 June 2025 diff hist +544 N Ubuntu 24.04 xmlstarlet xml to text converter extractor Created page with " ==Install xmlstarlet - An XML Parser == <code>sudo apt install xmlstarlet</code> ===Extract Text - ignoring tags=== * Assuming your file is input.xml, extract text content (ignoring tags): <code>xmlstarlet sel -t -v "//text()" input.xml > output.txt</code> ===Extract TAG Content=== * If the XML has specific elements you want (e.g., <content> tags), refine the query: <code>xmlstarlet sel -t -v "//content" input.xml > output.txt</code><br> Replace '''content''' with..." current
- 00:0700:07, 3 June 2025 diff hist +194 SelfHost AI No edit summary current Tag: Visual edit: Switched
- 00:0600:06, 3 June 2025 diff hist +32,696 N Ubuntu 24.04 SelfHost AI Ollama Thinkpad T470 External GPU Razor Core X with GeForce GTX 970 Created page with " * Basic Guide for Self Hosted AI on Ubuntu 24.04 on ThinkPad T470 using external graphics card using Razor Core X with GeForce GTX 970. Did try without GPU, worked but not great. ==Setting up the GPU installing drivers== <div class="toccolours mw-collapsible mw-collapsed"> Graphics Card Ubuntu 24.04 - Razor Core X with GeForce GTX 970: Notes: <div class="mw-collapsible-content"> * Plug in and turn on <code>boltctl</code><br> Ouput:<pre> noob@noob-ThinkPad-T470:~$ bolt..." current
2 June 2025
- 22:5322:53, 2 June 2025 diff hist +14 N SelfHost AI Created page with " place holder"
29 May 2025
- 19:3319:33, 29 May 2025 diff hist +27 Main Page →In Concept Mode
- 19:3219:32, 29 May 2025 diff hist +27 Main Page →In Concept Mode
- 19:3119:31, 29 May 2025 diff hist +21,749 N CompleteNoobs Genesis Created page with "==CompleteNoobs== CompleteNoobs Genesis: A Long, Long Time Ago, on a LAN Far, Far Away… I used to be a computer hobbyist, hopping from one shiny new thing to another. I’d dabble in everything, flashing routers, flashing phones, building Linux Live CDs, setting up virtual machines, learning as I went. Sometimes I’d find a golden tutorial online that walked me through the process perfectly. Other times, I’d wander the internet wilderness, cursing through “how do..." current
- 16:2616:26, 29 May 2025 diff hist −1 N33Bcoin 0.0.1 →src/chainparamsbase.cpp - API ports current
- 15:5115:51, 29 May 2025 diff hist +43 N33Bcoin 0.0.1 →Line 110 Magic Bytes
- 15:5015:50, 29 May 2025 diff hist +1,119 N Python3 Script for Random Magic Bytes Created page with " <code>$EDITOR MagicBytes.py</code> <pre> import random def generate_magic_bytes(): while True: # Generate 4 random bytes magic_bytes = [random.randint(0x80, 0xFF) for _ in range(4)] # Convert to 32-bit integer magic_int = (magic_bytes[0] << 24) | (magic_bytes[1] << 16) | (magic_bytes[2] << 8) | magic_bytes[3] # Check if it's a large number (arbitrarily chosen as > 2 billion) if magic_int > 2000000000: r..." current
- 15:4215:42, 29 May 2025 diff hist +21 N33Bcoin 0.0.1 →Line 110 Magic Bytes
- 15:4115:41, 29 May 2025 diff hist +3,519 N Hex numbers explained Created page with "== Hex Numbers Explained == === What Are Hexadecimal Numbers? === Hexadecimal (or "hex") is a base-16 number system used to represent numbers in a compact, human-readable way, especially in computing. Unlike the decimal system (base-10), which uses digits 0–9, hexadecimal uses 16 symbols: 0–9 for values 0–9 and A–F (or a–f) for values 10–15. '''Hex Symbol Values:''' * 0–9 represent 0–9 * A = 10, B = 11, C = 12, D = 13, E = 14, F = 15 Hex numbers are wi..." current
- 13:1613:16, 29 May 2025 diff hist −344 User:ConnieHolly296 Replaced content with "BotSpam" current Tag: Replaced
- 13:1513:15, 29 May 2025 diff hist −412 User:TeganVinci003 Replaced content with "Bot Spam" current Tag: Replaced
19 May 2025
- 17:2217:22, 19 May 2025 diff hist −340 User:DaltonBarksdale Replaced content with "Bot Delete Spam" current Tags: Replaced Visual edit
- 17:2117:21, 19 May 2025 diff hist +111 N33Bcoin No edit summary current Tag: Visual edit
17 May 2025
- 14:1014:10, 17 May 2025 diff hist −606 User:LudieAshby267 Replaced content with "BOT delete" current Tag: Replaced
- 14:1014:10, 17 May 2025 diff hist −75 User:TeganVinci003 No edit summary
- 13:5513:55, 17 May 2025 diff hist +4,520 00000000 Main Page Local No edit summary current
- 13:5313:53, 17 May 2025 diff hist +38 Main Page No edit summary Tag: Visual edit: Switched
- 13:3613:36, 17 May 2025 diff hist +1,005 N33Bcoin No edit summary
5 May 2025
- 08:2408:24, 5 May 2025 diff hist +5,139 N Ubuntu 24.04 - SSMTP - with smpt2go.com Created page with " * '''NOTE''': This tut is running in a ubuntu 24.04 lxc container as user ubuntu. <code>apt update && apt upgrade -y</code> already done. * This tut is an example using smtp2go.com ==ssmtp setup== You can use a number of email providers for sending emails from server using ssmtp.<br \> I am going to use <b>smtp2go.com</b> they do provide a free service if you wish to try. <div class="toccolours mw-collapsible mw-collapsed"> smtp2go details: <div class="mw-collapsible..." current
29 April 2025
- 17:3717:37, 29 April 2025 diff hist +472 Windows 10 VirtualBox N33Bcoin →Windows open ports pass firewall current
- 00:2300:23, 29 April 2025 diff hist +33 N33Bcoin 0.0.1 →Genesis Keys
- 00:2100:21, 29 April 2025 diff hist +67 N33Bcoin 0.0.1 →Genesis Keys
23 April 2025
21 April 2025
- 21:5121:51, 21 April 2025 diff hist +1,177 N N33Bcoin Created page with "n33bcoin is a very light fork of bitcoin 0.14.3 code base, so we can learn more about bitcoin by doing (without losing/risking your bitcoin) Bitcoin is one of the grestest open source projects of are time and should come with a free and open education project to go along side it. Buying and losing bitcoin can be expensive. But thanks to bitcoin being free and open source software, learning about bitcoin by creating and playing with your very own fork is not. Can be don..."
- 21:4921:49, 21 April 2025 diff hist +9,783 N Windows 10 VirtualBox N33Bcoin Created page with "==Installing Virtual box in windows 10 == ===depends on c++=== https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version * https://aka.ms/vs/17/release/vc_redist.x64.exe ===VirtualBox and extension pack=== https://www.virtualbox.org/wiki/Downloads * https://download.virtualbox.org/virtualbox/7.1.8/VirtualBox-7.1.8-168469-Win.exe * https://download.virtualbox.org/virtualbox/7.1.8/Oracle_Virtu..."
- 21:4721:47, 21 April 2025 diff hist +121,855 N N33Bcoin 0.0.1 Created page with "==Start up HardWare== * OS (local) Ubuntu-Mate 24.04 - this tut is done on a clean install of ubuntu-mate 24.04 ** Hardware: HP EliteDesk G1 - ram = 8GB - HD = 120GB ssd - CPU = i5-4590S CPU @ 3.00GHz ** Hardware: Thinkpad X270 - Ram - HD - CPU * Server VPS ubuntu-server 24.04 ** vultr.com ===Software OS=== * Will be using Ubuntu 24.04 as main OS - but to build this version of litecoin 0.14.2 we will be using ubuntu 18.04 in a lxc container - trying to build in 24.04..."
- 17:0217:02, 21 April 2025 diff hist −25 Host Your Own Mediawiki Online Ubuntu 22.04 →Delete a User from MediaWiki Database current
- 17:0217:02, 21 April 2025 diff hist +1,770 Host Your Own Mediawiki Online Ubuntu 22.04 →Remove admin rights
20 April 2025
- 19:2119:21, 20 April 2025 diff hist +5,727 N N33Bcoin Address Generator Bitcoin Created page with "Note: Should work on Bitcoin - Untested on Bitcoin - developed by Noob's do not trust, you been warned. * This script does the following: ** It takes user input as a seed (which can be 12 words or any random input). ** It generates a deterministic seed by hashing the input. ** It uses this seed to create an ECDSA private key on the secp256k1 curve (used by Bitcoin and n33bcoin). ** It derives the public key from the private key. ** It generates a N33B coin address from..." current
- 18:3118:31, 20 April 2025 diff hist +2,191 N Python Generate Public Private Key Pair Crypto Bitcoin Created page with "== Script Depends - Install == <code>sudo apt install python3-ecdsa</code> == Generating a Genesis private and public key == <code>$EDITOR GenPub.py</code> <pre> import ecdsa import hashlib # sudo apt install python3-ecdsa # required def generate_key_pair(): sk = ecdsa.SigningKey.generate(curve=ecdsa.SECP256k1) vk = sk.get_verifying_key() x_coord = vk.pubkey.point.x() y_coord = vk.pubkey.point.y() if y_coord % 2 == 0: compressed_pub_key..." current
- 15:1915:19, 20 April 2025 diff hist +15,180 N GenesisH0 Creating Genesis Hash Created page with "{{:LICENCE_HEADER_APACHE2}} * Append same license to page containing script * https://github.com/lhartikk/GenesisH0 ** The Script is under the Apache Version 2 License * Due to the age of the script, the best way i found to get it working was in a LXC container with python2.5 and some depends installed, this way your main system remains clean. ==Create container== <code>lxc launch ubuntu:24.04 pygen</code> <code>lxc exec pygen bash</cod..." current
- 15:1715:17, 20 April 2025 diff hist +8,148 GenesisH0 Python Script No edit summary current Tag: Visual edit: Switched
- 15:1615:16, 20 April 2025 diff hist +27 N GenesisH0 Python Script Created page with "{{:LICENCE_HEADER_APACHE2}}"
17 April 2025
- 16:5116:51, 17 April 2025 diff hist +12 Ubuntu unattended-upgrades →If automatic reboot is enabled and needed, reboot at the specific time instead of immediately current
- 16:5116:51, 17 April 2025 diff hist +11 Ubuntu unattended-upgrades →Automatically reboot even if there are users currently logged in when Unattended-Upgrade::Automatic-Reboot is set to true
- 16:5116:51, 17 April 2025 diff hist +11 Ubuntu unattended-upgrades →Automatically reboot *WITHOUT CONFIRMATION* If the file /var/run/reboot-required is found after the upgrade
- 16:5016:50, 17 April 2025 diff hist +10 Ubuntu unattended-upgrades →Do automatic removal of unused packages after the upgrade - apt-get autoremove
- 16:4916:49, 17 April 2025 diff hist +11 Ubuntu unattended-upgrades →Do automatic removal of newly unused dependencies after the upgrade