User contributions for AwesomO

A user with 138 edits. Account created on 15 April 2023.
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)

16 June 2025

5 June 2025

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

29 May 2025

19 May 2025

17 May 2025

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

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

(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)