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

Commit 67f43d2

Browse files
committed
Fixed other urls and tag 🚀
1 parent d21412c commit 67f43d2

6 files changed

+8
-11
lines changed

_layouts/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ <h1>ID3TagEditor</h1>
168168
</ul>
169169
<a class="btn btn-default" href="https://github.com/chicio/ID3TagEditor"
170170
target="_blank">Github repo</a>
171-
<a class="btn btn-default" href="/ID3TagEditor"
171+
<a class="btn btn-default" href="{{ site.url }}/ID3TagEditor"
172172
target="_blank">Documentation</a>
173173
</div>
174174
</div>
@@ -253,7 +253,7 @@ <h1>RangeUISlider</h1>
253253
</ul>
254254
<a class="btn btn-default" href="https://github.com/chicio/RangeUISlider"
255255
target="_blank">Github repo</a>
256-
<a class="btn btn-default" href="/RangeUISlider"
256+
<a class="btn btn-default" href="{{ site.url }}/RangeUISlider"
257257
target="_blank">Documentation</a>
258258
</div>
259259
<div class="project-image-container col-12 col-lg-6 order-0 order-lg-1">

_posts/2017-11-14-react-native-realm-custom-manual-linking-app-custom-directories-ios.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ So we need to find another way to install the library.
5959

6060
![React Native realm link fails](/assets/images/posts/react-native-realm-2-link-fails.jpg "React Native realm directories")
6161

62-
Usually, if the previous command fails, you have to do the [manual linking](https://facebook.github
63-
.io/react-native/docs/linking-libraries-ios.html "manual linking").
62+
Usually, if the previous command fails, you have to do the [manual linking](https://facebook.github.io/react-native/docs/linking-libraries-ios.html "manual linking").
6463
To do it we navigate inside the `node_modules` folder, contained in the React Native folder of our project, to found the realm folder.
6564
Inside it you will find an Xcode project named `RealmReact`, that you have to drag into our project. After that we
6665
have to add a reference to

_posts/2018-03-02-code-review-whats-it-is-and-why-it-is-important.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ authors: [angelo_sciarra, fabrizio_duroni]
1818
In some of my previous posts (for example [in this one](/2017/09/11/clean-code-meaningful-names.html "clean code
1919
meaningful names")), I talked about my new experience at [lastminute.com group](http://www.lastminutegroup.com
2020
"lastminute.com group") and how much we care about code quality. In fact I already talked about the fact that we do
21-
[pair programming during our daily job](2018/01/16/ide-refactoring-android-studio-xcode-appcode-webstorm-jetbrains.html "pair programming").
21+
[pair programming during our daily job](/2018/01/16/ide-refactoring-android-studio-xcode-appcode-webstorm-jetbrains.html "pair programming").
2222
But pair programming is not the only techniques we use to be sure that our software matches high
2323
code quality standard :sunglasses:.
2424
One of the most important procedure I use during my daily job with my colleagues is code review. What is it? Let's
@@ -92,7 +92,7 @@ resolve/unmask multiple fields input.
9292

9393
![stateless object](/assets/images/posts/02-minesweeper-fields-as-parameter.jpg "stateless object")
9494

95-
* The objects that are the building block of a [chain of responsability]("https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern" "chain of responsability")
95+
* The objects that are the building block of a [chain of responsability](https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern "chain of responsability")
9696
named `FieldRowParser` could become lighter and some of their responsibility could be assigned to some new
9797
collaborators. Also the object that contains the parsing status could become more lighter.
9898

_posts/2018-05-08-id3tageditor-swift-read-write-id3-tag-mp3.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,7 @@ subclass of the `ID3FrameCreatorsChain` class is a specialization with the respo
297297
in other future posts :stuck_out_tongue_winking_eye: This framework contains too much cool swift stuff :flushed:)
298298
. One important thing to note: the `ID3AttachedPicturesFramesCreator` class is able to create attached picture
299299
frames that sets the type of the cover to one from the list defined in the ID3 standard. In this way I can use my
300-
[ID3TagEditor framework to tag the mp3 with the correct data that I need to display the mp3 files cover on the
301-
media nav system of my clio](/blog/2018/05/25/born-id3tageditor-mp3id3tagger.html "born mo3id3tagger
302-
id3tageditor")!!! :relieved:
300+
[ID3TagEditor framework to tag the mp3 with the correct data that I need to display the mp3 files cover on the media nav system of my clio](/2018/05/07/born-id3tageditor-mp3id3tagger.html "born mo3id3tagger id3tageditor")!!! :relieved:
303301

304302
```swift
305303
class ID3FrameCreatorsChainFactory {

_posts/2018-07-05-distribution-enterprise-app-ios-beta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ authors: [giordano_tamburrelli, fabrizio_duroni]
1717

1818
---
1919

20-
In a [previous post](/2018/05/07/react-native-typescript-exsisting-app.html "react native typescript") I talked about
20+
In a [previous post](/2018/07/04/react-native-typescript-exsisting-app.html "react native typescript") I talked about
2121
the "app relaunch" project I was involved in the last few months at [lastminute.com group](http://www.lastminutegroup.com/ "lastminute.com group").
2222
During one of the last sprint before the release we started to think about putting in place an internal beta testing
2323
program to have more testing data and eventually discover more bugs before the release on the App Store (we really

scripts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ npm run build
77
npm run generate
88

99
# Unit test website
10-
htmlproofer --http-status-ignore "999" ./_site
10+
htmlproofer --http-status-ignore "999" ./_site --

0 commit comments

Comments
 (0)