If .DS_Store was never added to your git repository, simply add it to your .gitignore file.
.gitignore
In your the root directory of your app and simply write
| /* | |
| create a file and name it: food | |
| meat kebab 5 | |
| meat stake 5 | |
| meat ice-cream 0 | |
| meat baklava 0 | |
| meat tea 0 | |
| meat coffee 0 | |
| meat burger 4 | |
| meat hot-dog 2 |
| // 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks. | |
| // You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/) | |
| (() => { | |
| const SHOW_SIDES = false; // color sides of DOM nodes? | |
| const COLOR_SURFACE = true; // color tops of DOM nodes? | |
| const COLOR_RANDOM = false; // randomise color? | |
| const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com) | |
| const MAX_ROTATION = 180; // set to 360 to rotate all the way round | |
| const THICKNESS = 20; // thickness of layers | |
| const DISTANCE = 10000; // ¯\\_(ツ)_/¯ |
| #!/bin/bash | |
| # Source: https://gist.github.com/dimo414/10d6f162fb6d72f517a041d28d92314f | |
| # | |
| # This is a basic heartbeat monitoring script suitible for adding to | |
| # a machine's crontab to receive alerts (via https://healthchecks.io) | |
| # when the machine is unhealthy. | |
| # | |
| # I use it to keep an eye on my headless Raspberry Pi, but it should | |
| # work for most Linux machines. | |
| # |
| var Shopify = Shopify || {}; | |
| // --------------------------------------------------------------------------- | |
| // Money format handler | |
| // --------------------------------------------------------------------------- | |
| Shopify.money_format = "${{amount}}"; | |
| Shopify.formatMoney = function(cents, format) { | |
| if (typeof cents == 'string') { cents = cents.replace('.',''); } | |
| var value = ''; | |
| var placeholderRegex = /\{\{\s*(\w+)\s*\}\}/; | |
| var formatString = (format || this.money_format); |