<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Linux-Desktop on Vladimir Vinarsky</title>
    <link>https://vladimir-vinarsky.me/linux-desktop/</link>
    <description>Recent content in Linux-Desktop on Vladimir Vinarsky</description>
    <generator>Hugo -- 0.122.0</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 23 Nov 2025 22:10:05 +0100</lastBuildDate>
    <atom:link href="https://vladimir-vinarsky.me/linux-desktop/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Add application icons to the desktop</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/icons-on-desktop/</link>
      <pubDate>Sun, 23 Nov 2025 22:10:05 +0100</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/icons-on-desktop/</guid>
      <description>Download this page as a pdf
Motivation Add icons to desktop so that you do not have to remember all the names
Case Study: Fiji 1. Download the Fiji application Use following links:
link to Fiji download link to stable download for linux on x86-64 I downloaded it to ~/Documents/Programs, the full path is:
/home/vld/Documents/Programs 2. Extract the file in the Thunar manager Will extract to fiji-stable-linux64-jdk Now when you navigate to the /home/vld/Documents/Programs/fiji-stable-linux64-jdk/Fiji.</description>
    </item>
    <item>
      <title>Installation</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/installation/</link>
      <pubDate>Tue, 28 Oct 2025 22:51:21 +0100</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/installation/</guid>
      <description>Progress log Initial Installed ubuntu 24.04 all default installed vim, neofetch, curl, git, qrencode connected with github NAS connection sudo apt install cifs-utils sudo apt install nfs-common Gnome Tweaks sudo apt-get install gnome-tweaks Installing fonts sudo apt install ttf-mscorefonts-installer sudo fc-cache -f -v Install windows compatibility layer link to resources
Get your VERSION_CODENAME cat /etc/os-release Add the wine repository sudo mkdir -pm755 /etc/apt/keyrings wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo gpg --dearmor -o /etc/apt/keyrings/winehq-archive.</description>
    </item>
    <item>
      <title></title>
      <link>https://vladimir-vinarsky.me/linux-desktop/r-scripts/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/r-scripts/</guid>
      <description>Motivatioin K means clustering # Load required packages library(tidyverse) # Load the iris dataset data(iris) # View the dataset head(iris) # Select relevant numeric columns for clustering measurements &amp;lt;- iris %&amp;gt;% select(Sepal.Length, Sepal.Width, Petal.Length, Petal.Width) # Scale the data measurements_scaled &amp;lt;- scale(measurements) # Run K-Means Clustering set.seed(123) # For reproducibility kmeans_result &amp;lt;- kmeans(measurements_scaled, centers = 3) # Print the cluster assignments print(kmeans_result$cluster) # Add cluster results to the original dataset iris$cluster &amp;lt;- kmeans_result$cluster # Visualize Clusters ggplot(iris, aes(x = Sepal.</description>
    </item>
    <item>
      <title>Email client</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/email/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/email/</guid>
      <description>Motivation I lose a lot of time connecting conversations from different email accounts which creates friction and loss of messages Most important areas: Orders, NAVCARED Project
Motivation Gather all email accounts (gmail, zimbra, seznam) into one interface have folders by topic aggergating across the accounts for: messages for people from work and different projects journal news conferences orders etc. newsletters Have integration with google calendar and teams (be able to add from email into calendar) Be able to store the old messages and attachemnts Have an ability to search the emails/attachements from terminal Possible solution THunderbird email client</description>
    </item>
    <item>
      <title>My own bash functions</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/bash-functions/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/bash-functions/</guid>
      <description>Motivation Have a set of my own bash functions which can be used in terminal and scripts
Requirments on the syste Names of functions can be displayed in terminal Each function has a help and short description Functions are all in one file/one directory, so it can be backed-up, restored Work for scripting and in terminal Use cases making image panels processing videos processing audio parsing simple config files cleaning after itself creating a directory with a date for a script Initial design as suggested by chatGPT Where to put the functions Files File with functions:</description>
    </item>
    <item>
      <title>Running R on linux</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/r-studio/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/r-studio/</guid>
      <description>Motivation Be able to use R on ubuntu 24.04 Easy to have different versions of R with different packages Faster installation of pacakges (the downloaded packages are already compiled) so it si supposed to be much less annoying waiting for the compilation as in desktop Rstudio instance Using bioconductor dockers link to github of bioc-script which should be better to run specfic versions
link to the bioconductor docker website
How to do it with a normal R installation 1.</description>
    </item>
    <item>
      <title>Using llms without the chatgpt interface</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/llm/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/llm/</guid>
      <description>Motivation Supposedly, running the llms through api keys is faster and cheaper, then using chatgpt in the normal web interface
Use cases Have multiple projects separated Have a possibility to run it on multiple (single to hundreds) files Have access to web search Be able to back it up Have an ability to fast search through the previous questions Options llm offered from a chatGPT as a first choice based on it being simple terminal like interface not to get overwhelmed</description>
    </item>
    <item>
      <title>Winboat: run Windows and its application in a container</title>
      <link>https://vladimir-vinarsky.me/linux-desktop/winboat/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://vladimir-vinarsky.me/linux-desktop/winboat/</guid>
      <description>Motivation Running some applications works with wine (the translation layer between linux and windows), but some stuff does not.
The option to have windows in a container is supposed to be easier than setting up a virtualbox and running the applications over there
Installation App image version did not work for me, but the deb package was pretty simple following the steps on the website. The installer has a completion marks (requires installing docker, adding a user to docker group etc).</description>
    </item>
  </channel>
</rss>
