New pages
Jump to navigation
Jump to search
24 June 2025
- 14:5914:59, 24 June 2025 Cookies CompleteNoobs Info (hist | edit) [2,791 bytes] AwesomO (talk | contribs) (Created page with "=Privacy and Cookie Information= This page explains how we collect and use information when you visit our wiki. ==What Information We Collect== ===Essential Wiki Functions=== * '''Page Views''': Tracked via the HitCounters extension to identify popular content. * '''Session Data''': Temporary data to maintain your browsing session. * '''Server Logs''': Apache logs collect basic access information, including IP addresses, browser type, and timestamps. ===Visitor Stati...")
- 14:5714:57, 24 June 2025 Ubuntu Mediawiki Tracking Visitors (hist | edit) [3,395 bytes] AwesomO (talk | contribs) (Created page with " Options to See If Anyone is visiting your Wiki ==HitCounters== As easy as installing an extension: https://www.mediawiki.org/wiki/Extension:HitCounters * Move to your wiki's extensions directory <code>cd /var/www/html/mediawiki/extensions</code> * Download the extension from GIT <code>git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/HitCounters</code> * Enable it in LocalSettings.php by adding the line: <pre> wfLoadExtension( 'HitCounters' ); </pre> * Ru...")
23 June 2025
- 12:4112:41, 23 June 2025 SET EDITOR (hist | edit) [708 bytes] AwesomO (talk | contribs) (Created page with "<div class="toccolours mw-collapsible mw-collapsed"> Set CLi Text <code>$EDITOR</code> - Quick Guide <div class="mw-collapsible-content"> <b>FIND WHICH SHELL YOU ARE USING</b><br> * This command will tell you your current shell. <code>echo $SHELL</code> <br> <b>SH SHELL</b> * Check if '''EDITOR''' is already set: <code>echo $EDITOR</code> * Set the environment variable: <code>set EDITOR=nano</code> * Unset the variable: <code>unset EDITOR</code> <br> <b>BASH SHELL</b> *...")
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,466 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,362 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_...")