aboutsummaryrefslogtreecommitdiff
path: root/src/experiments
diff options
context:
space:
mode:
Diffstat (limited to 'src/experiments')
-rw-r--r--src/experiments/encoding-binary-data-into-dna-sequence.md2
-rw-r--r--src/experiments/profiling-python-web-applications-with-visual-tools.md8
-rw-r--r--src/experiments/simple-iot-application.md2
-rw-r--r--src/experiments/using-digitalocean-spaces-object-storage-with-fuse.md2
-rw-r--r--src/experiments/using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md2
5 files changed, 8 insertions, 8 deletions
diff --git a/src/experiments/encoding-binary-data-into-dna-sequence.md b/src/experiments/encoding-binary-data-into-dna-sequence.md
index cdff15f..bfcf710 100644
--- a/src/experiments/encoding-binary-data-into-dna-sequence.md
+++ b/src/experiments/encoding-binary-data-into-dna-sequence.md
@@ -1,7 +1,7 @@
1title: Encoding binary data into DNA sequence 1title: Encoding binary data into DNA sequence
2description: Imagine a world where you could go outside and take a leaf from a tree and put it through your personal DNA sequencer and get data like music, videos or computer programs from it 2description: Imagine a world where you could go outside and take a leaf from a tree and put it through your personal DNA sequencer and get data like music, videos or computer programs from it
3date: 2019-01-03 3date: 2019-01-03
4tags: experiment 4type: post
5hide: false 5hide: false
6---- 6----
7 7
diff --git a/src/experiments/profiling-python-web-applications-with-visual-tools.md b/src/experiments/profiling-python-web-applications-with-visual-tools.md
index 58d85bf..cf7164c 100644
--- a/src/experiments/profiling-python-web-applications-with-visual-tools.md
+++ b/src/experiments/profiling-python-web-applications-with-visual-tools.md
@@ -1,7 +1,7 @@
1title: Profiling Python web applications with visual tools 1title: Profiling Python web applications with visual tools
2description: Missing link when debugging and profiling python web application 2description: Missing link when debugging and profiling python web application
3date: 2017-04-21 3date: 2017-04-21
4tags: experiment 4type: post
5hide: false 5hide: false
6---- 6----
7 7
@@ -16,7 +16,7 @@ Before we begin there are some requirements. We will need to:
16 16
17If you are using MacOS you should check out [Profiling Viewer](http://www.profilingviewer.com/) or [MacCallGrind](http://www.maccallgrind.com/). 17If you are using MacOS you should check out [Profiling Viewer](http://www.profilingviewer.com/) or [MacCallGrind](http://www.maccallgrind.com/).
18 18
19![KCachegrind](/files/kcachegrind.png) 19![KCachegrind](/files/python-profiling/kcachegrind.png)
20 20
21We will be dividing this post into two main categories: 21We will be dividing this post into two main categories:
22 22
@@ -135,7 +135,7 @@ $ pyprof2calltree -i awesome_random_number.prof
135 135
136This file can be opened with visualizing tools listed above. In this case we will be using Profilling Viewer under MacOS. You can open image in new tab. As you can see from this example there is hierarchy of execution order of your code. 136This file can be opened with visualizing tools listed above. In this case we will be using Profilling Viewer under MacOS. You can open image in new tab. As you can see from this example there is hierarchy of execution order of your code.
137 137
138![Profilling Viewer](/files/profiling-viewer.png) 138![Profilling Viewer](/files/python-profiling/profiling-viewer.png)
139 139
140> Make sure you convert output of the cProfile output every time you want to refresh and take a look at your possible optimizations because cProfile updates .prof file every time browser hits the function. 140> Make sure you convert output of the cProfile output every time you want to refresh and take a look at your possible optimizations because cProfile updates .prof file every time browser hits the function.
141 141
@@ -158,7 +158,7 @@ $ snakeviz awesome_random_number.prof
158# shows visualized profile 158# shows visualized profile
159``` 159```
160 160
161![SnakeViz](/files/snakeviz.png) 161![SnakeViz](/files/python-profiling/snakeviz.png)
162 162
163Reddit user [ccharles](https://www.reddit.com/user/ccharles) suggested a better way for installing pip software by targeting user level instead of using sudo. 163Reddit user [ccharles](https://www.reddit.com/user/ccharles) suggested a better way for installing pip software by targeting user level instead of using sudo.
164 164
diff --git a/src/experiments/simple-iot-application.md b/src/experiments/simple-iot-application.md
index 1543e52..c7f59cf 100644
--- a/src/experiments/simple-iot-application.md
+++ b/src/experiments/simple-iot-application.md
@@ -1,7 +1,7 @@
1title: Simple IOT application supported by real-time monitoring and data history 1title: Simple IOT application supported by real-time monitoring and data history
2description: Develop simple IOT application with Arduino MKR1000 and Python 2description: Develop simple IOT application with Arduino MKR1000 and Python
3date: 2017-08-11 3date: 2017-08-11
4tags: experiment 4type: post
5hide: false 5hide: false
6---- 6----
7 7
diff --git a/src/experiments/using-digitalocean-spaces-object-storage-with-fuse.md b/src/experiments/using-digitalocean-spaces-object-storage-with-fuse.md
index ab0079f..1d3fe48 100644
--- a/src/experiments/using-digitalocean-spaces-object-storage-with-fuse.md
+++ b/src/experiments/using-digitalocean-spaces-object-storage-with-fuse.md
@@ -1,7 +1,7 @@
1title: Using DigitalOcean Spaces Object Storage with FUSE 1title: Using DigitalOcean Spaces Object Storage with FUSE
2description: Using DigitalOcean Spaces Object Storage with FUSE 2description: Using DigitalOcean Spaces Object Storage with FUSE
3date: 2018-01-16 3date: 2018-01-16
4tags: experiment 4type: post
5hide: false 5hide: false
6---- 6----
7 7
diff --git a/src/experiments/using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md b/src/experiments/using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
index 1f9d400..ad0362b 100644
--- a/src/experiments/using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
+++ b/src/experiments/using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
@@ -1,7 +1,7 @@
1title: Using sentiment analysis for click‑bait detection in RSS feeds 1title: Using sentiment analysis for click‑bait detection in RSS feeds
2description: Using Python with sentiment analysis to detect if titles in RSS feeds are click-bait 2description: Using Python with sentiment analysis to detect if titles in RSS feeds are click-bait
3date: 2019-10-19 3date: 2019-10-19
4tags: experiment 4type: post
5hide: false 5hide: false
6---- 6----
7 7