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
@mrkevler
mrkevler / free_email_provider_domains.txt
Created March 12, 2018 10:12 — forked from tbrianjones/free_email_provider_domains.txt
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
150ml.com
15meg4free.com
163.com
@mrkevler
mrkevler / simple-signup-form.html
Created February 5, 2018 17:05 — forked from Narga/simple-signup-form.html
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>