Skip to content

Instantly share code, notes, and snippets.

@msuchodolski
msuchodolski / generate-ssh-key.sh
Created February 9, 2020 03:08 — forked from grenade/01-generate-ed25519-ssh-key.sh
Correct file permissions for ssh keys and config.
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/id_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/github_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/mozilla_rsa

Keybase proof

I hereby claim:

  • I am msuchodolski on github.
  • I am msuchodolski (https://keybase.io/msuchodolski) on keybase.
  • I have a public key ASCtH-xjGjBIKoHf8N8bhyofsTAyIEYIoCkMXSggBzCpago

To claim this, I am signing this object:

@msuchodolski
msuchodolski / remove-visual-composer-shortcodes.md
Created July 31, 2019 02:37 — forked from gemmadlou/remove-visual-composer-shortcodes.md
Removing Visual Composer & Shortcodes From Wordpress Content
@msuchodolski
msuchodolski / README.md
Created September 14, 2018 09:10 — forked from magnetikonline/README.md
Bash array usage cheatsheet.
@msuchodolski
msuchodolski / bash_aliases
Created March 25, 2018 11:19 — forked from frdmn/bash_aliases
Nginx and PHP-FPM configuration + default virtual host
alias nginx.start='sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.nginx.plist'
alias nginx.stop='sudo launchctl unload /Library/LaunchDaemons/homebrew.mxcl.nginx.plist'
alias nginx.restart='nginx.stop && nginx.start'
alias php-fpm.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php56.plist"
alias php-fpm.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.php56.plist"
alias php-fpm.restart='php-fpm.stop && php-fpm.start'
alias mysql.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist"
alias mysql.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist"
alias mysql.restart='mysql.stop && mysql.start'
alias nginx.logs.error='tail -250f /usr/local/etc/nginx/logs/error.log'
@msuchodolski
msuchodolski / html5_audio_player.html
Created November 22, 2017 18:38
Quick audio player in HTML5
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>audio test</title>
</head>
<body>
<audio controls="controls" autoplay>
Your browser does not support the <code>audio</code> element.
<source src="<%url_to_file%>" type="audio/wav">
@msuchodolski
msuchodolski / .gitconfig
Created February 28, 2017 05:49 — forked from seveas/.gitconfig
Hist alias
[alias]
hist = log --graph --color=always --pretty='[%C(cyan)%h%Creset]%C(bold cyan)%d%Creset %s' --all
# ~/.config/ReText project/ReText.conf
[General]
autoSave=true
restorePreviewState=true
highlightCurrentLine=true
tabWidth=2
styleSheet=github.css
useWebKit=true
autoPlainText=false
@msuchodolski
msuchodolski / electron_drag_disable.css
Last active July 19, 2023 13:08
Disable dragging and selecting html elements (like links, images etc...) in Electron
/**
* MAKE ELECTRON APP FEEL MORE NATIVE
*
* * Prevent dragging all HTML elements, specially:
* - images
* - links (anchors)
*
* * Prevent text selection
*/
@msuchodolski
msuchodolski / config
Created March 14, 2016 10:23
Host settings for SSH config
# Add this to/create new 'config' file in ~/.ssh/
Host unique_name
HostName ssh_address
User ssh_username
IdentityFile ~/.ssh/path/to/key