Skip to content

Commit

Permalink
Site updated: 2024-07-27 21:06:56
Browse files Browse the repository at this point in the history
  • Loading branch information
nanhang-950 committed Jul 27, 2024
1 parent 8539cb3 commit 6336f0d
Show file tree
Hide file tree
Showing 17 changed files with 76 additions and 76 deletions.
10 changes: 5 additions & 5 deletions 2024/07/27/1 go 命令式编程/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<meta property="og:type" content="article">
<meta property="og:title" content="Go 语言学习笔记1">
<meta property="og:url" content="http://example.com/2024/07/27/1%20go%20%E5%91%BD%E4%BB%A4%E5%BC%8F%E7%BC%96%E7%A8%8B/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="前言因为最近这段时间被拉去打一个程序开发的比赛,所以花几天学了一下go语言。 接下来打算把学习go的笔记更一下,后面再写一些关于go的安全编程的内容。 基本结构包和函数1234567package main()import ( &quot;fmt&quot;)func main()&#123; fmt.Println(&quot;hello world&quot;)&#125; package关">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-07-26T16:00:00.000Z">
Expand All @@ -48,7 +48,7 @@
};
</script>

<title>Go 语言学习笔记1 | 南行</title>
<title>Go 语言学习笔记1 | 太行南山</title>



Expand Down Expand Up @@ -79,7 +79,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -100,7 +100,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down Expand Up @@ -206,7 +206,7 @@ <h1 class="site-title">南行</h1>
</span>

<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="南行">
<meta itemprop="name" content="太行南山">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
Expand Down
10 changes: 5 additions & 5 deletions 2024/07/27/2 类型/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<meta property="og:type" content="article">
<meta property="og:title" content="Go 语言学习笔记2">
<meta property="og:url" content="http://example.com/2024/07/27/2%20%E7%B1%BB%E5%9E%8B/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="实数声明浮点类型变量每个变量都有与之相关联的类型,其中声明和初始化实数变量就需要用到浮点类型。 以下代码具有相同的作用,即使我们不为days变量指定类型,go编译器也会根据给定值推断出该变量的类型 123days :&#x3D;365.2425var days&#x3D;265.2425var days float64&#x3D;365.2425 在go语言中,所有带小数点的数字在默认情况下都会被设置为float64类型">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="http://example.com/assets/Pasted%20image%2020240719170446.png">
Expand All @@ -51,7 +51,7 @@
};
</script>

<title>Go 语言学习笔记2 | 南行</title>
<title>Go 语言学习笔记2 | 太行南山</title>



Expand Down Expand Up @@ -82,7 +82,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -103,7 +103,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down Expand Up @@ -209,7 +209,7 @@ <h1 class="site-title">南行</h1>
</span>

<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="南行">
<meta itemprop="name" content="太行南山">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
Expand Down
10 changes: 5 additions & 5 deletions 2024/07/27/markdown/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<meta property="og:type" content="article">
<meta property="og:title" content="博客编写和markdown学习笔记">
<meta property="og:url" content="http://example.com/2024/07/27/markdown/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="前言第一次尝试在github上搭建博客,也是除次开始尝试实验nvim编写博客。所以特地研究了一下markdown的语法,这里整理成笔记放在博客上了。 创建博客 1hexo new post &quot;博客&quot; Front-matterFront-matter是md文件最上方以---分割的区域,用于指定个别文件的变量。 12345678title: 博客标题date: 发布时间up">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-07-26T16:00:00.000Z">
Expand All @@ -47,7 +47,7 @@
};
</script>

<title>博客编写和markdown学习笔记 | 南行</title>
<title>博客编写和markdown学习笔记 | 太行南山</title>



Expand Down Expand Up @@ -78,7 +78,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -99,7 +99,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down Expand Up @@ -205,7 +205,7 @@ <h1 class="site-title">南行</h1>
</span>

<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="南行">
<meta itemprop="name" content="太行南山">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
Expand Down
10 changes: 5 additions & 5 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

<meta name="description" content="title: 404date: 2019-08-5 16:41:10type: “404”layout: “404”description: “Oops~,我崩溃了!找不到你想要的页面 :(“">
<meta property="og:type" content="website">
<meta property="og:title" content="南行">
<meta property="og:title" content="太行南山">
<meta property="og:url" content="http://example.com/404.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="title: 404date: 2019-08-5 16:41:10type: “404”layout: “404”description: “Oops~,我崩溃了!找不到你想要的页面 :(“">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-07-27T12:53:53.940Z">
Expand All @@ -47,7 +47,7 @@
};
</script>

<title> | 南行
<title> | 太行南山
</title>


Expand Down Expand Up @@ -79,7 +79,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -100,7 +100,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<meta property="og:type" content="website">
<meta property="og:title" content="关于">
<meta property="og:url" content="http://example.com/about/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="为了更强,我们存在!">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-07-27T08:37:23.000Z">
Expand All @@ -47,7 +47,7 @@
};
</script>

<title>关于 | 南行
<title>关于 | 太行南山
</title>


Expand Down Expand Up @@ -79,7 +79,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -100,7 +100,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
10 changes: 5 additions & 5 deletions archives/2024/07/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

<meta name="description" content="为了更强,我们存在!">
<meta property="og:type" content="website">
<meta property="og:title" content="南行">
<meta property="og:title" content="太行南山">
<meta property="og:url" content="http://example.com/archives/2024/07/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="为了更强,我们存在!">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="南行">
Expand All @@ -45,7 +45,7 @@
};
</script>

<title>归档 | 南行</title>
<title>归档 | 太行南山</title>



Expand Down Expand Up @@ -76,7 +76,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -97,7 +97,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
10 changes: 5 additions & 5 deletions archives/2024/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

<meta name="description" content="为了更强,我们存在!">
<meta property="og:type" content="website">
<meta property="og:title" content="南行">
<meta property="og:title" content="太行南山">
<meta property="og:url" content="http://example.com/archives/2024/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="为了更强,我们存在!">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="南行">
Expand All @@ -45,7 +45,7 @@
};
</script>

<title>归档 | 南行</title>
<title>归档 | 太行南山</title>



Expand Down Expand Up @@ -76,7 +76,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -97,7 +97,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
10 changes: 5 additions & 5 deletions archives/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

<meta name="description" content="为了更强,我们存在!">
<meta property="og:type" content="website">
<meta property="og:title" content="南行">
<meta property="og:title" content="太行南山">
<meta property="og:url" content="http://example.com/archives/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="为了更强,我们存在!">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="南行">
Expand All @@ -45,7 +45,7 @@
};
</script>

<title>归档 | 南行</title>
<title>归档 | 太行南山</title>



Expand Down Expand Up @@ -76,7 +76,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -97,7 +97,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
8 changes: 4 additions & 4 deletions categories/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<meta property="og:type" content="website">
<meta property="og:title" content="分类">
<meta property="og:url" content="http://example.com/categories/index.html">
<meta property="og:site_name" content="南行">
<meta property="og:site_name" content="太行南山">
<meta property="og:description" content="为了更强,我们存在!">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2024-07-27T08:36:48.000Z">
Expand All @@ -47,7 +47,7 @@
};
</script>

<title>分类 | 南行
<title>分类 | 太行南山
</title>


Expand Down Expand Up @@ -79,7 +79,7 @@
</style>
</noscript>

<link rel="alternate" href="/rss2.xml" title="南行" type="application/rss+xml">
<link rel="alternate" href="/rss2.xml" title="太行南山" type="application/rss+xml">
</head>

<body itemscope itemtype="http://schema.org/WebPage">
Expand All @@ -100,7 +100,7 @@

<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">南行</h1>
<h1 class="site-title">太行南山</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
Expand Down
Loading

0 comments on commit 6336f0d

Please sign in to comment.