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
/* -------------------------------------------------------------------------- */ | |
// All Bootstrap 5 Sass Mixins [ Cheat sheet ] | |
// Updated to Bootstrap v5.1.x | |
// @author https://anschaef.de | |
// @see https://github.com/twbs/bootstrap/tree/main/scss/mixins | |
// @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss | |
/* -------------------------------------------------------------------------- */ | |
// Options | |
// @see https://getbootstrap.com/docs/5.1/customize/options/ |
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 | |
/* | |
Establish a connection using mysqli and checked for connection errors. | |
Use htmlspecialchars to escape output to prevent XSS attacks. | |
Updated SQL query to prevent SQL injection, though parameterised queries via prepared statements would be better. | |
Error Handling: Added error handling for the database connection and query execution. | |
Added error handling for file operations. | |
Code Structure: Improved readability by formatting the XML string more consistently. | |
Organized the code to separate database logic, XML generation, and file handling. |
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
/* Modern and Minimal CSS Reset */ | |
/* Remove default margins and paddings */ | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
/* Set base font properties */ |
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
# htaccess-rules.sh | |
# *** HOUSEKEEPING! Now that's how an Apache handles config... *** | |
# Master File: Maintained by Primitive Digital's Housekeeping Department | |
# https://primitivedigital.uk/housekeeping-department/ | |
# STATUS ::: DRAFT: Requires Review | |
# N.B. You only need "RewriteEngine On" once in the .htaccess, before any RewriteCond and RewriteRule lines. | |
# N.B. If rules are duplicated the one that appears last has dominance. | |
# WordPress |
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
/* Design Page */ | |
h1 { | |
//${h1Style(colors)} | |
font-family: 'Abril Fatface', Georgia, cursive; | |
font-size: 4.3rem; | |
//color: ${hexToRGB(colors.coal, 0.9)}; | |
//text-shadow: -8px 1px 2px ${hexToRGB(colors.disco.cyan, 0.4)}, 8px -1px 2px ${hexToRGB(colors.disco.magenta, 0.4)}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# git-commands.sh | |
# *** HOUSEKEEPING! Cheeky Git! *** | |
# Master File: Maintained by Primitive Digital's Housekeeping Department | |
# https://primitivedigital.uk/housekeeping-department/ | |
# STATUS ::: DRAFT: Requires Review | |
# version of git | |
$ git --version |
NewerOlder