Skip to content

Instantly share code, notes, and snippets.

View henrytriplette's full-sized avatar
🦦
Unfortunately I may be slow to respond.

Henry Triplette henrytriplette

🦦
Unfortunately I may be slow to respond.
View GitHub Profile
@henrytriplette
henrytriplette / MediaWiki.md
Created May 10, 2019 10:28
MediaWiki Snippets

Password

Reset user password from console. No email needed,

php changePassword.php --user=target_username --password=new_password
@henrytriplette
henrytriplette / table_options.md
Created September 12, 2019 09:31
Wordpress $table_options migration fix

RENAME tablewp_commentmetaTOmistrello_commentmeta; RENAME tablewp_commentsTOmistrello_comments; RENAME tablewp_linksTOmistrello_links; RENAME tablewp_optionsTOmistrello_options; RENAME tablewp_postmetaTOmistrello_postmeta; RENAME tablewp_postsTOmistrello_posts; RENAME tablewp_termsTOmistrello_terms; RENAME tablewp_termmetaTOmistrello_termmeta; RENAME tablewp_term_relationshipsTOmistrello_term_relationships; RENAME tablewp_term_taxonomyTOmistrello_term_taxonomy;

@henrytriplette
henrytriplette / laravel-homestead-win10.md
Last active June 30, 2020 09:32
Laravel Homestead - Install on a per project base on Win10

Install Laravel Homestead on Win10

  • Use Git Bash as your command prompt

  • Official Instructions [LINK]

  • Install Oracle Virtualbox [LINK]

  • Install Vagrant [LINK]

  • Add Homestead into Vagrant:

@henrytriplette
henrytriplette / Install Stability-AI stable-fast-3d.md
Last active August 22, 2024 09:53
Install Stability-AI/stable-fast-3d

Clone repo

git clone https://github.com/Stability-AI/stable-fast-3d
cd stable-fast-3d

Create a new conda environment and activate it

conda create -n stable-fast-3d python=3.9
conda activate stable-fast-3d