Skip to content

Instantly share code, notes, and snippets.

View markocdroid's full-sized avatar
🏠
Working from home

Marko C. markocdroid

🏠
Working from home
View GitHub Profile
:: Install choco .exe and add choco to PATH
:: https://chocolatey.org/install
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"
:: Install all the packages
:: choose: visual studio, office, .net core, .net, rider tools
:: Dev tools
choco install python -y
choco install git.install -y
@CMCDragonkai
CMCDragonkai / view_images_on_the_command_line.md
Last active February 6, 2026 07:11
CLI: View Images on Command Line

View Images on Command Line

When working with plotting like gnuplot or ggplot2 or just navigating your filesystem on the command line, it would be nice to be able to view bitmap or vector graphics easily.

This is all for the ideal of hybrid GUI TUI interface!!

However this turns out to be difficult. However I found pretty much 5 ways to

@simon-heinen
simon-heinen / shake.xml
Last active May 27, 2024 11:57
A simple shake / wiggle animation for Android
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<rotate
android:duration="70"
android:fromDegrees="-5"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="5"
android:repeatMode="reverse"