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
#!/bin/bash | |
# Dependency: requires macOCR | |
# Download: https://github.com/schappim/macOCR | |
# @raycast.schemaVersion 1 | |
# @raycast.title macOCR | |
# @raycast.mode silent | |
# @raycast.author Lim Chee Aun | |
# @raycast.authorURL https://github.com/cheeaun |
// node ./rename-js-to-jsx.js ./my/folder | |
const fs = require('fs') | |
const path = require('path') | |
// Options | |
const src = process.argv[2] ?? './' | |
const pattern = process.argv[3] ? new RegExp(`${process.argv[3]}$`) : /.js$/ | |
const newExtension = process.argv[4] ?? '.jsx' |
import React from 'react'; | |
import { | |
actions, | |
makePropGetter, | |
ensurePluginOrder, | |
functionalUpdate, | |
useConsumeHookGetter, | |
useGetLatest | |
} from '../../react-table/utils'; |
server { | |
location ~* (serviceworker\.js)$ { | |
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'; | |
expires off; | |
proxy_no_cache 1; | |
} | |
} |
type FilterOperator = 'AND' | 'OR'; | |
type FiltersBy<T> = { | |
[K in keyof T]?: (value: T[K]) => boolean; | |
}; | |
/** | |
* Factory function that creates a specialized function to filter | |
* arrays, by validating all filters (AND operator), | |
* or validating just one of the filters (OR operator). | |
* @param operator Method to validate all filters: AND, OR |
This means, on your local machine, you haven't made any SSH keys. Not to worry. Here's how to fix:
*nix
based command prompt (but not the default Windows Command Prompt!)cd ~/.ssh
. This will take you to the root directory for Git (Likely C:\Users\[YOUR-USER-NAME]\.ssh\
on Windows).ssh
folder, there should be these two files: id_rsa
and id_rsa.pub
. These are the files that tell your computer how to communicate with GitHub, BitBucket, or any other Git based service. Type ls
to see a directory listing. If those two files don't show up, proceed to the next step. NOTE: Your SSH keys must be named id_rsa
and id_rsa.pub
in order for Git, GitHub, and BitBucket to recognize them by default.ssh-keygen -t rsa -C "[email protected]"
. ThDescription | Entity | Preview |
---|---|---|
A With Acute, Latin Capital Letter | Á | Á |
A With Acute, Latin Small Letter | á | á |
A With Breve, Latin Small Letter | ă | ă |
A With Caron, Latin Small Letter | ǎ | ǎ |
A With Circumflex, Latin Capital Letter | Â | Â |
A With Circumflex, Latin Small Letter | â | â |