-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhy-i-started-this-blog.html
174 lines (101 loc) · 4.61 KB
/
why-i-started-this-blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Why This Blog?</title>
<meta name="description" content="At this point BIP 101 was released around 4 months ago and the second ‘Scaling Bitcoin Conference’ is 2 weeks away.">
<link rel="stylesheet" href="/Daniel-Blog/assets/css/main.css">
<link rel="canonical" href="http://Daunus.github.io/Daniel-Blog/why-i-started-this-blog">
<link rel="alternate" type="application/rss+xml" title="Daniel Wilczynski" href="http://Daunus.github.io/Daniel-Blog/feed.xml">
</head>
<body>
<header class="site-header container-fluid center">
<div class="site-title center">
<h1><a href="/Daniel-Blog/">Daniel Wilczynski</a></h1>
<p class="site-description">Biographical Page & Blog</p>
</div>
<div class="site-nav">
<a class="page-link button_outline" href="/Daniel-Blog/">Blog</a>
<a class="page-link button_outline" href="/Daniel-Blog/about/">About</a>
</div>
</header>
<div class = "container" >
<h1 class="post-title">
Why This Blog?
</h1>
<div class="post-meta">
Nov 24, 2015 | 0 Min Read |
<span class="disqus-comment-count" data-disqus-identifier="Why This Blog?"></span>
</div>
</div>
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<div class="post-content container" itemprop="articleBody">
<p>At this point BIP 101 was released around 4 months ago and the second ‘Scaling Bitcoin Conference’ is 2 weeks away.</p>
<p>There is an active debate about the direction of Bitcoin and I have many new thoughts about the economic and political issues, that I want to contribute to the debate. I want maximum exposure for these view, hence my starting this blog.</p>
<p>I will also be writing technical posts related to digital currencies. I will not be adding anything new here as there are many people with vastly greater knowledge.</p>
<p>My aim with technical posts is to improve my understanding, and the guides might prove useful to other people with similar educational aspirations.</p>
</div>
</article>
<div class="post-nav container">
<a class="prev button_outline" href="/Daniel-Blog/why-peter-fee-market-wont-work"><span>« Prev: Why Peter R’s Fee Market Wont Work</span>
</a>
<p></p>
</div>
<!-- Comments Start -->
<div class="comments">
<div id="disqus_thread" class="container"></div>
<script>
var disqus_config = function () {
this.page.url = 'http://Daunus.github.io/Daniel-Blog/why-i-started-this-blog';
this.page.identifier = 'Why This Blog?';
};
(function() {
var d = document, s = d.createElement('script');
s.src = '//'+'danielwilczynskiblog'+'.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<!-- Comments End -->
<footer class="site-footer">
<div class="container flex-container">
<!-- Connect Social Icons Start -->
<ul class="social">
<li><a href="https://github.com/Daunus" target="_blank"><i class="icon fi-social-github"></i></a></li>
<li><a href="https://twitter.com/danWilcz" target="_blank"><i class="icon fi-social-twitter "></i></a></li>
</ul>
<!-- Connect Social Icons End -->
</div>
</footer>
<script src="/Daniel-Blog/assets/js/jquery-3.1.0.min.js"></script>
<script src="/Daniel-Blog/assets/js/typed.min.js"></script>
<script type="text/javascript">
var myQuotes = new Array();
myQuotes.push("<span>Inspiring quote1.</span>");
myQuotes.push("<span>Inspiring quote2. </span>");
$(".intro-post-title").typed({
strings: myQuotes,
typeSpeed: 10,
backDelay: 5000,
startDelay: 200,
loop: true,
loopCount: false,
cursorChar: "|"
});
$(".toggle-button").click(function(){
if($(this).text() === 'expand'){
$(this).text('collapse');
$(this).parent('div').find('.expandable').attr( "expanded", "true" );
}else{
$(this).text('expand');
$(this).parent('div').find('.expandable').attr( "expanded", "false" );
}
});
</script>
<script id="dsq-count-scr" src="//danielwilczynskiblog.disqus.com/count.js" async></script>
</body>
</html>