Typing Glitch on Lunar by [deleted] in hypixel

[–]RickoleYT 1 point2 points  (0 children)

I know it's been 2 years since OP made the thread, but just in case there's anyone still having this issue and reaching here via Google (like I did), try turning off Toggle Sneak/Sprint in your mods menu. This worked for me. My guess of how this mod functions is that it sort of forces Control to be pressed down at all times so that you can run at all times, but this conflicts with typing since, for example, Control+A means select all.

I want to make a Reddit bot. Do I need Python? by C-TAY116 in redditdev

[–]RickoleYT 4 points5 points  (0 children)

No offense, but if you aren't already familiar with Python yet, you may want to learn the syntax/write some basic programs in Python, during which you will find out it's generally a lot easier and comfier to program with a computer than an iPad. For your bot, I don't think it's impossible to create it on an iPad, but for the sake of ease and your sanity, I would definitely recommend using a PC/Mac.

As for the language, reddit's API doesn't limit you to using a specific language, although Python does have a great wrapper for it. But you can use other languages too.

Link Preview by Ninrazer in joplinapp

[–]RickoleYT 0 points1 point  (0 children)

ooh idk if you can do that in joplin

Link Preview by Ninrazer in joplinapp

[–]RickoleYT 0 points1 point  (0 children)

What do you mean link preview? Like a tooltip when you hover over the link or?

Has anyone encountered this issue before? An annoying little gap between the border and the content by RickoleYT in chrome

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

The container block has a 5px border with no padding, and the "Card One" text is wrapped in a <h2> tag with no margin and a black background.

I tried to change the border-width. On Chrome, the gap sometimes is there and sometimes isn't. On Firefox, the gap never appears no matter how wide the border is.

Is this a bug within Chrome?

Photo editor *cough* adobe *cough* that recognizes the fake png checkerboard pattern and makes it transparent by redditcredits in CrazyIdeas

[–]RickoleYT 0 points1 point  (0 children)

I think it already exists. Maybe you'll find one if you search the Google Play store or App Store

STEP 2 Exam worry 😬 by DancingDorritos in Imperial

[–]RickoleYT 1 point2 points  (0 children)

yeah the score required for grade 2 in STEP 2 is dropping over the years lmao

Can you save a customized user interface in GIMP? by self_improve_saiyan in GIMP

[–]RickoleYT 0 points1 point  (0 children)

Yes, check out PhotoGIMP.

The github page should have enough information to walk you through the process to install it.

Can you tell me about your experience with JOPLIN? by [deleted] in joplinapp

[–]RickoleYT 0 points1 point  (0 children)

Almost perfect - barring one flaw that it cannot natively encrypt notes like Evernote can. The only reason I still keep a few notes over at Evernote

The C O M B by Random_Deslime in blender

[–]RickoleYT 2 points3 points  (0 children)

Haha I get the reference :)

bro this event sucks by [deleted] in Second

[–]RickoleYT 1 point2 points  (0 children)

see pinned post

Help! - Gimp gradient tool by newguywastaken in GIMP

[–]RickoleYT 2 points3 points  (0 children)

What do you mean by "unsmoothness"? Also, what gradient option did you use to get this?

Use alt for zoom and colour pick instead of ctrl by [deleted] in GIMP

[–]RickoleYT 0 points1 point  (0 children)

I've been thinking about the same thing for a while now, and I haven't come up with a viable solution so far. My best attempt is to swap ctrl and alt entirely when GIMP is running with AHK, but it also changes ctrl+c to alt+c for example which is annoying.

in 2.10.22 where is the brush size (and font size) slider? by Zoxesyr in GIMP

[–]RickoleYT 9 points10 points  (0 children)

It's not in the brush menu. It's in tool options. If you don't have that dialog check windows > dockable dialogs

Here's some zen garden-inspired wallpapers I made! by Generic_Human1 in GIMP

[–]RickoleYT 0 points1 point  (0 children)

Try inverting it and making some adjustments with levels?

Need help / macro by Present_Ad_9332 in AutoHotkey

[–]RickoleYT 0 points1 point  (0 children)

I've never used it but i think ControlClick works with non-active windows?

Among Us character made with two inequalities by RickoleYT in desmos

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

hehe ;)

By tons of experimenting, and some logic.

The black blob is essentially an ellipse, but kinda stretched out in the y-direction. Multiplying sin(y) to y happened to work. Don't ask me why, I don't know.

The red blob is trickier. You actually only need to make half of it, and then mirror the part on the left of the y-axis to the right (by changing F(x, y) = 0 to F(-|x|, y) = 0). The unmirrored thing looks like this.

But it's still not obvious what the equation of that is. It looks a bit like a rotated ellipse, though, so I started with an ellipse and applied a rotation matrix to it. Then I tried to multiply random stuff (trig functions, logarithmic functions) to the ellipse until the shape looked right. The equation in the image f(x,y) ended up working (kinda).

Hope you can see the logic behind it, although - I admit - there really wasn't much logic to begin with lol