A simple shell script that I use to find a random image from a directory and change the wallpaper.
#! /bin/bash
files=(~/pics/wallpaper/*)
randomfile=$(printf "%s\n" "${files[RANDOM % ${#files[@]}]}")
echo $randomfile
xwallpaper --stretch $randomfile
Enjoy.
I have an action camera which I use sometimes to record my rides or walks. It creates multiple MOV files of size 4GB. So to make a video using those big files takes lot of time, however all I really need to do is concatenate them, remove audio and then merge it with another big mp3 file. All the ffmpeg commands are below. Enjoy.
While concatenating multiple videos remove audio using
ffmpeg -safe 0 -f concat -i file.txt -vcodec copy -an output.MOV
Create file.txt for the concatenate to work
for f in *.mp3 ; do echo "file '${f}'" >> file.txt; done;
Concatenate audio files
ffmpeg -safe 0 -f concat -i file.txt -acodec copy all.mp3
Merge video with audio and keeping the shortest duration (from video)
ffmpeg -i output.MOV -i ~/Documents/sounds_youtube/tmp/all.mp3 -map 0:v -map 1:a -filter…
Bitbucket on Cloud is different from Bitbucket on Server or Data Center. This page will list those differences
On Cloud there is a workspace
Workspace > Project > Repository
All the repositories, permissions, users and groups are managed at workspace level.
There are projects on cloud as well but it is a bit limited in functionality. No permissions at project level on cloud.
On Data Center there are projects
Project > Repository
Projects can have permissions, access keys
Cloud Workspace is like System Administration on DC
Repository administrator
Same on Cloud and DC
In Bitbucket Cloud, every repository within a workspace or a project must have a unique name, unlike Bitbucket Server where repositories in two different projects can have the…
Insight is the Asset Management solution in Jira. Marketplace listing. These notes will hopefully help someone who is trying to understand what is Insight and Insight Discovery and what it can do for them.
Overview
Insight app is free now after it was acquired by Atlassian
Customers of Jira Service Management 4.14 or Jira Software 8.14 or earlier can install the Insight app here until February 3, 2023
For Jira Cloud Insight is available with the premium plan
Insight Discovery is a separate app that can be installed
Insight has several import options without any additional apps
CSV Import - upload file or url
Database Import - MSSQL, Oracle, PostgreSQL, MySQL
JSON Import - upload file or url
LDAP Import - ldap://
User Import
Insight Import Apps
Insight…
Hey, I posted a comment on your video as well. I wanted to know one thing. What is the purpose of "set -euf -o pipefail" in your script? I think I will use your script to show my webcam instead of static webcam using ffmpeg. Great work!
So I just edited this video using #kdenlive and it didn't take me long to figure out basic things. In this videos I did the following things or you can say I learned the following.
How to use proxy videos? It is a simple setting in the configuration.
How to import video clips from local drive? There is an option to import. Simple.
Cut the clip: Use Shift + R where you have the timeline.
Remove spaces: There is an option in the timeline. You can remove one space or all the spaces.
I learnt how to export or render the clip. It is simple option in he menu.
I learnt how to change the audio level of a clip.
I learnt how to fade in, fade out and dissolve both audio and video.
I learnt how to insert a title.
So overall I think I spent 20m to do all that. I do have lot of…
I got a chance to watch the #AtlassianTeam21 #Keynote video from Mike Cannon-Brookes and I made my notes not because I have to clear an exam but I think it is always good to know what the plan is moving forward. Personally I don't really worry too much about the latest announcements from Atlassian. It is always good to know what is going to happen in near future, but I can wait and usually if you are like me - totally invested in Atlassian tools for living then I am sure you already know lot of it. I watched the video and I thought I will share my notes with all of you so you can also learn about the direction Atlassian is taking.
The keynote started with of course the situation since last year and how companies used Atlassian tools to collaborate together. The COVID vaccination…