Remove recommended reading page

This commit is contained in:
Korbs 2024-12-03 23:04:25 -05:00
parent 51aebf04b7
commit 035e622fb8
16 changed files with 0 additions and 287 deletions

View file

@ -1,33 +0,0 @@
---
title: FAQ
---
Q: Is this official software?
A: No, Penpot Desktop is an Electron-based application developed by SudoVanilla. If the project was official, it would be sitting on Penpots GitHub, not SudoVanilla Code.
Q: Does Penpot Desktop support offline use? If so, how do I use it offline?
A: Penpot Desktop does support offline usage, you can do this by hosting Penpot on your own machine or in a local server within your home. To learn how to host Penpot yourself, please view their [official guide](https://penpot.app/self-host). Try installing with Docker or your preferrable method.
To switch Penpot Desktop to your self-hosted Penpot, click on the “Gear” icon in the upper right corner, then your Instance options, please put in where your self-hosted Penpot is. You should be able to use a local IP address, as long as you on are on the same network, an example looks like “[http://192.168.1.2:9001/](http://192.168.1.2:9001/)“. If you used your own machine, where youll also be using Penpot Desktop, then using “[http://localhost:9001](http://localhost:9001)” should work, even without internet enabled.
Q: Theres an issue with the app, where do I get help?
A: Please view the [support section](https://sudovanilla.com/code/Korbs/Penpot-Desktop/src/branch/main#support) of the README file. Email support is recommended for a faster response.
Q: What operating system does this support?
A: View [System Requirements](https://sudovanilla.com/docs/penpot-desktop/faq/docs/penpot-desktop/install/requirements/).\
Q: If an update is available, how do I get it?
A: This is done automatically on Windows and Linux, with auto update builtin from Electron Builder. We recommend that you wait at the least 1 - 2 minutes for the update to download, or depending on your internet. This usually take about 10 - 30 seconds for decent internet(200mbps).
On macOS, however, each update must be installed manually by the user themself. No, you are not required to do this on a regular basis; nevertheless, updating Penpot Desktop is recommended if you want the most up-to-date version in general. Its difficult to support macOS for auto updating at the time being. **(In newer version from v0.2.3 and newer, auto update will be supported.)**

View file

@ -1,6 +0,0 @@
---
title: Instance
---
A server running Penpot, is called an “Instance”. Their can be many and you dont really need to choose one, commonly you only need to choose the offiical one that is ran by Penpot or to self-host your own.
As an example, “[https://design.penpot.app/](https://design.penpot.app/)” is an instance.

View file

@ -1,32 +0,0 @@
---
title: What is Penpot?
---
Penpot is the first open-source design & prototyping tool for product teams, that allows full collaboration between designers and developers thanks to features such as Flex Layout and Code Inspect.
**Professional UI for the whole team**
Design systems, components, interactive prototypes, feedback loop and pixel perfect designs come together in an extremely intuitive and powerful web user interface that opens up the design process to all stakeholders.
**Designer & Developer collaboration for real**
Penpot brings both code-ready design capabilities and the familiarity of developer tools to a new workspace flow.
**Open Standards that deliver future-proof ownership of your designs**
Penpot supports unconditionally open standards for all your design work. Our SVG and web standards approach means zero vendor lock-in and extreme interoperability. Penpot delivers Freedom to Product teams.
**Penpot is free**
Both Cloud and self-host services are free. Penpot projects can be moved around easily across all Penpot deployment flavors so youre free to change your mind at any time!
> SudoVanilla or this website is not associated with Penpot or Kaleidos.
## What is Penpot Desktop?
Penpot Desktop delivers a desktop-like experience for Penpot users with the additional of integrating tabs to conveniently traverse back and forth between projects. Offline support is available through the select your own instance option in settings, as well as the theme settings that may be applied to either the entire desktop app or simply the Penpot dashboard.
**Offline Use**
One of the major features of Penpot Desktop, is that it can be used [offline](https://sudovanilla.com/help/penpot-desktop/features/offline-use/) if you selfhost Penpot on your own machine. You could also connect Penpot Desktop to our own Penpot instance running on your own server. This is thanks to Penpot allowing you to use technology such as Docker to selfhost your own instance.
**Open Source** Proudly built with open source technology and libraries. Thanks to Electron, its cross-platform allowing it to work on operating systems such as Windows, macOS, and Linux. Anyone willing to help with Penpot Desktop are welcomed to contribute to its source code on SudoVanilla Code.

View file

@ -1,96 +0,0 @@
---
title: Offline Use
---
> This article can be too techincal for some users. If it is for you, ask a friend who is familiar with techincal stuff. SudoVanilla is also willing to help you live in a call via Matrix or Jitsi Meet, [email to schedule a call](mailto:support@sudovanilla.com?subject=Schedule%20a%20Call\&body=I'll%20like%20to%20schedule%20a%20call%20at%20INSERT_TIME_AND_DATE_HERE.).
Penpot allows users, developers, and companies to selfhost Penpot on-premise or in the cloud on their servers. Thanks to this, it is possible selfhost Penpot directly on your daily driver and make Penpot Desktop work offline.
## Install Docker
> Skip this section if you already have docker installed, up and running.
Currently, Docker comes into two different flavours:
### Docker Desktop
This is the only option to have Docker in a Windows or MacOS. Recently its also available for Linux, in the most popular distributions (Debian, Ubuntu and Fedora).
You can install it following the official guide.
Docker Desktop has a graphical control panel (GUI) to manage the service and view the containers, images and volumes. But need the command line (Terminal in Linux and Mac, or PowerShell in Windows) to build and run the containers, and execute other operations.
It already includes docker compose utility, needed by Penpot.
### Docker Engine
This is the classic and default Docker setup for Linux machines, and the only option for a Linux VPS without graphical interface.
You can install it following the official guide.
And you also need the docker compose (V2) plugin. You can use the old docker-compose tool, but all the documentation supposes you are using the V2.
You can easily check which version of docker compose you have. If you can execute docker compose command, then you have V2. If you need to write docker-compose (with a -) for it to work, you have the old version.
## Start Penpot
After making sure that Docker is running on your machine, lets go ahead and start Penpot with it.
First step is to obtain the `docker-compose.yml` file, you can download this from the Penpot repo using the following command in your terminal:
Terminal window
```
curl -o docker-compose.yaml https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml
```
Afterwards, you can simply launch Penpot by using the composer command:
Terminal window
```
docker compose -p penpot -f docker-compose.yaml up -d
```
Wait a moment, then the server should be up and running on [http://localhost:9001](http://localhost:9001).
### Set Penpot Desktop to your Local Instance
Once youve confirmed that Penpot is now running on [http://localhost:9001](http://localhost:9001), go ahead and set this link inside of Penpot Desktop so that the app uses your local instance.
Click on the gear icon found in the upper-right corner of Penpot Desktop, then for instance please set “[http://localhost:9001](http://localhost:9001)”, and click the save button.
Now, reload or restart Penpot Desktop to start using Penpot Desktop offline.
### Creating an Account
Youll need to setup an account in your own instance, since its hosted on your machine, you have full control.
Create an account by clicking “Create Account” link on the login page and it should be straight-forward from there.
If you have having issues with that, you can try doing it through the command line instead:
Terminal window
```
docker exec -ti penpot-penpot-backend-1 python3 ./manage.py create-profile
```
## Updating Penpot
Whenever an update is release, you can update your local Penpot instance by running:
Terminal window
```
docker compose -f docker-compose.yaml pull
```
## Backup Penpot
Penpot uses Docker volumes to store all persistent data. This allows you to delete and recreate containers whenever you want without losing information.
This also means you need to do regular backups of the contents of the volumes. You cannot directly copy the contents of the volume data folder. Docker provides you a volume backup procedure, that uses a temporary container to mount one or more volumes, and copy their data to an archive file stored outside of the container.
If you use Docker Desktop, [there is an extension](https://www.docker.com/blog/back-up-and-share-docker-volumes-with-this-extension/) that may ease the backup process.
If you use the default docker compose file, there are two volumes used: one for the Postgres database and another one for the assets uploaded by your users (images and svg clips). There may be more volumes if you enable other features, as explained in the file itself.

View file

@ -1,4 +0,0 @@
---
title: progress
---
This part of the documentation is still being worked on, come back later. 

View file

@ -1,18 +0,0 @@
---
title: Introduction
---
**Zorn is currently in beta stages. Not everything listed below, as in its feature set, is not not done or hasnt been worked on yet.**
## Introduction
Zorn is a customizable HTML5 video player. The player is originally built for a SudoVanilla project called MinPluto, a privacy frontend for YouTube.
### What is a HTML5 Video Player?
HTML5 introduced the video player element in the late 2010s, which is embeded as `<video>`. It was intended by the creators of it to be the new standard to show video content on the web, instead of Adobe Flash which reached end-of-life in 2020. So, as of 2020, the HTML5 video is the only widely supported video playerback technology for modern browsers, with the Flash plugin being phased out.
You can see this in your browser as the built-in video player by [viewing this video](https://sudovanilla.com/content/videos/webm/Ennie-and-Yoyki.webm) or viewing in its own tab.
### Why not use the built-in player?
While you can build website or a video platform and having your visitors rely on their web browsers built-in video player, it can be quite limited if you want or your visitors want certain features. Features such as quality selector, subtitles, seek, and more. The built-in player does not, usually, include those. Another reason is why a company or a project may want to use a custom player such as Zorn is to have a curated player for their website that fits the style and needs.

View file

@ -1,7 +0,0 @@
---
title: GitHubbub! GitHub Does Not Value Software Freedom.
author: Mike Gerwitz
date: 0001-01-01
url: https://mikegerwitz.com/about/githubbub/
image: https://md.sudovanilla.org/images/githubno.png
---

View file

@ -1,8 +0,0 @@
---
title: 'ISPs are selling your private browsing history. Heres how to prevent it. '
author: Proton Team
date: 2017-03-24
url: https://proton.me/blog/private-browsing-history
image: >-
https://image.proxy.sudovanilla.org/https://res.cloudinary.com/dbulfrlrz/images/w_1434,h_717,c_scale/f_auto,q_auto/f_auto,q_auto/v1707577896/wp-pme/browsing_history_privacy/browsing_history_privacy
---

View file

@ -1,7 +0,0 @@
---
title: Is TikTok Safe?
author: Douglas Crawfold
date: 2024-04-03
url: https://protonvpn.com/blog/is-tiktok-safe/
image: https://md.sudovanilla.org/images/is-tiktok-safe-blog.png
---

View file

@ -1,7 +0,0 @@
---
title: Google ads are getting worse, at your expense
author: Ben Wolford
date: 0001-01-01
url: https://proton.me/blog/google-shows-more-ads
image: https://md.sudovanilla.org/images/new-ads-in-gmail-inbox_3542274c2d.webp
---

View file

@ -1,7 +0,0 @@
---
title: Stop using Brave Browser
author: Corbin Davenport
date: 2023-08-07
url: https://www.spacebar.news/stop-using-brave-browser/
image: https://md.sudovanilla.org/images/braveno.jpg
---

View file

@ -1,7 +0,0 @@
---
title: Stop using Opera Browser and Opera GX
author: Corbin Davenport
date: 2023-01-24
url: https://www.spacebar.news/stop-using-opera-browser/
image: https://md.sudovanilla.org/images/operano.jpg
---

View file

@ -1,8 +0,0 @@
---
title: 'Vivaldi presents: “Browser choices. A tale of two Gatekeepers.”'
author: Jon Von Tetzchner
date: 2024-02-14
url: >-
https://vivaldi.com/blog/technology/vivaldi-browser-choices-a-tale-of-two-gatekeepers/
image: https://md.sudovanilla.org/images/browser-choices.png
---

View file

@ -1,7 +0,0 @@
---
title: What is Free Software?
author: GNU
date: 0001-01-01
url: https://www.gnu.org/philosophy/free-sw.en.html
image: https://md.sudovanilla.org/images/Screenshot_20240426_135536.png
---

View file

@ -1,7 +0,0 @@
---
title: Why Privacy Matters
author: Jonah Aragon and Daniel Nathan Gray
date: 2023-05-01
url: https://www.privacyguides.org/en/basics/why-privacy-matters
image: https://md.sudovanilla.org/images/why-privacy-matters.png
---

View file

@ -1,33 +0,0 @@
---
// Layout
import Default from "@layouts/Default.astro";
// Components
import Posts from "@components/blog/posts.astro";
import Heading from "@components/Heading.astro";
// Markdown
import Sources from "@components/blog/sources.md"
// List Posts
import { getCollection } from "astro:content";
const posts = await getCollection("recommend-reading");
---
<Default MobileTitle="Recommended Reading">
<Fragment slot="sub-header">
<p class="header-sub-service"><span id="show-w-scroll">SudoVanilla</span> Blog</p>
<div>
<a href="/blog/">Posts</a>
<a href="/blog/recommended-reading/">Recommended Reading</a>
</div>
</Fragment>
<Fragment slot="body">
<Heading Title="Posts"/>
<Posts GetPosts={posts} PrefixSlug=""/>
<p style="opacity: 0.5; font-size: 14px;">All links above goes to external sources, outside of SudoVanilla.</p>
<p style="opacity: 0.5; font-size: 14px;">Some links may be set incorrectly. Check the URL and make sure it doesn't end in "/" or double "//".</p>
<Heading Title="Looking for Alternatives?"/>
<Sources/>
</Fragment>
</Default>