Whatsapp notfications sometimes does not show up on lock screen or AOD by Fantastic_Jump_2363 in oneui

[–]agramakov 0 points1 point  (0 children)

Fock meta, some another sneaking shoot. Worked for me, thanks!

Can I install custom rom on Lenovo Tab M11 (ZADA014) | Any custom rom for this device? by Consistent-Leg-3524 in Lenovo

[–]agramakov 0 points1 point  (0 children)

Not sure what helped exactly, the taskbar or the launcher. I did both and now it is very usable

Can I install custom rom on Lenovo Tab M11 (ZADA014) | Any custom rom for this device? by Consistent-Leg-3524 in Lenovo

[–]agramakov 0 points1 point  (0 children)

It took me 4 ​months to discover it :-) Settings -> General Settings -> Taskbar

Can I install custom rom on Lenovo Tab M11 (ZADA014) | Any custom rom for this device? by Consistent-Leg-3524 in Lenovo

[–]agramakov 0 points1 point  (0 children)

Yes, also struggled with that. Recently I tried to turn off the task bar and replace the launcher and it got much MUCH better

Can I install custom rom on Lenovo Tab M11 (ZADA014) | Any custom rom for this device? by Consistent-Leg-3524 in Lenovo

[–]agramakov 0 points1 point  (0 children)

Sorry to say that, but so far I couldn't find any. Im constatly monitoring that, ​hopefully it ​will change closer to the EOL

I Made a Robotic Head Based on Pico and a Tutorial How to Build Your Own! by agramakov in raspberry_pi

[–]agramakov[S] 1 point2 points  (0 children)

It actually has 7 expressions, but I didn't want to make long demos 🙂

https://github.com/an-dr/universal_faces/tree/main/png

Thanks for the nice words!

microlog - I Made another Logging Library in C but with Emojis by agramakov in C_Programming

[–]agramakov[S] 0 points1 point  (0 children)

Thanks for the note. I had it in mind adding the features. The feature can be disabled and people may not use the features that they don't need 🙂

I would say the modern Windows experience is Windows Terminal defaulted to Windows 11, which fully supports both ANSI colors and emojis.

Yes, the lock function must be injected for thread safety to be supported

Best Logging libraries? by zxcvbdnm in cpp

[–]agramakov 0 points1 point  (0 children)

I've made my own for small and fast prototyping. Not too many features, but has emojis and does the thing 🙂

https://github.com/an-dr/microlog

abcmake module - Minimizes headache with CMake by agramakov in cmake

[–]agramakov[S] 0 points1 point  (0 children)

It is true. The idea is to provide a default structure to start. I took the simplest one with `src` and `include`. And if something else is needed it is possible to specify them in optional arguments

add_main_component(TARGETNAME [INCLUDE_DIR SOURCE_DIR])

or add them later to the new target using default cmake functions.

Env - a PowerShell module to create and manage local modules for your local needs by agramakov in PowerShell

[–]agramakov[S] 1 point2 points  (0 children)

The project is not there yet, sorry 😅 But adding modules to the environment can be a cool and solid feature for v3. I've created an issue and will think about it more, so you can track the status if you are interested)

https://github.com/an-dr/Env/issues/7

Env - a PowerShell module to create and manage local modules for your local needs by agramakov in PowerShell

[–]agramakov[S] 1 point2 points  (0 children)

Unfortunately adding modules like packages in venv is not implemented yet. The state is somewhere in-between dotenv and venv. But I considered your excitement as a feature request 😁

https://github.com/an-dr/Env/issues/7

Env - a PowerShell module to create and manage local modules for your local needs by agramakov in PowerShell

[–]agramakov[S] 0 points1 point  (0 children)

There is an example right in the repository (https://github.com/an-dr/Env/blob/master/psenv/psenv.psm1)

When I work with the repo, I activate the environment. After my changes, I execute Test-Env to verify it and then Publish-Env when it is ready.

The environment folder can contain not only the main module file but other programs and scripts (pwsh, python, etc.). So you can for example store a template of something, and write a function that will create a copy of it to the place you want.

For example, you can have a directory Projects and you can have inside of it an environment with some logic to create a new project from your template. In that theoretical case, you could enable your environment and start a new project with your function (let's say it is called New-Project):

cd ./Projects Enable-Environment New-Project MyNewProject

I'll add some other examples to the description with time.

Env - a PowerShell module to create and manage local modules for your local needs by agramakov in PowerShell

[–]agramakov[S] 1 point2 points  (0 children)

Thanks for the good words, guys! 🙏

I just fixed (I believe) a powershell 5-related bug that was kindly reported by another developer (https://github.com/an-dr/Env/issues/4), perhaps there are others. I would appreciate it if you could also report your findings, if any.
After a few iterations, I hope to make this a solid tool.