Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 87c477d

Browse files
committed
Fixed broken url 🚀
1 parent 30c33dd commit 87c477d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,22 @@ My personal website, created using github pages.
1616
To run my website locally you need to install the following software:
1717

1818
- Node
19-
- Ruby
20-
- zsh
19+
- Ruby (the version should be the one used by [pages-gem](https://github.com/github/pages-gem))
2120

22-
After you finished the installation you can do the setup of the local environment by launching the following commands from the root folder of this repo:
21+
You can do the setup of the project by launching the following command from the root of this repo:
2322

2423
```bash
2524
npm run setup
2625
```
2726

28-
Then you can build and launch my website locally with the following commands from the root folder of this repo:
27+
Then you can build and launch my website locally with the following commands from the root of this repo:
2928

3029
```bash
3130
npm run build
3231
npm run start
3332
```
3433

35-
If you want to build a debug version of the site run the following commands from the root folder of this repo:
34+
If you want to build a debug version of the site run the following commands from the root of this repo:
3635

3736
```bash
3837
npm run debug
@@ -43,7 +42,6 @@ npm run start
4342

4443
My website is hosted using Github Pages. It contains a bunch of jekyll templates used for home, posts, archive and
4544
tags pages. All blog posts are created using markdown files (thanks Jekyll :grin:). For JS, CSS and assets build I
46-
used gulp as build automation tool. I use rvm and the [pages-gem](https://github.com/github/pages-gem) to setup the github pages environment locally.
47-
On the homepage you can find also a three.js integration with a physically based scene, to highlight my computer graphics passion.
45+
used Gulp + Webpack build automation tools. On the homepage you can find also a three.js integration with a physically based scene, to highlight my computer graphics passion.
4846
Soooo what are you waiting for???!! Go and checkout my [homepage](https://www.fabrizioduroni.it "homepage") and my
4947
[blog](https://www.fabrizioduroni.it/blog/ "blog") :stuck_out_tongue_winking_eye:!!.

_posts/2019-04-07-flow-javascript-types-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Then I decided to create a new script phase `flow` that launches the script `flo
4343
* I run Flow to execute the static type checking on my code base with the command `../node_modules/.bin/flow`
4444
* I run flow-remove-types to strip Flow type annotations from JavaScript files. The generated files are saved in the folder `../_jsbuild/` specified in the destination folder flag `-d`. I also specified the `--pretty` option in order to be able to remove the whitespaces that flow-remove-types leaves in the source when it removes the types annotation.
4545

46-
Below you can see the entire script I created (that you can find [flow script also at this url](https://github.com/chicio/chicio.github.io/blob/master/_scripts/flow.sh "flow script")).
46+
Below you can see the entire script I created (that you can find [flow script also at this url](https://github.com/chicio/chicio.github.io/blob/v1.23.0/_scripts/flow.sh "flow script")).
4747

4848
```shell
4949
#!/usr/bin/env sh

0 commit comments

Comments
 (0)