Skip to content

Instantly share code, notes, and snippets.

View kelsS's full-sized avatar
🍡

Kelsey S. kelsS

🍡
View GitHub Profile
@irazasyed
irazasyed / ampps-mysql-fix.md
Last active October 4, 2024 00:27
AMPPS MySQL not working, Solution!

AMPPS MySQL not working, Solution!

  1. Open Ampps Application -> MySQL Tab -> Configuration.

  2. In [mysqld] section, add the following line: innodb_force_recovery = 1

  3. Save the file and try starting MySQL

  4. Remove that line which you just added and Save.

@alexwolfe
alexwolfe / .bash_profile
Created April 3, 2014 04:33
Terminal Customizations
###########################################
## TERMINAL CUSTOMIZATIONS ################
###########################################
## CUSTOM TAB NAME
function tabname {
printf "\e]1;$1\a"
}
## CUSTOM WINDOW NAME
@salcode
salcode / .gitignore
Last active December 10, 2024 15:31
See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@ixrevo
ixrevo / WordPress Development .gitignore
Last active March 9, 2022 01:50
.gitignore file for setting up the WordPress development environment.
########################
# Wordpress Core files #
########################
wp-admin/
wp-content/backups/
wp-content/blogs.dir/
wp-content/languages/
wp-content/index.php
wp-content/themes/index.php
wp-includes/
@jeromecoupe
jeromecoupe / eecms_htaccess
Created December 2, 2013 02:02
My .htaccess for ExpressionEngine
# Standard .htaccess file
# -------------------------------------------------
# -------------------------------------------------
# Secure .htaccess file
# -------------------------------------------------
<Files .htaccess>
order allow,deny
deny from all
</Files>
@rxaviers
rxaviers / gist:7360908
Last active May 17, 2025 07:12
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@thoroc
thoroc / .bash
Last active May 12, 2017 17:12
Terminal config
##############################################################
# BASH_ALIASES
##############################################################
#-------------------------------------------------------------
# The 'ls' family
#-------------------------------------------------------------
alias ll='LANG=C ls -alF --group-directories-first'
alias ls='LANG=C ls -AhF --color' # add colors for filetype recognition
alias la='LANG=C ls -Al' # show hidden files
alias lx='LANG=C ls -lXB' # sort by extension
@wsargent
wsargent / docker_cheat.md
Last active June 29, 2024 19:32
Docker cheat sheet
@hofmannsven
hofmannsven / README.md
Last active October 30, 2022 16:31
Virtual Hosts with MAMP on OS X

Virtual Hosts

Update the hosts file in /etc/hosts to maintain multiple domains/hostnames on a local machine for 127.0.0.1 and setup a VirtualHost container in /Applications/MAMP/conf/apache/extra/httpd-vhost.conf via /Applications/MAMP/conf/apache/httpd.conf for a name-based virtual host.

Only suitable for MAMP users under OS X Lion, OS X Mountain Lion, and OS X Mavericks on Apache-Port 80 and MySQL-Port 3306.