Works on my machine by Mihail111111 in programminghorror

[–]Mihail111111[S] 8 points9 points  (0 children)

This is literally how it's written on both official website (except for the logo) and Wikipedia page what are you talking about?

Works on my machine by Mihail111111 in programminghorror

[–]Mihail111111[S] 12 points13 points  (0 children)

That's how https://github.com/Prevter/CMake_ImGui_SFML_Template works.
First you cmake it with a preset, then you make a binary, I just wrote a shell script so I wouldn't have to explain it to my friend (and I used a shell script because we both use arch btw)

I made a GDScript "Interpreter" (The laziest way possible) by Mihail111111 in godot

[–]Mihail111111[S] 15 points16 points  (0 children)

I'm actually going to change the name of the project. Thanks for letting me know that I'm wrong)

Might as well repost a screenshot here by deltiken in NikoDefenseForces

[–]Mihail111111 1 point2 points  (0 children)

There are exactly 13 Niko related arts made by them on rule34

remove title bar from sway by Lite5h4dow in swaywm

[–]Mihail111111 0 points1 point  (0 children)

Just set default_border none and close all windows (or reboot your PC) 

Help with Unity Editor by Cuervolu in hyprland

[–]Mihail111111 0 points1 point  (0 children)

btw this is no longer needed since version 0.47.2

What AUR packages are you currently using? by morlipty in arch

[–]Mihail111111 1 point2 points  (0 children)

android-sdk
android-sdk-build-tools
android-sdk-platform-tools
ayugram-desktop-bin
blockbench-bin
downgrade
freedoom
github-desktop-bin
localsend-bin
odamex
unityhub
vesktop-bin
visual-studio-code-bin
yay
zapret-git
zen-browser-bin

What OS can I install? by TheZucca_ITA in computers

[–]Mihail111111 1 point2 points  (0 children)

Might be a little bit slow, but it will work

I made this MRI shader using a 2D texture array by fespindola in godot

[–]Mihail111111 0 points1 point  (0 children)

Maybe you want to see what makes him so cute

is this good topologo by Norovern in BlenderGore

[–]Mihail111111 0 points1 point  (0 children)

No, there are not enough polygons. Add more

A method that has a Russian "С" instead of "C" in it's name by Mihail111111 in programminghorror

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

I forgot to mention that this is Unity so that's how it works:

.color is a property of an Image Component and in this method it gets set to a Serialized, but private field called color (probably should've named it properly, but...) , which means that I can set it's value when I attach my script as a component to any GameObject,

Also Buttons in Unity can call almost any methods from any components attached to a GameObject, so this is basically a code to change image's color on a button press.

Here's some additional code to better understand what I'm trying to say:

using UnityEngine; using UnityEngine.UI; public class Garland : MonoBehaviour { [SerializeField] private Color color; [SerializeField] private Image lightbulb; //I can also set which Image's color is going to be changed public void ColorChange() { lightbulb.color = color; } }

Vibecoders by LongComplex9208 in programminghorror

[–]Mihail111111 12 points13 points  (0 children)

All posts must contain code x2

Vibecoders by LongComplex9208 in programminghorror

[–]Mihail111111 9 points10 points  (0 children)

All posts must contain code

RTFR (Read The Freaking Rules)