-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
143 changed files
with
14,929 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*:Zone.Identifier |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# https://quarto.org/docs/publishing/ci.html#complete-examples | ||
- source: index.qmd | ||
quarto-pub: | ||
- id: 8ecdc117-6e37-46ab-be57-28329b2b1120 | ||
url: "https://okatsn.quarto.pub/report-20240806" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Dear pCloud Support Team, | ||
|
||
I am writing to request assistance with accessing and uploading files to my pCloud account via the WebDAV interface. Despite following the available instructions, I have encountered issues with authentication and have been unable to successfully connect. | ||
|
||
Here are the specific details of the problem: | ||
|
||
1. **WebDAV URL and Authentication:** | ||
I attempted to access the WebDAV interface using the URL format `https://ewebdav.pcloud.com/<code>`. However, I consistently receive a "401 Unauthorized" error when trying to authenticate. It appears that the required username and password are not my pCloud account credentials. I am unsure how to obtain the correct credentials for WebDAV access. | ||
|
||
2. **DVC Push Error:** | ||
I am using Data Version Control (DVC) to manage and push files to the WebDAV remote. The command `dvc push` fails with the following error message: | ||
``` | ||
ERROR: unexpected error - received 401 (Unauthorized): Client error '401 Unauthorized' for url 'https://ewebdav.pcloud.com/<code>/files/md5/00' | ||
``` | ||
|
||
3. **Access via Browser and WebDAV Client:** | ||
Attempts to access the WebDAV server directly through a web browser and other WebDAV clients have also resulted in the same 401 Unauthorized error. | ||
|
||
I would greatly appreciate guidance on the following points: | ||
- The correct procedure to obtain the WebDAV URL for accessing a specific folder within my pCloud account. | ||
- How to properly authenticate WebDAV access, including the correct username and password format or method; it seems that it's not the user name (my email) and password of my paid pCloud account. | ||
- Any specific settings or permissions required to enable WebDAV access to my pCloud files. | ||
|
||
Thank you very much for your support and assistance. I look forward to your prompt response. | ||
|
||
Best regards, | ||
|
||
My pCloud Account Email: okatsn@gmail.com | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: b2cef321f212c094d89b0aee0159f6a2 | ||
size: 42583 | ||
hash: md5 | ||
path: cgrg-magtip2022-tags.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: b83f6d020b50cfb1a59165873ef04d2c | ||
size: 108797 | ||
hash: md5 | ||
path: cgrg-magtip2022.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// $body-bg: #d6ffa448; | ||
// $body-color: #fff; | ||
$link-color: #186949; | ||
$code-color: #4758ab; // The same color for theme "serif" | ||
// $code-bg: #a3a3a3; | ||
|
||
// CHECKPOINT: Customize font: https://quarto.org/docs/presentations/revealjs/themes.html#creating-themes | ||
$font-family-sans-serif: "Noto Serif CJK TC Medium", "Noto Serif TC Medium", | ||
FreeSerif, serif !default; | ||
|
||
$presentation-heading-font: "Noto Serif CJK TC Black", "Noto Serif TC Black", | ||
FreeSerif, serif !default; // second choice of font. | ||
$presentation-heading-color: #383d3d !default; | ||
// !default means these settings can be overridden. | ||
|
||
/*-- scss:rules --*/ | ||
|
||
// set sourceCode larger | ||
code.sourceCode { | ||
font-size: larger; | ||
|
||
} | ||
|
||
blockquote { | ||
font-size: smaller; | ||
} | ||
|
||
|
||
.thankyou p { | ||
font-size: 4rem; | ||
overflow-y: auto; | ||
text-align: right; | ||
color: #333; | ||
font-weight: 600; | ||
/* Semi-bold font weight */ | ||
} | ||
|
||
|
||
.rtag { | ||
font-size: 0.7em; | ||
float: right; | ||
color: #fef9e7; | ||
background-color: #229954; | ||
border: 0.2em solid black; | ||
border-radius: 10px; | ||
/* 10px rounded corners */ | ||
} | ||
|
||
.ltag { | ||
font-size: 0.7em; | ||
float: left; | ||
color: #fef9e7; | ||
background-color: #229954; | ||
border: 0.2em solid black; | ||
border-radius: 10px; | ||
/* 10px rounded corners */ | ||
} | ||
|
||
// {.rtag} is equivalent to v2022]{style="float:right;text-align:right;color:red"} | ||
|
||
// Inline image | ||
// Refer: https://stackoverflow.com/a/74100740 | ||
.inlineimg { | ||
margin: 0 !important; | ||
height: 1em; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: cbc113abb8ee1642d725f8ac4ad5658a | ||
size: 56653 | ||
hash: md5 | ||
path: event403_cluster1.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: 8c411cc4b088e374b1ab8fb79033ab9e | ||
size: 46254 | ||
hash: md5 | ||
path: event403_cluster2.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: e02b775caf7bf4efc7f7ac45b3542849 | ||
size: 54928 | ||
hash: md5 | ||
path: event403_datarange.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: f34efccb285401cb559c8bfed0cb9e3e | ||
size: 14301808 | ||
hash: md5 | ||
path: event403_probmap.gif |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: c8c541d31ab20eb4950dfa79b5070d27 | ||
size: 3126 | ||
hash: md5 | ||
path: github-code-button.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: 11bc2c6aaa08b9352a4974b898d64692 | ||
size: 959 | ||
hash: md5 | ||
path: github-tag-button.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
outs: | ||
- md5: 05ea0ce59c96053f0de3bd7ecb25afd9 | ||
size: 3887 | ||
hash: md5 | ||
path: github-zip-button.png |
Oops, something went wrong.