Telegram Web Link
AZConf - A to Z Conference on Cloud and AI | AZConf 2023 | November 17-18, 2023 | Asia's Largest Cloud and AI Conference | Developer Conference | Artificial Intelligence | Multi-Cloud Conference
https://azconf.dev/
How SteamOS is contributing to the Linux ecosystem
Alberto García Igalia
Open Source Summit Europe
Bilbao, September 2023

https://static.sched.com/hosted_files/osseu2023/83/steamos-and-linux-oss-eu-2023.pdf
Dev Home is a new control center for Windows providing the ability to monitor projects in your dashboard using customizable widgets, set up your dev environment by downloading apps, packages, or repositories, connect to your developer accounts and tools (such as GitHub), and create a Dev Drive for storage all in one place.

https://learn.microsoft.com/en-us/windows/dev-home/

Dev Drive builds on ReFS technology to employ targeted file system optimizations and provide more control over storage volume settings and security, including trust designation, antivirus configuration, and administrative control over what filters are attached.

Dev Drive is a new form of storage volume available to improve performance for key developer workloads.

https://learn.microsoft.com/en-us/windows/dev-drive/
Enhance is an HTML-first full-stack web framework that gives you everything you need to build standards-based multi-page web apps that perform and scale.

https://github.com/enhance-dev
the everything app for those
* who celebrate
* trust & autonomy

It's Local-first - Crazy-fast loading time, no internet mandatory
It's peer-to-peer - secure and decentralized sync, sync with just a WiFi Network
It's Open Code - Verifiable autonomy & security

Imagine an app where you
can do everything

Native on mobile
Natural touch and scroll experience,
on both iOS and Android

https://anytype.io/
Learned some git commands for dealing with git stash

# how to save a stash with comment
git stash save "MY new edits"
# how to include untracked files
git stash save --include-untracked "My new edits"
# list of stashes
git stash list
# How to apply some stash without clearing existing
git stash apply stash@{6}
git stash apply 6
# Show changes in particular stash
git stash show -p 4
# See file names in that stash
git show stash@{4} --name-only
# See file saved as part of that stash (ie. not diff, full file. May be usable with other diff tool like KDiff3 or Meld)
git --no-pager show stash@{4}:resources/toolkit.py
# See the diff in that stash
git --no-pager show stash@{4} -- resources/toolkit.py
Generally knowledge improves ones you keep on applying the knowledge again and again.

But, keep on experimenting and exploring is the secret source of building experience and skills.

Incremental learning is the another thing to follow. Take small bites of knowledge at regular intervals.

Again keep your curiosity high always. But, you may keep a balance between practicing what you know, learning new stuff. Spend 10% or 20% of time can be spend for learning new things. Rest for applying what you know and building skill to act with speed, accuracy, effectiveness etc.
2025/07/04 23:10:15
Back to Top
HTML Embed Code: