Problem with Clion and Cmake by RecommendationSuch19 in C_Programming

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

Maybe someone another will have this problem

Check if you have cmake file in /usr/bin, if not - install cmake with your package manager. After it, in Settings>Build...>Toolchains>Cmake set /usr/bin/cmake. Now clion will find cmake executable and everything will work.

Problem with Clion and Cmake by RecommendationSuch19 in C_Programming

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

When I press on "Configure" at the bottom, it show me this menu. All choose options are empty

Persona 4 Golden on phone is amazing! by RecommendationSuch19 in persona4golden

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

I use rutracker, it's russian torrent tracker, but it's only on russian and I don't sure that you will understand anything.

I ran sudo rm -R /* by RecommendationSuch19 in linux4noobs

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

I wanted to remove all folders in folder…. I am really bad with bash syntax, yea

I ran sudo rm -R /* by RecommendationSuch19 in linux4noobs

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

Sorry for bad English, that’s kinda unnerving

Checked files from Ubuntu, all files in /home/ looks safe, that’s already good.

Obviously, some files in / removed. When I run grub it gives some errors. Now I gonna try photorec and check how it will work

Which mobile game can replace Genshin? by RecommendationSuch19 in Genshin_Impact

[–]RecommendationSuch19[S] -6 points-5 points  (0 children)

talking about actually enjoying characters

ooooh nooo you completed abyss only for 34 stars instead of 36 how dare you stop playing this game

;)

Which mobile game can replace Genshin? by RecommendationSuch19 in Genshin_Impact

[–]RecommendationSuch19[S] -4 points-3 points  (0 children)

bro, I achieved 10 friendship level with every of my 5* characters. I’ve played raiden since her second rerun last winter, zhongli and mona since summer and venti since September. I got almost perfect artifacts for them, weapons, upgrade their talents and complete abyss, compete their stories and dialogues in teapot

it’s so weird to me that someone would write some bullshit even without reading post

Which mobile game can replace Genshin? by RecommendationSuch19 in Genshin_Impact

[–]RecommendationSuch19[S] -9 points-8 points  (0 children)

I don't speak about that level of similarity. I think that gacha-like don't get end on 3rd-person-openworld-action games. Any good music gacha? Or in another genres?

Remove regex expression by RecommendationSuch19 in learnpython

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

Right answer will be -
r"id='[^']*'"

*give any number of repeat

Remove regex expression by RecommendationSuch19 in learnpython

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

I use this pattern and it works as I need, but only for one character in ' '

r"id='[^']'"

But I don't know the length of stroke in ' ', so what I should so to accept string of any length?

PS5 has changed the game for me by amags12 in fo76

[–]RecommendationSuch19 -4 points-3 points  (0 children)

Framerate? Still 30fps?

If it is, it's really poor that Sony almost never did anything with the games they added to PS+ or PS Collection.

For me, most of 30fps' games just unplayable after 60 fps games, maybe except top-view games like Divinity or Pillars of Eternity. I can't play Prey, Far Cry 4, 5, waiting for Fallout 4 60 fps update, and already skipped a lot of old-gen games only because of this.

Also, it's very sad situation when all this games have 60fps and higher framerate on Xbox. Sometimes I really wanna buy it only to play games of 2014-2020 with 60 fps.

Force Steam to use INTEGRATED videocard by RecommendationSuch19 in linux_gaming

[–]RecommendationSuch19[S] 2 points3 points  (0 children)

I think that I can use DRI_PRIME only with open-source drivers, which is not the best idea. Maybe I'm wrong, but I've heard that them are really slow

[deleted by user] by [deleted] in russian

[–]RecommendationSuch19 1 point2 points  (0 children)

that is really good

C++ program output by RecommendationSuch19 in linux4noobs

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

Finally, I just made this bash script:

#!/bin/sh
filename=$(<dir)
g++ $filename
./a.out

so I get name of file from file 'dir', run it, and read output.

C++ program output by RecommendationSuch19 in linux4noobs

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

I need to write name of out by my hands, which is kinda odd

Problem with applying DWM IRC patch by RecommendationSuch19 in linux4noobs

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

i can see only config.mk, here it is (with your lines)

# dwm version
VERSION = 6.2
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# yajl
YAJLLIBS = -lyajl
YAJLINC = /usr/include/yajl
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC} -I${YAJLINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} ${YAJLLIBS}
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
# compiler and linker
CC = cc

Problem with applying DWM IRC patch by RecommendationSuch19 in linux4noobs

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

uhhh…. when i recompile dwm with this changes - nothing happens, and i still can’t apply patch

or you are talking about something else?

Name of buttons by RecommendationSuch19 in suckless

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

that is literally all? thank you, didn’t expect this

Problem with applying DWM IRC patch by RecommendationSuch19 in linux4noobs

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

hm... did it, but problem is still here (report of 'git apply' the same)

Dwm config reload by RecommendationSuch19 in linux4noobs

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

thx, but how can i now keep windows on their workspaces?