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
| // https://piccalil.li/blog/a-modern-css-reset | |
| /* Box sizing rules */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| } | |
| /* Remove default margin */ |
| const express = require('express') | |
| const next = require('next') | |
| const Cache = require('lru-cache'); | |
| const compression = require('compression') | |
| const port = parseInt(process.env.PORT, 10) || 3000 | |
| const dev = process.env.NODE_ENV !== 'production' | |
| const app = next({ dev }) |
| <script> | |
| // vuejs with crypto-js - AES256 encrypt | decrypt api login | |
| import CryptoJS from 'crypto-js' | |
| import axios from 'axios' | |
| import format from 'date-fns/format' | |
| const key = '82f2ceed4c503896c8a291e560bd4325' // change to your key | |
| const iv = 'sinasinasisinaaa' // change to your iv | |
| const apiKey = '123xxxyyyzzz' // change to your api key | |
| const username = 'chhumsina' |
| 1. | |
| Show the lastName, party and votes for the constituency 'S14000024' in 2017. | |
| SELECT lastName, party, votes | |
| FROM ge | |
| WHERE constituency = 'S14000024' AND yr = 2017 | |
| order by votes desc | |
| Who won? |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.html [L] | |
| </IfModule> | |
| https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations |
| package com.halfcut.galaxygarden.util; | |
| import com.badlogic.gdx.graphics.Color; | |
| /** | |
| * @author halfcutdev | |
| * @since 09/09/2017 | |
| * | |
| * All of the colours from @ENDESGA's edg32 palette, in order of hue | |
| * |
| extends Node | |
| var client | |
| var wrapped_client | |
| var connected = false | |
| var message_center | |
| var should_connect = false | |
| func _ready(): |
| <?php | |
| /** | |
| * discord.msg.send.php v0.8 | |
| * Kirill Krasin © 2025 | |
| * https://github.com/Mo45 | |
| * | |
| * For revisions and comments vist: https://gist.github.com/Mo45/cb0813cb8a6ebcd6524f6a36d4f8862c | |
| * | |
| * Sends a message to Discord via Webhook with file support and rate limit handling | |
| * |
| // | |
| // The code snippets below showcase common "problem code" that can take a long time to compile. | |
| // These examples were primarily observed in Swift 2/3 and may no longer be relevant in Swift 4 or higher. | |
| // | |
| /// 1. Array concatenation | |
| // Observed by Robert Gummesson - https://medium.com/@RobertGummesson/regarding-swift-build-time-optimizations-fc92cdd91e31#c75c | |
| // Joining two arrays together with the '+' operator can be expensive to compile. | |
| let someArray = ["a", "b"] + ["c", "d"] |