Skip to content

Instantly share code, notes, and snippets.

View mrkevler's full-sized avatar

Bartosz Sergot mrkevler

View GitHub Profile
# Make sure you have Anaconda installed
# This tutorial assumes you have an Nvidia GPU, but you can find the non-GPU version on the Textgen WebUI github
# More information found here: https://github.com/oobabooga/text-generation-webui
conda create -n textgen python=3.10.9
conda activate textgen
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
git clone https://github.com/oobabooga/text-generation-webui
cd text-generation-webui
python -m pip install -r requirements.txt
@tbrianjones
tbrianjones / free_email_provider_domains.txt
Last active April 5, 2025 02:20
A list of free email provider domains. Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
1033edge.com
11mail.com
123.com
123box.net
123india.com
123mail.cl
123qwe.co.uk
126.com
150ml.com
15meg4free.com
@Narga
Narga / simple-signup-form.html
Created June 7, 2012 02:38
Simple Signup Form
//http://www.narga.net/making-awesome-forms-inline-labels-with-jquery
<form id="signup" name="signup">
<label for="email">Email Address</label>
<input class="text" name="email" type="text" />
<label for="username">Username</label>
<input class="text username" name="username" type="text" />
<input class="btn" type="submit" value="Sign Up" />
</form>