Skip to content

Commit

Permalink
Fix typo in post title
Browse files Browse the repository at this point in the history
  • Loading branch information
etimberg committed Oct 1, 2019
1 parent a08e739 commit 9dcb512
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h2 class="title is-2 top-pad">Latest Post</h2>
<div class="summary">
<h3 class="title is-3 strong-post-title">
<a href="https://everttimberg.io/blog/python-profiling/">
Profiling Python Code with QCacheGrid
Profiling Python Code with QCacheGrind
</a>
</h3>
<div class="markdown">
Expand All @@ -177,7 +177,7 @@ <h3 class="title is-3 strong-post-title">
<h2 class="title is-2 top-pad">All Posts</h2>

<li class="post-item">
<span><a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a></span>
<span><a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a></span>
</li>

<li class="post-item">
Expand Down
2 changes: 1 addition & 1 deletion blog/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</item>

<item>
<title>Profiling Python Code with QCacheGrid</title>
<title>Profiling Python Code with QCacheGrind</title>
<link>https://everttimberg.io/blog/python-profiling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>

Expand Down
10 changes: 5 additions & 5 deletions blog/python-profiling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<meta name="referrer" content="no-referrer">
<meta name="description" content="Evert Timberg, Software developer and architect in Toronto">
<title>
Profiling Python Code with QCacheGrid - Evert Timberg
Profiling Python Code with QCacheGrind - Evert Timberg
</title>



<meta property="og:title" content="Profiling Python Code with QCacheGrid - Evert Timberg" />
<meta property="og:title" content="Profiling Python Code with QCacheGrind - Evert Timberg" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Evert Timberg, Software developer and architect in Toronto"/>
<meta property="og:url" content="https://everttimberg.io/blog/python-profiling/"/>
Expand Down Expand Up @@ -160,7 +160,7 @@ <h1 class="bold-title is-1">Posts</h1>

<div class="container">
<h2 class="title is-1 top-pad strong-post-title">
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a>
</h2>
<div class="post-data">

Expand All @@ -170,7 +170,7 @@ <h2 class="title is-1 top-pad strong-post-title">
<div class="blog-share">
Share this:

<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Profiling%20Python%20Code%20with%20QCacheGrid%20https%3a%2f%2feverttimberg.io%2fblog%2fpython-profiling%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Profiling%20Python%20Code%20with%20QCacheGrind%20https%3a%2f%2feverttimberg.io%2fblog%2fpython-profiling%2f" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fab fa-twitter"></i>
<span class="hidden">Twitter</span>
</a>
Expand All @@ -182,7 +182,7 @@ <h2 class="title is-1 top-pad strong-post-title">
</a>


<a class="icon-pinterest" href="http:https://pinterest.com/pin/create/button/?url=https%3a%2f%2feverttimberg.io%2fblog%2fpython-profiling%2f&amp;description=Profiling%20Python%20Code%20with%20QCacheGrid" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<a class="icon-pinterest" href="http:https://pinterest.com/pin/create/button/?url=https%3a%2f%2feverttimberg.io%2fblog%2fpython-profiling%2f&amp;description=Profiling%20Python%20Code%20with%20QCacheGrind" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
<i class="fab fa-pinterest-p"></i>
<span class="hidden">Pinterest</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ <h2 class="title is-2 has-text-centered">
<h2 class="title is-2 has-text-centered">Latest Post</h2>

<div class="summary">
<h3 class="title is-3 latest-post-title"><a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a></h3>
<h3 class="title is-3 latest-post-title"><a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a></h3>
<div class="markdown">
Profiling is the first step to improving the performance of code. Suppose we want to profile the Python script below which is based on the example here. It prints out the first 20 Fibonacci numbers and is unoptimized to make the profile exaggerated.
def fib(n):if n == 0:return 0elif n == 1:return 1else:return fib(n-1) + fib(n-2)def fib_seq(n):seq = [ ]if n &gt; 0:seq.
Expand Down
2 changes: 1 addition & 1 deletion index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Correlation with RNA Secondary Structure By using the secondary structure config
</item>

<item>
<title>Profiling Python Code with QCacheGrid</title>
<title>Profiling Python Code with QCacheGrind</title>
<link>https://everttimberg.io/blog/python-profiling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>

Expand Down
2 changes: 1 addition & 1 deletion tags/profiling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ <h1 class="bold-title is-1">Tag: profiling</h1>


<li>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion tags/profiling/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


<item>
<title>Profiling Python Code with QCacheGrid</title>
<title>Profiling Python Code with QCacheGrind</title>
<link>https://everttimberg.io/blog/python-profiling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>

Expand Down
2 changes: 1 addition & 1 deletion tags/python/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ <h1 class="bold-title is-1">Tag: python</h1>


<li>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion tags/python/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


<item>
<title>Profiling Python Code with QCacheGrid</title>
<title>Profiling Python Code with QCacheGrind</title>
<link>https://everttimberg.io/blog/python-profiling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>

Expand Down
2 changes: 1 addition & 1 deletion tags/qcachegrind/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ <h1 class="bold-title is-1">Tag: qcachegrind</h1>


<li>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrid</a>
<a href="https://everttimberg.io/blog/python-profiling/">Profiling Python Code with QCacheGrind</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion tags/qcachegrind/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


<item>
<title>Profiling Python Code with QCacheGrid</title>
<title>Profiling Python Code with QCacheGrind</title>
<link>https://everttimberg.io/blog/python-profiling/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>

Expand Down

0 comments on commit 9dcb512

Please sign in to comment.