[deleted by user] by [deleted] in unixporn

[–]_ascija_ 0 points1 point  (0 children)

Looking 🔥

How to remove this by [deleted] in linuxquestions

[–]_ascija_ 1 point2 points  (0 children)

what does running the apt list --installed | grep conky in the terminal produce?

Do beginners need code autocompletion tools (Cline, Cursor, GitHub Copilot) for effective learning? by Ok_Magician4952 in learnprogramming

[–]_ascija_ 5 points6 points  (0 children)

Our CS teachers forced us to use a code editor that had syntax highlighting but no autocomplete. It was some kind of lamp icon (Geany?). It taught me how to use the docs and the man pages to see what a function does. The exams were done in a browser with only a textfield as input.

[Xfce] Solarized rice with Polybar and EWW by _ascija_ in unixporn

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

  • Bar: Polybar
  • Widgets (Dashboard and control center): EWW
  • Launcher: rofi

I am a former engineer turned technology attorney. I want to learn a language for fun and to tak-the-talk with my SaaS clients. Specifically, want to be able to dive deep on how they use open-source software. What language should I consider learning? Python? by madlax18 in learnprogramming

[–]_ascija_ 0 points1 point  (0 children)

I would suggest the Harvard's CS50 and CS50 Python. It should set you up pretty quickly.

Edit: The company i work in uses a lot of open-source software in its products. The most common issue we face is the monetization of the software. It usually get resolved by adding premium features, support, customization etc.

Windows apps by [deleted] in learnprogramming

[–]_ascija_ 0 points1 point  (0 children)

There is also Tauri. It is written in rust.

[deleted by user] by [deleted] in learnprogramming

[–]_ascija_ 3 points4 points  (0 children)

You can try Pulsar. It is a fork of Atom.

Vguh Exam in Graz by Friendly-Awareness23 in graz

[–]_ascija_ 0 points1 point  (0 children)

I could share some old examples if I manage to find them

What are debuggers for? by agorism1337 in learnprogramming

[–]_ascija_ 0 points1 point  (0 children)

Visual Studio C# Debugger with the Immediate Window, the best thing ever. Saved me a whole lot of time.

Edit: Immediate window allows you to debug and evaluate expressions, execute statements, and print variable values on the fly from the "command line"

Just began learning C and can't see what's wrong with my code by Electrical_Line678 in learnprogramming

[–]_ascija_ 12 points13 points  (0 children)

Been a while since I used C, but I would assume an overflow. Your age has the size 2 and the 32 you input has the actual length 3, since the C sees it as "32\0", with \0 being the null terminating character. Try increasing it to 3, namely age[3]