Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz committed Jun 21, 2022
1 parent b5b6c45 commit 691304e
Show file tree
Hide file tree
Showing 482 changed files with 321,296 additions and 188 deletions.
120 changes: 60 additions & 60 deletions README.md

Large diffs are not rendered by default.

116 changes: 58 additions & 58 deletions bash-commands.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/README.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ find . -type f -exec chmod 644 {} \\;
find . -name "* *" -type d | rename 's/ /_/g'
find . -name "* *" -type f | rename 's/ /_/g'

```console
```bash
find $dir -type f | sed 's|\(.*/\)[^A-Z]*\([A-Z].*\)|mv \"&\" \"\1\2\"|' | sh

find $dir -type d | sed 's|\(.*/\)[^A-Z]*\([A-Z].*\)|mv \"&\" \"\1\2\"|' | sh
Expand Down
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ find . -type f -exec chmod 644 {} \;
## Description: need to : `sudo apt install rename`
> Notes: Issue when renaming file without numbers collides with existing file name...
## # code
````console
````bash
find $dir -type f | sed 's|\(.*/\)[^A-Z]*\([A-Z].*\)|mv \"&\" \"\1\2\"|' | sh
find $dir -type d | sed 's|\(.*/\)[^A-Z]*\([A-Z].*\)|mv \"&\" \"\1\2\"|' | sh
for i in *.html; do mv "$i" "${i%-*}.html"; done
Expand Down Expand Up @@ -1044,7 +1044,7 @@ https://repl.it/@bgoonz/Database-Prac?lite=true&referrer=https%3A%2F%2Fbryan
## Description
> Notes:
## ## code
```console
```bash
find . -name *right.html -type f -exec sed -i 's/target="_parent"//g' {} +

![Preview](https://i.imgur.com/nieW1vp.png)
Expand Down Expand Up @@ -1724,7 +1724,7 @@ Use the Gatsby CLI to create a new site, specifying the default starter.
gatsby new my-default-starter https://github.com/gatsbyjs/gatsby-starter-default
1. **Start developing.**
Navigate into your new site's directory and start it up.
```consoleell
```bashell
cd my-default-starter/
gatsby develop
1. **Open the source code and start editing!**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The goal of this plugin is to allow users to bring their content to life and cul

## Install

```console
```bash
$ yarn add gatsby-plugin-disqus
```

or

```console
```bash
$ npm install -S gatsby-plugin-disqus
```

Expand Down
4 changes: 2 additions & 2 deletions notes/BGOONZ_BLOG_2.0.wiki/articles/gatsby-disqus.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ The goal of this plugin is to allow users to bring their content to life and cul

## Install

```console
```bash
$ yarn add gatsby-plugin-disqus
```

or

```console
```bash
$ npm install -S gatsby-plugin-disqus
```

Expand Down
Loading

1 comment on commit 691304e

@vercel
Copy link

@vercel vercel bot commented on 691304e Jun 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

Resource is limited - try again in 8 hours (more than 100, code: "api-deployments-free-per-day").

Please sign in to comment.