You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -40,43 +40,43 @@ Be warned though, for this is kinda useless and just for fun:
40
40
- curl:
41
41
42
42
```bash
43
-
curl -L ancv.io/heyho
43
+
curl -L ancv.povel.dev/heyho
44
44
```
45
45
46
-
with `-L` being shorthand for [`--location`](https://curl.se/docs/manpage.html), allowing you to follow the redirect from `http://ancv.io` through to `https://ancv.io`.
46
+
with `-L` being shorthand for [`--location`](https://curl.se/docs/manpage.html), allowing you to follow the redirect from `http://ancv.povel.dev` through to `https://ancv.povel.dev`.
47
47
It's shorter than its also perfectly viable alternative:
48
48
49
49
```bash
50
-
curl https://ancv.io/heyho
50
+
curl https://ancv.povel.dev/heyho
51
51
```
52
52
53
53
Lastly, you might want to page the output for easiest reading, top-to-bottom:
54
54
55
55
```bash
56
-
curl -sL ancv.io/heyho | less
56
+
curl -sL ancv.povel.dev/heyho | less
57
57
```
58
58
59
59
If that garbles the rendered output, try `less -r` aka [`--raw-control-chars`](https://man7.org/linux/man-pages/man1/less.1.html).
60
60
61
61
- wget:
62
62
63
63
```bash
64
-
wget -O - --quiet ancv.io/heyho
64
+
wget -O - --quiet ancv.povel.dev/heyho
65
65
```
66
66
67
67
where `-O` is short for [`--output-document`](https://linux.die.net/man/1/wget), used here to redirect to stdout.
68
68
69
69
- PowerShell 7:
70
70
71
71
```powershell
72
-
(iwr ancv.io/heyho).Content
72
+
(iwr ancv.povel.dev/heyho).Content
73
73
```
74
74
75
75
where `iwr` is an alias for [`Invoke-Webrequest`](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-7.2), returning an object whose `Content` we access.
where `-UseBasicParsing` is *only* required if you haven't set up Internet Explorer yet ([yes, really](https://stackoverflow.com/q/38005341/11477374)).
@@ -195,7 +195,7 @@ Self-hosting is a first-class citizen here.
195
195
196
196
### Context: Cloud Hosting
197
197
198
-
The <https://ancv.io> site is hosted on [Google Cloud Run](https://cloud.google.com/run) (serverless) and deployed there [automatically](https://github.com/alexpovel/ancv/runs/8172131447), such that the latest release you see here is also the code executing in that cloud environment.
198
+
The <https://ancv.povel.dev> site is hosted on [Google Cloud Run](https://cloud.google.com/run) (serverless) and deployed there [automatically](https://github.com/alexpovel/ancv/runs/8172131447), such that the latest release you see here is also the code executing in that cloud environment.
199
199
That's convenient to get started: simply create a `resume.json` gist and you're good to go within minutes.
200
200
It can also be used for debugging and playing around; it's a playground of sorts.
0 commit comments