i
Start insert mode at current positionI
Start insert mode beginning of linea
Start insert mode after current position (append)A
Start insert mode at end of line (append)d
Deletedd
Delete line
This file contains 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
server { | |
listen 80; | |
server_name project.test www.project.test *.project.test; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl http2; |
This file contains 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
server { | |
listen 80; | |
server_name project.test www.project.test *.project.test; | |
root /; | |
charset utf-8; | |
client_max_body_size 128M; | |
location /41c270e4-5535-4daa-b23e-c269744c2f45/ { |
This file contains 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
<?php | |
$current_year = date("Y"); | |
echo '<ul>'; | |
for ($month = 1; $month <= 12; $month++) { | |
echo '<li>'; | |
echo date("d.M.Y", strtotime("first monday of $current_year-$month") - 1); | |
echo '</li>'; | |
} | |
echo '</ul>'; |
This file contains 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
const plugin = require('tailwindcss/plugin'); | |
const columns = 12; | |
const columnUtilityOptions = { | |
...{ full: 'full', hd: 'hd', content: 'content' }, | |
...Object.fromEntries([...Array(columns).keys()].map((k) => [`${k + 1}`, `${k + 1}`])), | |
}; | |
/** @type {import('tailwindcss').Config} */ | |
export default { |