This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Play in fullscreen (url in clipboard via mpv, requires xclip) | |
bindsym $mod+m exec --no-startup-id "~/.i3/playit.sh" | |
bindsym $mod+Shift+m exec --no-startup-id "~/.i3/playit-fullscreen.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.main') | |
@section('content') | |
<form action="/"> | |
<fieldset> | |
<legend>A Sample Form Legend</legend> | |
<div class="form__row"> | |
<label for="name">Name: </label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DBUSER="<USERNAME>" | |
DBPASS="<PASSWORD>" | |
DB="<DATABASE>" | |
HOST="<DATABASE HOST>" | |
mysqldump -u $DBUSER -p$DBPASS $DB > db/$DB.sql | |
git add db/$DB.sql |