Skip to content

Commit 072fa0c

Browse files
authored
Update links (#3)
* Update about.md * Update overview.md * Update size-aosp14.md * Update footer.html * Update size-aosp.blog
1 parent 23dbfcf commit 072fa0c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

components/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<address>
33
<a href="https://derdilla.com">Homepage</a>
44
5-
<a href="https://github.com/NobodyForNothing">GitHub</a>
5+
<a href="https://github.com/derdilla">GitHub</a>
66
</address>
77
<p><i>Except where otherwise noted, content on this site is licensed under a <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0</a> International license.</i></p>
8-
</footer>
8+
</footer>

pages/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ the German pronoun "der" nor with any of the other [things wikipedia suggests](h
77
Currently, I'm a computer science student and as many people with a custom-made
88
website I like to code for fun. Unlike many people with a custom-made
99
website, *[I don't like websites](https://suckless.org/sucks/web/)*.
10-
I'm more interested in making [simple, correct programs](https://github.com/NobodyForNothing?tab=repositories&q=&type=&language=rust&sort=stargazers),
11-
but ended up being successful with [my complex Android app](https://github.com/NobodyForNothing/blood-pressure-monitor-fl).
10+
I'm more interested in making [simple, correct programs](https://github.com/derdilla?tab=repositories&q=&type=&language=rust&sort=stargazers),
11+
but ended up being successful with [my complex Android app](https://github.com/derdilla/blood-pressure-monitor-fl).

pages/blog/size-aosp.blog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ I count the lines by counting the amount of newline characters in the file("\n")
4949

5050
The analysis breaks down to manually selection some interesting file types (the ones you see in the table) and printing out there respective line counts as well as the sum of them.
5151

52-
If you want to have take a look at it, the <a href="https://github.com/NobodyForNothing/aosp-analyzer">code is public on GitHub</a>
52+
If you want to have take a look at it, the <a href="https://github.com/derdilla/aosp-analyzer">code is public on GitHub</a>
5353

5454
What I found helpful to determine wether and how to count a specific directory was this <a href="https://stackoverflow.com/a/9047693/15581412">2012 Stackoverflow answer</a>.

pages/blog/size-aosp14.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ If you want to be extremely liberal in your definition, you can consider android
66

77
<aside><img src="/assets/android-levels.svg" alt="Diagram ilustrating the different levels of android" title="Levels Android" width="300" height="300"></aside>
88

9-
As a middle ground this counting examines the contents of the main [AOSP repo](https://source.android.com). A current checkout of the repo is roughly 168 GiB large this is however on only code but also documnetation, developer tools and other ecosystem components. To break down this code I created [aosp-analyzer](https://github.com/NobodyForNothing/aosp-analyzer) a set of scripts and a program that produces a handy HTML file (a slightly modified version is used for the interactive statistics at the end of this article). Let's break it down some more:
9+
As a middle ground this counting examines the contents of the main [AOSP repo](https://source.android.com). A current checkout of the repo is roughly 168 GiB large this is however on only code but also documnetation, developer tools and other ecosystem components. To break down this code I created [aosp-analyzer](https://github.com/derdilla/aosp-analyzer) a set of scripts and a program that produces a handy HTML file (a slightly modified version is used for the interactive statistics at the end of this article). Let's break it down some more:
1010

11-
It depends on androids `repo` tool to obtain the source code and [tokei](https://github.com/XAMPPRocky/tokei) to do the heavy line counting work. During line counting I do a preliminary categorization of line data based on the top level directories. After those first two slow steps it begins its actual analysis work: It seperates test code and documentation from the rest *([1](https://github.com/NobodyForNothing/aosp-analyzer/blob/main/visualizer/src/extractor.rs#L16-L66))*, removes data only files (mainly random test data) *([2](https://github.com/NobodyForNothing/aosp-analyzer/blob/main/visualizer/src/extractor.rs#L71-L73))* and assembles the html *([3](https://github.com/NobodyForNothing/aosp-analyzer/blob/main/visualizer/src/format.rs#L57-L62))*. In case you are curious about the details, I think the code is more explicit than this text could ever be.
11+
It depends on androids `repo` tool to obtain the source code and [tokei](https://github.com/XAMPPRocky/tokei) to do the heavy line counting work. During line counting I do a preliminary categorization of line data based on the top level directories. After those first two slow steps it begins its actual analysis work: It seperates test code and documentation from the rest *([1](https://github.com/derdilla/aosp-analyzer/blob/main/visualizer/src/extractor.rs#L16-L66))*, removes data only files (mainly random test data) *([2](https://github.com/derdilla/aosp-analyzer/blob/main/visualizer/src/extractor.rs#L71-L73))* and assembles the html *([3](https://github.com/derdilla/aosp-analyzer/blob/main/visualizer/src/format.rs#L57-L62))*. In case you are curious about the details, I think the code is more explicit than this text could ever be.
1212

1313
{{ aosp-data }}
1414

15-
[android-levels]: /assets/android-levels.svg "Levels of android"
15+
[android-levels]: /assets/android-levels.svg "Levels of android"

pages/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
This website and my [GitHub](https://github.com/NobodyForNothing) host all the
1+
This website and my [GitHub](https://github.com/derdilla) host all the
22
stuff I want to recklessly publish and a tiny bit more that is actually useful.
33
I have a [**blog**](./blog) and if you dig deep enough into my unlisted pages you may
4-
find a little app or game (or you look at [how this website is build](https://github.com/NobodyForNothing/personal-website),
4+
find a little app or game (or you look at [how this website is build](https://github.com/derdilla/personal-website),
55
but where is the fun in that).
66

77
If you just wanted to reach out to me and read through all of that: have a look
8-
at the footer :).
8+
at the footer :).

0 commit comments

Comments
 (0)