bluefin linux
Introduction to Bluefin Linux / Codecs and Multimedia Support / bazzite-arch for steam and gaming / Bluefin Administration Guide / Latest documentation / MLBox, Ollama, Alpaca, mods, Pytorch / Nvidia 555 drivers incoming, important information! - Bluefin and Aurora
blender 3D
- Fundamentals v2.8 from Blender Foundation- YouTube
- Blender 3 basics: Intro to Blender - Learn Blender | Online 3D tutorials with CG Cookie
- Blender 3.0 Basics Course - CG Cookie - YouTube
- Blender Modeling Tutorials - CG Cookie - YouTube
- Blender 3.0 Beginner Donut Tutorial - Blender Guru - YouTube
- Learn Blender 3 for Complete Beginners - Grant Abbitt - YouTube
- Blender 3.0 - Jayanam - YouTube
- Blender 10 Minute Modeling Challenge - Imphenzia - YouTube
Paid
- PRESS START: Your Simple First Blender Project - Learn Blender | Online 3D tutorials with CG Cookie
- Blender for Complete and Total Beginners | Chris Plush | Udemy
python exercises from Exercism
"Hello, World!" is the traditional first program for beginning programming in a new language or environment.
The objectives are simple:
- Write a function that returns the string "Hello, World!".
- Run the test suite and make sure that it succeeds.
def hello():
return 'Hello, World!'
Guido's Gorgeous Lasagna
You have five tasks, all related to cooking
- Define expected bake time in minutes
Define an EXPECTED_BAKE_TIME
constant that returns how many minutes the lasagna should bake in the oven.
According to your cookbook, the Lasagna should be in the oven for 40 minutes:
>>> import lasagna
>>> lasagna.EXPECTED_BAKE_TIME
40
- Calculate remaining bake time in minutes
Implement the bake_time_remaining()
function that takes the actual minutes the lasagna has been in the oven as an argument and returns how many minutes the lasagna still needs to bake based on the EXPECTED_BAKE_TIME
.
>>> from lasagna import bake_time_remaining
>>> bake_time_remaining(30)
10
- Calculate preparation time in minutes
Implement the preparation_time_in_minutes()
function that takes the number of layers you want to add to the lasagna as an argument and returns how many minutes you would spend making them.
Assume each layer takes 2 minutes to prepare.
>>> from lasagna import preparation_time_in_minutes
>>> preparation_time_in_minutes(2)
4
- Calculate total elapsed cooking time (prep + bake) in minutes
Implement the elapsed_time_in_minutes()
function that has two parameters: number_of_layers
(the number of layers added to the lasagna) and elapsed_bake_time
(the number of minutes the lasagna has been baking in the oven).
This function should return the total number of minutes you've been cooking, or the sum of your preparation time and the time the lasagna has already spent baking in the oven.
>>> from lasagna import elapsed_time_in_minutes
>>> elapsed_time_in_minutes(3, 20)
26
- Update the recipe with notes
Go back through the recipe, adding notes and documentation.
def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time):
"""
Return elapsed cooking time.
This function takes two numbers representing the number of layers & the time already spent
baking and calculates the total elapsed minutes spent cooking the lasagna.
"""
Solution
"""Functions used in preparing Guido's gorgeous lasagna.
Learn about Guido, the creator of the Python language: https://en.wikipedia.org/wiki/Guido_van_Rossum
"""
EXPECTED_BAKE_TIME = 40
def bake_time_remaining(elapsed_bake_time):
"""Calculate the bake time remaining.
:param elapsed_bake_time: int - baking time already elapsed.
:return: int - remaining bake time (in minutes) derived from 'EXPECTED_BAKE_TIME'.
Function that takes the actual minutes the lasagna has been in the oven as
an argument and returns how many minutes the lasagna still needs to bake
based on the `EXPECTED_BAKE_TIME`.
"""
return EXPECTED_BAKE_TIME - elapsed_bake_time
def preparation_time_in_minutes(number_of_layers):
"""
Return minutes spent making the recipe
This function takes a number representing the number of layers added to the lasagne
"""
preparation_time = 2
return preparation_time * number_of_layers
def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time):
"""
Return elapsed cooking time.
This function takes two numbers representing the number of layers & the time already spent
baking and calculates the total elapsed minutes spent cooking the lasagna.
"""
return preparation_time_in_minutes(number_of_layers) + elapsed_bake_time
gaming
Batman Arkhum Asylum
** TODO **
- collect riddler trophy in decontamination room
Civilization IV needs xml dll's to work with steam proton.
$ protontricks 8800 vcrun2003 msxml3 corefonts lucida tahoma fontsmooth=rgb
Civ 6
document first play through as Rome/Julius-caesar on Warlord difficulty
Disco Elysium has stopped working. The game freezes on loading. A solution is to install a custom build of proton, GloriousEggroll/proton-ge-custom. It has FFmpeg enabled for FAudio, patches from wine-staging and Vulkan for Direct3D (VKD3D).
Download a release
mkdir -v ~/.steam/root/compatibilitytools.d/
tar -xf Proton-7.2-GE-2.tar.gz -C ~/.steam/root/compatibilitytools.d/
Sonic & All-Stars Racing Transformed
** TODO **
- finish sunshine coast on Hard How does all stars work? What are the different uses of items on a map? like the gold coin
** ref **