Plik Contextmenu
This commit is contained in:
parent
f3d06df28c
commit
b320211f02
@ -87,8 +87,8 @@ pluralizelisttitles = false # removes the automatically appended "s" on sideba
|
||||
{Name = "Webring", URL = "/webring/", HasChildren = false},
|
||||
]
|
||||
|
||||
|
||||
[taxonomies]
|
||||
series = 'series'
|
||||
tags = 'tags'
|
||||
|
||||
|
||||
|
44
content/posts/plik.md
Normal file
44
content/posts/plik.md
Normal file
@ -0,0 +1,44 @@
|
||||
---
|
||||
title: "How to create a oneclick uploader in your Filemanager"
|
||||
date: 2024-08-09T15:20:56+02:00
|
||||
draft: false
|
||||
tags: ["Linux","Server","Technology"]
|
||||
categories: "Technology"
|
||||
---
|
||||
|
||||
### What it looks like
|
||||
|
||||
{{< youtube Jhv5Npu870c >}}
|
||||
|
||||
### Install Plik on a Server
|
||||
|
||||
```
|
||||
wget https://github.com/root-gg/plik/releases/download/1.3.8/plik-1.3.8-linux-amd64.tar.gz
|
||||
tar xzvf plik-1.3.8-linux-amd64.tar.gz
|
||||
cd plik-1.3.8-linux-amd64/server
|
||||
./plikd
|
||||
```
|
||||
|
||||
For More Information, visit:
|
||||
https://github.com/root-gg/plik/tree/master
|
||||
|
||||
### Create a "script" to execute plik
|
||||
```
|
||||
#!/bin/bash
|
||||
|
||||
~/Software/bin/plik
|
||||
|
||||
exit 0
|
||||
```
|
||||
### Copy it to Nemos Script folder
|
||||
|
||||
```
|
||||
cp plik.sh ~/.local/share/nemo/scripts
|
||||
```
|
||||
|
||||
### Open Nemo Settings
|
||||
|
||||
![Nemo1](/images/nemo1.png)
|
||||
|
||||
### Add the Script
|
||||
![Nemo1](/images/nemo2.png)
|
1
layouts/shortcodes/iframe.html
Normal file
1
layouts/shortcodes/iframe.html
Normal file
@ -0,0 +1 @@
|
||||
<iframe src="{{ .Get "src" }}" width="{{ .Get "width" }}" height="{{ .Get "height" }}" frameborder="{{ .Get "frameborder" | default "0" }}" allowfullscreen="{{ .Get "allowfullscreen" | default "true" }}"></iframe>
|
1
layouts/shortcodes/peertube.html
Normal file
1
layouts/shortcodes/peertube.html
Normal file
@ -0,0 +1 @@
|
||||
<iframe src="{{ .Get "src" }}" width="{{ .Get "width" | default "560" }}" height="{{ .Get "height" | default "315" }}" frameborder="0" allowfullscreen></iframe>
|
@ -203,6 +203,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -211,10 +215,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
public/images/nemo1.png
Normal file
BIN
public/images/nemo1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 400 KiB |
BIN
public/images/nemo2.png
Normal file
BIN
public/images/nemo2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 554 KiB |
@ -74,7 +74,7 @@
|
||||
<meta property="og:url" content="/" />
|
||||
|
||||
|
||||
<meta property="og:updated_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:updated_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
<link rel="sitemap" type="application/xml" title="Sitemap" href='/sitemap.xml' />
|
||||
@ -205,6 +205,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -213,10 +217,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -433,6 +433,60 @@ powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a
|
||||
<div class="posts">
|
||||
|
||||
|
||||
<article class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</h1>
|
||||
|
||||
<div class="headline">
|
||||
<div>
|
||||
|
||||
<time datetime=" 2024-08-09T15:20:56+0200" class="post-date">
|
||||
August 9, 2024
|
||||
</time>
|
||||
|
||||
<span> - </span>
|
||||
<span class="reading-time">
|
||||
|
||||
|
||||
|
||||
|
||||
<span>1 min read</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="tags">
|
||||
|
||||
<li class="tag-Linux">
|
||||
<a href="/tags/linux">Linux</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Server">
|
||||
<a href="/tags/server">Server</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Technology">
|
||||
<a href="/tags/technology">Technology</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
What it looks like Install Plik on a Server wget https://github.com/root-gg/plik/releases/download/1.3.8/plik-1.3.8-linux-amd64.tar.gz tar xzvf plik-1.3.8-linux-amd64.tar.gz cd plik-1.3.8-linux-amd64/server ./plikd For More Information, visit: https://github.com/root-gg/plik/tree/master
|
||||
Create a “script” to execute plik #!/bin/bash ~/Software/bin/plik exit 0 Copy it to Nemos Script folder cp plik.sh ~/.local/share/nemo/scripts Open Nemo Settings Add the Script
|
||||
|
||||
|
||||
</article>
|
||||
<article class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
@ -963,57 +1017,6 @@ A functional Nitter installation located at /opt/nitter.
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
<article class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
<a href="/posts/till-lindemann-lizard/">Rammstein Singer Till Lindemann Lizard Confirmed</a>
|
||||
</h1>
|
||||
|
||||
<div class="headline">
|
||||
<div>
|
||||
|
||||
<time datetime=" 2023-10-02T04:44:38+0200" class="post-date">
|
||||
October 2, 2023
|
||||
</time>
|
||||
|
||||
<span> - </span>
|
||||
<span class="reading-time">
|
||||
|
||||
|
||||
|
||||
|
||||
<span>1 min read</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="tags">
|
||||
|
||||
<li class="tag-Conspiracy">
|
||||
<a href="/tags/conspiracy">Conspiracy</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Paranormal">
|
||||
<a href="/tags/paranormal">Paranormal</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
Watch his eyes closly at 30:22 you should see this There are other videos out there that show the eyes, here:
|
||||
https://youtube.com/watch?v=GyUNmmj19-A&t=1822s
|
||||
https://youtu.be/eONecDS2sIo?t=121
|
||||
|
||||
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
@ -6,7 +6,17 @@
|
||||
<description>Recent content on </description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Tue, 11 Jun 2024 22:24:05 +0200</lastBuildDate><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Fri, 09 Aug 2024 15:20:56 +0200</lastBuildDate><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>How to create a oneclick uploader in your Filemanager</title>
|
||||
<link>/posts/plik/</link>
|
||||
<pubDate>Fri, 09 Aug 2024 15:20:56 +0200</pubDate>
|
||||
|
||||
<guid>/posts/plik/</guid>
|
||||
<description>What it looks like Install Plik on a Server wget https://github.com/root-gg/plik/releases/download/1.3.8/plik-1.3.8-linux-amd64.tar.gz tar xzvf plik-1.3.8-linux-amd64.tar.gz cd plik-1.3.8-linux-amd64/server ./plikd For More Information, visit: https://github.com/root-gg/plik/tree/master
|
||||
Create a &ldquo;script&rdquo; to execute plik #!/bin/bash ~/Software/bin/plik exit 0 Copy it to Nemos Script folder cp plik.sh ~/.local/share/nemo/scripts Open Nemo Settings Add the Script </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Bugout Bag</title>
|
||||
<link>/posts/bug-out-bag/</link>
|
||||
|
@ -74,7 +74,7 @@
|
||||
<meta property="og:url" content="/" />
|
||||
|
||||
|
||||
<meta property="og:updated_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:updated_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
<link rel="sitemap" type="application/xml" title="Sitemap" href='/sitemap.xml' />
|
||||
@ -205,6 +205,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -213,10 +217,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -433,6 +433,57 @@ powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a
|
||||
<div class="posts">
|
||||
|
||||
|
||||
<article class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
<a href="/posts/till-lindemann-lizard/">Rammstein Singer Till Lindemann Lizard Confirmed</a>
|
||||
</h1>
|
||||
|
||||
<div class="headline">
|
||||
<div>
|
||||
|
||||
<time datetime=" 2023-10-02T04:44:38+0200" class="post-date">
|
||||
October 2, 2023
|
||||
</time>
|
||||
|
||||
<span> - </span>
|
||||
<span class="reading-time">
|
||||
|
||||
|
||||
|
||||
|
||||
<span>1 min read</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="tags">
|
||||
|
||||
<li class="tag-Conspiracy">
|
||||
<a href="/tags/conspiracy">Conspiracy</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Paranormal">
|
||||
<a href="/tags/paranormal">Paranormal</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
Watch his eyes closly at 30:22 you should see this There are other videos out there that show the eyes, here:
|
||||
https://youtube.com/watch?v=GyUNmmj19-A&t=1822s
|
||||
https://youtu.be/eONecDS2sIo?t=121
|
||||
|
||||
|
||||
</article>
|
||||
<article class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -533,6 +533,10 @@ powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a
|
||||
<a class="previous-post" href="/posts/gpu-passtrough-mint21/?ref=footer"><span style="font-weight:bold;">« Previous</span><br>Gpu Passtrough Mint21</a>
|
||||
|
||||
|
||||
<div class="next-post">
|
||||
<a href="/posts/plik/?ref=footer"><span style="font-weight:bold;">Next »</span><br>How to create a oneclick uploader in your...</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +77,7 @@
|
||||
<meta property="og:url" content="/posts/" />
|
||||
|
||||
|
||||
<meta property="og:updated_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:updated_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
<link rel="sitemap" type="application/xml" title="Sitemap" href='/sitemap.xml' />
|
||||
@ -112,8 +112,8 @@
|
||||
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="article:publisher" content="" />
|
||||
<meta property="og:article:published_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="article:published_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:article:published_time" content="2024-08-09T15:20:56+02:00" />
|
||||
<meta property="article:published_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
|
||||
@ -229,6 +229,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -237,10 +241,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -459,6 +459,15 @@ powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a
|
||||
|
||||
<h3 style="text-align: center;">2024</h3>
|
||||
|
||||
<li>
|
||||
<span class="title">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</span>
|
||||
<span class="published">
|
||||
<time class="pull-right post-list">August 9, 2024</time>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<span class="title">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
|
@ -6,7 +6,17 @@
|
||||
<description>Recent content in Posts on </description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Tue, 11 Jun 2024 22:24:05 +0200</lastBuildDate><atom:link href="/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Fri, 09 Aug 2024 15:20:56 +0200</lastBuildDate><atom:link href="/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>How to create a oneclick uploader in your Filemanager</title>
|
||||
<link>/posts/plik/</link>
|
||||
<pubDate>Fri, 09 Aug 2024 15:20:56 +0200</pubDate>
|
||||
|
||||
<guid>/posts/plik/</guid>
|
||||
<description>What it looks like Install Plik on a Server wget https://github.com/root-gg/plik/releases/download/1.3.8/plik-1.3.8-linux-amd64.tar.gz tar xzvf plik-1.3.8-linux-amd64.tar.gz cd plik-1.3.8-linux-amd64/server ./plikd For More Information, visit: https://github.com/root-gg/plik/tree/master
|
||||
Create a &ldquo;script&rdquo; to execute plik #!/bin/bash ~/Software/bin/plik exit 0 Copy it to Nemos Script folder cp plik.sh ~/.local/share/nemo/scripts Open Nemo Settings Add the Script </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Bugout Bag</title>
|
||||
<link>/posts/bug-out-bag/</link>
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +77,7 @@
|
||||
<meta property="og:url" content="/posts/" />
|
||||
|
||||
|
||||
<meta property="og:updated_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:updated_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
<link rel="sitemap" type="application/xml" title="Sitemap" href='/sitemap.xml' />
|
||||
@ -112,8 +112,8 @@
|
||||
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="article:publisher" content="" />
|
||||
<meta property="og:article:published_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="article:published_time" content="2024-06-11T22:24:05+02:00" />
|
||||
<meta property="og:article:published_time" content="2024-08-09T15:20:56+02:00" />
|
||||
<meta property="article:published_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
|
||||
@ -229,6 +229,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -237,10 +241,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -459,6 +459,15 @@ powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a
|
||||
|
||||
<h3 style="text-align: center;">2024</h3>
|
||||
|
||||
<li>
|
||||
<span class="title">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</span>
|
||||
<span class="published">
|
||||
<time class="pull-right post-list">August 9, 2024</time>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<span class="title">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
|
549
public/posts/plik/index.html
Normal file
549
public/posts/plik/index.html
Normal file
@ -0,0 +1,549 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
|
||||
<head>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script defer language="javascript" type="text/javascript" src="/js/bundle.min.14549c76bbc96f0af1574b0259efd70e52908cd36fb4d14ed3d290a1b6479eae.js"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
|
||||
<link rel="icon" href=images/tiger.png>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Open Graph image and Twitter Card metadata -->
|
||||
|
||||
<title itemprop="name">tinfoil-hat.net - How to create a oneclick uploader in your Filemanager</title>
|
||||
<meta property="og:title" content=tinfoil-hat.net - How to create a oneclick uploader in your Filemanager />
|
||||
<meta name="twitter:title" content=tinfoil-hat.net - How to create a oneclick uploader in your Filemanager />
|
||||
<meta itemprop="name" content=tinfoil-hat.net - How to create a oneclick uploader in your Filemanager />
|
||||
<meta name="application-name" content=tinfoil-hat.net - How to create a oneclick uploader in your Filemanager />
|
||||
<meta property="og:site_name" content="" />
|
||||
|
||||
|
||||
<meta name="description" content="" />
|
||||
<meta itemprop="description" content="" />
|
||||
<meta property="og:description" content="" />
|
||||
<meta name="twitter:description" content="" />
|
||||
|
||||
|
||||
<base href="/posts/plik/" />
|
||||
<link rel="canonical" href="/posts/plik/" itemprop="url" />
|
||||
<meta name="url" content="/posts/plik/" />
|
||||
<meta name="twitter:url" content="/posts/plik/" />
|
||||
<meta property="og:url" content="/posts/plik/" />
|
||||
|
||||
|
||||
<meta property="og:updated_time" content="2024-08-09T15:20:56+02:00" />
|
||||
|
||||
|
||||
<link rel="sitemap" type="application/xml" title="Sitemap" href='/sitemap.xml' />
|
||||
|
||||
<meta name="robots" content="index,follow" />
|
||||
<meta name="googlebot" content="index,follow" />
|
||||
|
||||
|
||||
<meta name="twitter:site" content="" />
|
||||
<meta name="twitter:creator" content="" />
|
||||
<meta property="fb:admins" content="" />
|
||||
|
||||
|
||||
<meta name="apple-mobile-web-app-title" content="" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="generator" content="Hugo 0.111.3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="/css/bundle.min.94a339836f89f0d25f31980cb6b0631da21e20af128308747ce44e0525eb16ef.css">
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
body {
|
||||
--sidebar-bg-color: #202020;
|
||||
--sidebar-img-border-color: #515151;
|
||||
--sidebar-p-color: #909090;
|
||||
--sidebar-h1-color: #FFF;
|
||||
--sidebar-a-color: #FFF;
|
||||
--sidebar-socials-color: #FFF;
|
||||
--text-color: #222;
|
||||
--bkg-color: #FAF9F6;
|
||||
--post-title-color: #303030;
|
||||
--list-color: #5A5A5A;
|
||||
--link-color: #268BD2;
|
||||
--date-color: #515151;
|
||||
--table-border-color: #E5E5E5;
|
||||
--table-stripe-color: #F9F9F9;
|
||||
--code-color: #000;
|
||||
--code-background-color: #E5E5E5;
|
||||
--code-block-color: #FFF;
|
||||
--code-block-background-color: #272822;
|
||||
--moon-sun-color: #FFF;
|
||||
--moon-sun-background-color: #515151;
|
||||
}
|
||||
body.dark-theme {
|
||||
--text-color: #EEE;
|
||||
--bkg-color: #121212;
|
||||
--post-title-color: #DBE2E9;
|
||||
--list-color: #9D9D9D;
|
||||
--link-color: #268BD2;
|
||||
--date-color: #9A9A9A;
|
||||
--table-border-color: #515151;
|
||||
--table-stripe-color: #202020;
|
||||
--code-color: #FFF;
|
||||
--code-background-color: #515151;
|
||||
--code-block-color: #FFF;
|
||||
--code-block-background-color: #272822;
|
||||
}
|
||||
body {
|
||||
background-color: var(--bkg-color);
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="">
|
||||
<div class="wrapper">
|
||||
<aside class="sidebar">
|
||||
<div class="container sidebar-sticky">
|
||||
<div class="light-dark" align="right">
|
||||
<button class="btn-light-dark" title="Toggle light/dark mode">
|
||||
<svg class="moon" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16">
|
||||
<path fill="currentColor" d="M6 .278a.768.768 0 0 1 .08.858a7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277c.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316a.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71C0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"/>
|
||||
</svg>
|
||||
<svg class="sun" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16">
|
||||
<path fill="currentColor" d="M8 12a4 4 0 1 0 0-8a4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="sidebar-about">
|
||||
<h1 class="brand">
|
||||
|
||||
<a href="/">
|
||||
<img src="/images/tiger.png" alt="brand image">
|
||||
</a>
|
||||
|
||||
|
||||
<a href="/">
|
||||
<h1>tinfoil-hat.net</h1>
|
||||
</a>
|
||||
|
||||
</h1>
|
||||
<p class="lead">
|
||||
A secure home for every tinfoil-hat
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<ul class="sidebar-nav">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="heading">
|
||||
<a href="/posts/">Posts</a>
|
||||
</li>
|
||||
|
||||
<li class="sub-heading">
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="heading">
|
||||
<a href="/unixporn/">Unixporn</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li class="heading">
|
||||
<a href="/webring/">Webring</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
<a target="_blank" class="social" title="Gitlab" href="https://git.tinfoil-hat.net">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1.2em" height="1.2em" viewBox="-2 -2.5 24 24">
|
||||
<path fill="currentColor" d='M10.006 18.443L6.326 7.118h7.36l-3.68 11.325zm0 0L1.168 7.118h5.158l3.68 11.325zM1.168 7.118l8.838 11.325-9.68-7.032a.762.762 0 0 1-.276-.852l1.118-3.441zm0 0L3.385.296a.38.38 0 0 1 .724 0l2.217 6.822H1.168zm8.838 11.325l3.68-11.325h5.157l-8.837 11.325zm8.837-11.325l1.119 3.441a.762.762 0 0 1-.277.852l-9.68 7.032 8.838-11.325zm0 0h-5.157L15.902.296a.38.38 0 0 1 .725 0l2.216 6.822z' />
|
||||
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a target="_blank" class="social" title="YouTube" href="https://tube.tinfoil-hat.net">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1.2em" height="1.2em" viewBox="0 0 24 24">
|
||||
<path fill="currentColor" d="M12.006 19.012h-.02c-.062 0-6.265-.012-7.83-.437a2.5 2.5 0 0 1-1.764-1.765A26.494 26.494 0 0 1 1.986 12a26.646 26.646 0 0 1 .417-4.817A2.564 2.564 0 0 1 4.169 5.4c1.522-.4 7.554-.4 7.81-.4H12c.063 0 6.282.012 7.831.437c.859.233 1.53.904 1.762 1.763c.29 1.594.427 3.211.407 4.831a26.568 26.568 0 0 1-.418 4.811a2.51 2.51 0 0 1-1.767 1.763c-1.52.403-7.553.407-7.809.407Zm-2-10.007l-.005 6l5.212-3l-5.207-3Z"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a target="_blank" class="social" title="RSS Feed" href="/posts/index.xml">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1.2em" viewBox="0 0 1280.000000 1280.000000">
|
||||
<g transform="translate(0.000000,1280.000000) scale(0.100000,-0.100000)" fill="currentColor">
|
||||
<path d="M2295 11929 c-284 -12 -642 -45 -707 -65 -17 -5 -18 -63 -18 -1039 0 -569 4 -1036 8 -1039 5 -3 74 6 153 19 510 86 1168 95 1789 25 1348 -153 2602 -677 3670 -1531 385 -308 820 -744 1126 -1129 842 -1060 1362 -2313 1514 -3650 70 -621 61 -1279 -25 -1789 -13 -79 -22 -148 -19 -153 3 -4 471 -8 1039 -8 l1035 0 5 23 c51 225 85 942 67 1419 -23 605 -77 1044 -198 1617 -294 1400 -927 2734 -1823 3846 -1043 1295 -2364 2259 -3909 2854 -1158 447 -2451 656 -3707 600z"/>
|
||||
<path d="M2255 7845 c-269 -25 -620 -81 -667 -106 -17 -9 -18 -55 -18 -899 0 -706 3 -890 13 -890 6 0 66 18 132 41 130 44 288 79 467 105 154 21 577 30 749 15 1207 -107 2267 -823 2814 -1902 166 -327 268 -637 330 -1001 38 -227 48 -384 42 -662 -8 -348 -44 -590 -126 -831 -23 -66 -41 -126 -41 -132 0 -10 184 -13 890 -13 844 0 890 1 899 18 27 50 88 452 110 725 14 162 14 624 1 782 -59 703 -233 1323 -545 1945 -481 956 -1313 1788 -2270 2268 -620 310 -1239 483 -1940 542 -165 14 -669 10 -840 -5z"/>
|
||||
<path d="M2519 3815 c-391 -66 -725 -336 -868 -703 -79 -201 -96 -462 -45 -677 83 -344 338 -641 666 -774 116 -47 205 -69 330 -80 412 -39 811 153 1040 500 193 292 240 648 128 981 -135 403 -492 699 -914 757 -100 14 -241 12 -337 -4z"/>
|
||||
</g>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
<a target="_blank" class="social" title="Email" href="mailto://mail@tinfoil-hat.net">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1.2em" viewBox="0 0 485.211 485.211">
|
||||
<path fill="currentColor" d="M301.393,241.631L464.866,424.56H20.332l163.474-182.928l58.801,51.443L301.393,241.631z M462.174,60.651H23.027 l219.579,192.142L462.174,60.651z M324.225,221.67l160.986,180.151V80.792L324.225,221.67z M0,80.792v321.029L160.972,221.64 L0,80.792z"/>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
<p class="footnote">
|
||||
powered by <a target="_blank" href="https://gohugo.io">Hugo</a> | themed with <a target="_blank" href="https://github.com/lukeorth/poison">poison</a>
|
||||
<br>
|
||||
© 2024 . All rights reserved.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="content container">
|
||||
<div class="post">
|
||||
<div class="info">
|
||||
<h1 class="post-title">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</h1>
|
||||
|
||||
<div class="headline">
|
||||
<div>
|
||||
|
||||
<time datetime=" 2024-08-09T15:20:56+0200" class="post-date">
|
||||
August 9, 2024
|
||||
</time>
|
||||
|
||||
<span> - </span>
|
||||
<span class="reading-time">
|
||||
|
||||
|
||||
|
||||
|
||||
<span>1 min read</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="tags">
|
||||
|
||||
<li class="tag-Linux">
|
||||
<a href="/tags/linux">Linux</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Server">
|
||||
<a href="/tags/server">Server</a>
|
||||
</li>
|
||||
|
||||
<li class="tag-Technology">
|
||||
<a href="/tags/technology">Technology</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<h3 id="what-it-looks-like">What it looks like</h3>
|
||||
|
||||
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
|
||||
<iframe src="https://www.youtube.com/embed/Jhv5Npu870c" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
|
||||
</div>
|
||||
|
||||
<h3 id="install-plik-on-a-server">Install Plik on a Server</h3>
|
||||
<pre tabindex="0"><code>wget https://github.com/root-gg/plik/releases/download/1.3.8/plik-1.3.8-linux-amd64.tar.gz
|
||||
tar xzvf plik-1.3.8-linux-amd64.tar.gz
|
||||
cd plik-1.3.8-linux-amd64/server
|
||||
./plikd
|
||||
</code></pre><p>For More Information, visit:
|
||||
<a href="https://github.com/root-gg/plik/tree/master" target="_blank">https://github.com/root-gg/plik/tree/master</a></p>
|
||||
<h3 id="create-a-script-to-execute-plik">Create a “script” to execute plik</h3>
|
||||
<pre tabindex="0"><code>#!/bin/bash
|
||||
|
||||
~/Software/bin/plik
|
||||
|
||||
exit 0
|
||||
</code></pre><h3 id="copy-it-to-nemos-script-folder">Copy it to Nemos Script folder</h3>
|
||||
<pre tabindex="0"><code>cp plik.sh ~/.local/share/nemo/scripts
|
||||
</code></pre><h3 id="open-nemo-settings">Open Nemo Settings</h3>
|
||||
<p><img src="/images/nemo1.png" alt="Nemo1"></p>
|
||||
<h3 id="add-the-script">Add the Script</h3>
|
||||
<p><img src="/images/nemo2.png" alt="Nemo1"></p>
|
||||
|
||||
|
||||
<hr>
|
||||
<div class="footer">
|
||||
|
||||
|
||||
<a class="previous-post" href="/posts/bug-out-bag/?ref=footer"><span style="font-weight:bold;">« Previous</span><br>Bugout Bag</a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
|
||||
<div class="article-toc ">
|
||||
<div class="toc-wrapper">
|
||||
<h4 id="contents"></h4>
|
||||
<nav id="TableOfContents">
|
||||
<ul>
|
||||
<li>
|
||||
<ul>
|
||||
<li><a href="#what-it-looks-like">What it looks like</a></li>
|
||||
<li><a href="#install-plik-on-a-server">Install Plik on a Server</a></li>
|
||||
<li><a href="#create-a-script-to-execute-plik">Create a “script” to execute plik</a></li>
|
||||
<li><a href="#copy-it-to-nemos-script-folder">Copy it to Nemos Script folder</a></li>
|
||||
<li><a href="#open-nemo-settings">Open Nemo Settings</a></li>
|
||||
<li><a href="#add-the-script">Add the Script</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -207,6 +207,10 @@
|
||||
Recent
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/plik/">How to create a oneclick uploader in your Filemanager</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/bug-out-bag/">Bugout Bag</a>
|
||||
</li>
|
||||
@ -215,10 +219,6 @@
|
||||
<a href="/posts/gpu-passtrough-mint21/">Gpu Passtrough Mint21</a>
|
||||
</li>
|
||||
|
||||
<li class="bullet">
|
||||
<a href="/posts/vbox-autostart/">Vbox Autostart</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
|
||||
|