Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
actionBot committed Apr 2, 2024
1 parent 8cceeae commit 5507d5d
Show file tree
Hide file tree
Showing 5 changed files with 245 additions and 3 deletions.
Binary file modified .meta
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>We created a note-taking app you might like</title>
<title>Note taking system should be simple</title>
<script defer data-domain="liyafu.com" src="https://plausible.anywherearc.com/js/script.js"></script>

<style>
Expand Down Expand Up @@ -219,7 +219,7 @@
</header>

<article>
<h1>We created a note-taking app you might like</h1>
<h1>Note taking system should be simple</h1>
<p>No note-taking app is perfect. Apps like Evernote, Notion, Obsidian, and Logseq each have their own advantages but can be complex and packed with unnecessary features. Finding the ideal app is impossible, and transferring data between apps is challenging due to differing data formats. Even with promises from providers not to misuse your data, it's uncertain how it might be used for commercial purposes.</p>
<p>For simplicity, you don't need any app to store your written text. You can organize your notes in local files and folders, but searching for specific notes or moving them to another computer might be tricky. This article will guide you on how to manage your own data effectively. If you're familiar with programming, you can quickly create a note app. Even without programming skills, learning about data management can help you keep your data safe and accessible.</p>
<p>Storing our data in a manageable, movable, and backup-friendly single file is essential. SQLite provides an effective solution for managing notes with features like a unified, standalone file, comprehensive SQL support, full-text search, and easy data organization. This removes the need for a server, as all data is locally stored. SQLite's compatibility with different tools, independence from client applications, and easy integration offer flexibility. Thus, even if the note app is unavailable, your data remains accessible and portable, ensuring constant access to your information.</p>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
<article class="posts">

<div class="posts-item">
<a href="/2024-02-04-we-created-a-note-taking-app-you-might-like">We created a note-taking app you might like</a>
<a href="/2024-02-04-note-taking-system-should-be-simple">Note taking system should be simple</a>
<small>2024-02-04</small>
</div>

Expand Down
241 changes: 241 additions & 0 deletions other/1990-01-01-aboutme/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
<!DOCTYPE html>

<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>关于我</title>
<script defer data-domain="liyafu.com" src="https://plausible.anywherearc.com/js/script.js"></script>

<style>
body {
color: #000000;
line-height: 1.6em;
padding: 1em;
box-sizing: border-box;
margin: auto;
max-width: 72em;
background: #fefefe;
font-family: Fira Code,Monaco,Consolas,Ubuntu Mono,PingFang SC,Hiragino Sans GB,Microsoft YaHei,WenQuanYi Micro Hei,monospace,sans-serif;
}
blockquote {
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
color: #ccc;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p {
display: inline;
}
em{
color: grey;
}

pre{
background-color: #eed;
}
code{
background-color: #eed;
}
nav {
margin-bottom: 20px;
}
small{
font-size: smaller;
}
a {
color: #007bff;
}

a:hover,
a:focus {
color: #0056b3;
}

a:visited{
color: grey;
}

article {
padding-bottom: 1em;
}

img {
max-width: 100%;
}

body {
background-color: #fff;
color: #212529;
}

.comments{
text-align: center;
margin-top: 20px;
padding: 5px 10px;
font-size: .8rem;
text-transform: uppercase;
text-decoration: none;
letter-spacing: .1em;
z-index: 1;
}

.utterances{
max-width: 100%;
}
.hr-middle-text{
line-height: 1em;
position: relative;
outline: 0;
border: 0;
color: black;
text-align: center;
height: 1.5em;
opacity: .5;
}
.hr-middle-text:before {
content: '';
background: linear-gradient(to right, transparent, black, transparent);
position: absolute;
left: 0;
top: 50%;
width: 100%;
height: 1px;
}
.hr-middle-text:after{
content: attr(data-content);
position: relative;
display: inline-block;
color: black;
padding: 0 .5em;
line-height: 1.5em;
background-color: #fcfcfa;
}

/* _nav style */
.navbar-item::before {
content: "[ ";
}
.navbar-item::after {
content: " ]"
}
@media screen and (min-width: 300px) and (max-width: 700px) {
.navbar {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar-item {
flex: 1;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.nav-btn {
flex: 1;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
}
}
/* _nav style end */

/* index style */
.posts-item {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
@media screen and (min-width: 300px) and (max-width: 700px) {
.posts-item {
flex-direction: row;
align-items: center;
justify-content: space-around;
margin-bottom: 10px;
}
.posts-item > a {
display: inline-block;
width: 70%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.posts-item > small {
flex: 1;
text-align: right;
}
article{
letter-spacing: -0.003em;
line-height: 28px;
font-size: 18px;
word-wrap: break-word;
}
}
/* index style end */
</style>


<!-- Google Analytics -->

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');


ga('create', 'UA-188913654-2', 'auto');
ga('send', 'pageview');
</script>

<!-- End Google Analytics -->


</head>
<body>

<header>
<nav class="navbar">
<span class="navbar-item"><a class="nav-btn" href="/">Home</a></span>
<span class="navbar-item"><a class="nav-btn" href="/bc/">Blockchain</a></span>
<span class="navbar-item"><a class="nav-btn" href="/el/">English Learning</a></span>
<span class="navbar-item"><a class="nav-btn" href="/ct/">Chinese Thinking</a></span>
<span class="navbar-item"><a class="nav-btn" href="/other/1990-01-01-aboutme">About Me</a></span>
</nav>
</header>

<article>
<h1>关于我</h1>
<p>Twitter: <a href="https://x.com/@jeffdylan535">@jeffdylan535</a><br />
Email: <a href="mailto:[email protected]">[email protected]</a></p>

</article>


<div class="comments">
<hr class="hr-middle-text" data-content="COMMENTS">
<script src="https://utteranc.es/client.js" repo="leyafo/leyafo.github.io" issue-term="title" label="Commnets" theme="github-light" crossorigin="anonymous" async >
</script>
</div>

<script>
document.querySelectorAll("pre").forEach(function (i) {
i.removeAttribute("style")
})
</script>
</body>
</html>
1 change: 1 addition & 0 deletions other/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico" />
<title>Light & Truth</title>
<script defer data-domain="liyafu.com" src="https://plausible.anywherearc.com/js/script.js"></script>

<style>
body {
Expand Down

0 comments on commit 5507d5d

Please sign in to comment.