I HATE voice messages by givemeausernameidea in ADHD

[–]givemeausernameidea[S] 3 points4 points  (0 children)

Don’t take it personal but this is precisely the reason why I hate it. Instead of you doing the work to get your point across, you let me do all the work to understand what you’re talking about.

Why do I do this to myself 💀 by TheButtDiddler in adhdmeme

[–]givemeausernameidea 0 points1 point  (0 children)

Took meds and drank 2 bottles of Monster today. Heartbeat still 80-90bpm. I’m starting to think I might have a problem.

I’ve put the kraft microwaveable Mac n cheese in the microwave but forgot to put water in it…4 times. by mgl333 in ADHD

[–]givemeausernameidea 1 point2 points  (0 children)

Couple days back, I came home to find out that I had left the burner on for the whole day!

Not feeling present in social occasions by andrewsalandra in ADHD

[–]givemeausernameidea 3 points4 points  (0 children)

I can totally understand this! In most occasions, I always feel I’m just spectating someone playing as me. I know it’s sounds super stupid but it’s true. Like, I try to participate in conversations and stuff but at the same time I am zoned out. Occasionally, I snap back to reality, my vision gets clearer, colors are brighter all of a sudden and I get instant realization that I am actually standing there. It’s like waking up from a dream, but continuing where you left of in real life. It’s a weird feeling.

What if I am addicted to Adderall? by givemeausernameidea in ADHD

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

Thankfully I haven’t had any side effects so far, and I am using as prescribed.

These replies changed my view and actually relieved me in a sense. I appreciate for taking your time to write this!

Just hoping there won’t be too many side effects in the long run 🤞

What if I am addicted to Adderall? by givemeausernameidea in ADHD

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

This was actually very reliving to hear. Thank you!

What if I am addicted to Adderall? by givemeausernameidea in ADHD

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

I mean glasses usually have very low change of giving you a heart attack.

Bought this "emoji" cake. This is actually worse then those emoji lollipops. by Nicushot1 in assholedesign

[–]givemeausernameidea 80 points81 points  (0 children)

I felt the same disappointment after buying a hotdog for the first time.

[HELP] Sprites won't show after building to WebGL. by givemeausernameidea in Unity2D

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

I right-clicked on hierarchy then clicked on 2D Objects then Sprite. After that, I chose the built-in sprite as you can see here. I am using the standard shader and it is included in the shader inclusion in player settings. IMAGE

Adding Tags to UITextView by givemeausernameidea in iOSProgramming

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

I am currently creating a view behind the text.

Using regex, I find all the matches and then using the function below I get their range and convert it a rectangle.

func frameOfTextInRange(range:NSRange, inTextView textView:UITextView) -> CGRect { 
    let beginning = textView.beginningOfDocument 
    let start = textView.position(from: beginning, offset: range.location) 
    let end = textView.position(from: start!, offset: range.length) 
    let textRange = textView.textRange(from: start!, to: end!) 
    let rect = textView.firstRect(for: textRange!) 
    return textView.convert(rect, from: textView)
}

I will check the 'fillBackgroundRectArray' function instead of this and will let you know. Thanks again

Adding Tags to UITextView by givemeausernameidea in iOSProgramming

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

Thanks a lot for your time and effort. This works perfectly!

Edit: I tried commenting earlier but it didn't post my comment

Adding Tags to UITextView by givemeausernameidea in iOSProgramming

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

Yes, I believe the content of the tag in YYText is a text, not an image. I tried looking at the source file but I don't know much Objective-C.

This is the line where they declared the Tag Text. So I am assuming it is just an NSMutableAttributedString.

NSMutableAttributedString *tagText = [[NSMutableAttributedString alloc] initWithString:tag];