New pages
Jump to navigation
Jump to search
16 June 2025
- 05:1305:13, 16 June 2025 Fetch Posts From HIVE Blockchain (hist | edit) [20,089 bytes] AwesomO (talk | contribs) (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...")
- 03:3503:35, 16 June 2025 Editing Find Hive Users Memo Key and Send Encrypted Message (hist | edit) [22,112 bytes] AwesomO (talk | contribs) (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=...")
3 June 2025
- 22:1122:11, 3 June 2025 SCP Basics (hist | edit) [3,841 bytes] AwesomO (talk | contribs) (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...")
- 11:2911:29, 3 June 2025 Ubuntu 24.04 xmlstarlet xml to text converter extractor (hist | edit) [544 bytes] AwesomO (talk | contribs) (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...")
- 00:0600:06, 3 June 2025 Ubuntu 24.04 SelfHost AI Ollama Thinkpad T470 External GPU Razor Core X with GeForce GTX 970 (hist | edit) [32,696 bytes] AwesomO (talk | contribs) (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...")
2 June 2025
- 22:5322:53, 2 June 2025 SelfHost AI (hist | edit) [208 bytes] AwesomO (talk | contribs) (Created page with " place holder")
29 May 2025
- 19:3119:31, 29 May 2025 CompleteNoobs Genesis (hist | edit) [21,749 bytes] AwesomO (talk | contribs) (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...")
- 15:5015:50, 29 May 2025 Python3 Script for Random Magic Bytes (hist | edit) [1,119 bytes] AwesomO (talk | contribs) (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...")
- 15:4115:41, 29 May 2025 Hex numbers explained (hist | edit) [3,519 bytes] AwesomO (talk | contribs) (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...")
5 May 2025
- 08:2408:24, 5 May 2025 Ubuntu 24.04 - SSMTP - with smpt2go.com (hist | edit) [5,139 bytes] AwesomO (talk | contribs) (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...")
21 April 2025
- 21:5121:51, 21 April 2025 N33Bcoin (hist | edit) [2,343 bytes] AwesomO (talk | contribs) (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 Windows 10 VirtualBox N33Bcoin (hist | edit) [10,259 bytes] AwesomO (talk | contribs) (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 N33Bcoin 0.0.1 (hist | edit) [122,018 bytes] AwesomO (talk | contribs) (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...")
20 April 2025
- 19:2119:21, 20 April 2025 N33Bcoin Address Generator Bitcoin (hist | edit) [5,727 bytes] AwesomO (talk | contribs) (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...")
- 18:3118:31, 20 April 2025 Python Generate Public Private Key Pair Crypto Bitcoin (hist | edit) [2,191 bytes] AwesomO (talk | contribs) (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...")
- 15:1915:19, 20 April 2025 GenesisH0 Creating Genesis Hash (hist | edit) [15,180 bytes] AwesomO (talk | contribs) (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...")
- 15:1615:16, 20 April 2025 GenesisH0 Python Script (hist | edit) [8,175 bytes] AwesomO (talk | contribs) (Created page with "{{:LICENCE_HEADER_APACHE2}}")
16 April 2025
- 22:0722:07, 16 April 2025 Creating a Windows USB installer from linux (hist | edit) [1,843 bytes] AwesomO (talk | contribs) (Created page with " * Been wasting a whole day following tuts on how to create a windows install usb using linux and running into non stop errors, best method so far booted windows, but had media driver issue. * '''Working method''', install windows on virtual box and passthrough usb to use windows ''Media Creation Tool''' to create working USB. ==Install windows in VirtualBOX and pass through usb== * Need license key now just to install windows in VBox - using win10pro '''Windows_10_...")
20 March 2025
- 23:4523:45, 20 March 2025 Scp only (hist | edit) [4,957 bytes] AwesomO (talk | contribs) (Created page with "==scp only account key and path== ===Create Account on Server=== Create user account you are going to use:<br> <code>adduser rscp</code> Make sure user has a '''.ssh''' directory to send public key to:<br> * TIP: If logged in as '''root''' for permissions reasons you may want to run as user: <code>su - <username> -c "<command>"</code> <code>mkdir /home/rscp/.ssh</code> Make a Directory to transfer files to:<br> <code>mkdir /home/rscp/media</code> Note: If you see err...")
- 20:4120:41, 20 March 2025 Ubuntu 24.04 Brute-Forcing a Forgotten kpcli .kdbx Passphrase (hist | edit) [18,569 bytes] AwesomO (talk | contribs) (Created page with " Kpcli Basics Tut page So you forgotten your keepass password, well ..... there is no one to call. If you really want to try and force it open, here is a simple tut for completenoobs: ==Step 1 - creating a kpcli database with password == ===Install Kpcli=== <code>sudo apt install kpcli</code> ===Open Kpcli=== <code>kpcli</code> ===Create passworded database on kpcli=== * Will be Prompted for a mast...")
- 16:5116:51, 20 March 2025 Ubuntu 24.04 kpcli Perl How-To (hist | edit) [4,061 bytes] AwesomO (talk | contribs) (Created page with "== Ubuntu 24.04 kpcli Perl How-To == This guide shows how to set up `kpcli`, a Perl script for managing KeePass databases, on Ubuntu 24.04. * This Page is if you want to run the '''perl script''' * '''If you want an easy way to run kpcli please use apt or snap - Click here for more info''' We’ll download `kpcli-4.1.3.pl`, install its Perl dependencies, and get it running—all step-by-step. == What i...")
- 14:3014:30, 20 March 2025 Ubuntu 24.04 kpcli How-To: A Noob’s Guide to KeePass CLI (hist | edit) [6,951 bytes] AwesomO (talk | contribs) (Created page with "== Ubuntu 24.04 kpcli How-To: A Noob’s Guide to KeePass CLI == Welcome to this beginner-friendly guide on using `kpcli`—a command-line tool to manage your KeePass password databases on Ubuntu 24.04! Whether you’re new to the terminal or just want a simple way to handle passwords, this walkthrough will get you up and running. We’ll cover installing `kpcli`, creating a database, adding entries, searching, exporting, and more—all step-by-step, with tips to keep yo...")
19 March 2025
- 20:3720:37, 19 March 2025 Ubuntu 24.04 Terminal CLI Processes and Services (hist | edit) [7,499 bytes] Test1 (talk | contribs) (Created page with "== Ubuntu 24.04 Processes and Services == Ubuntu 24.04 introduces updated tools and enhancements for managing processes and services. This guide covers how to monitor, control, and optimize processes and services on your Ubuntu 24.04 system, including practical examples like running applications in the background and managing system services with <code>systemd</code>. == Introduction == Processes and services are fundamental to the operation of any Linux system, inclu...")