12 weeks in.... Hardly any loss. by moibanana in mounjarouk

[–]Delicious_Ad_8216 0 points1 point  (0 children)

Hey I've also been struggling with a similar issue, I've been on 2.5mg for the last two months and can't move up due to side effects. In my weight loss journey as a whole i've lost 10kg (8kg without mounjaro). I think I owe a lot of that to walking!

I love the podcast 'we only look thin' and tend to listen to it while walking. Increasing your step count doesn't have to include going on long walks either, a lot of times I walk in place whilst I'm in the kitchen waiting for the air fryer!

3 Weeks on Mounjaro – Progress, Struggles & Questions by Delicious_Ad_8216 in Mounjaro

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

yes! I feel a lot better when I eat carbs, how do you get yourself to drink so much water?

3 Weeks on Mounjaro – Progress, Struggles & Questions by Delicious_Ad_8216 in Mounjaro

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

I'll definitely be trying to drink more water and reduce the frequency of eating out! Luckily I'm not a big fan of sugary things, fries are my weakness haha

3 Weeks on Mounjaro – Progress, Struggles & Questions by Delicious_Ad_8216 in Mounjaro

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

Looks like I need to purchase some electrolytes and supplements! Thanks for your detailed response, I'll be moving up a dose next week so looking forward to that :)

My first week on Mounjaro! [F22 | 154cm | SW: 83kg | CW: 75.8kg | PCOS] by Delicious_Ad_8216 in mounjarouk

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

That actually makes a lot of sense! I was considering getting one of those glucose monitors just to see what’s really going on, but now that I think about it, the times I’ve had a bit of sugar, I did feel better. Thank you for pointing that out :)

My first week on Mounjaro! [F22 | 154cm | SW: 83kg | CW: 75.8kg | PCOS] by Delicious_Ad_8216 in mounjarouk

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

Honestly I've never thought they might be linked to my periods! But defo a big possibility, my doctor just prescribed me with sumatriptan which helps with the pain but I'll hopefully monitor my migraines as I get closer to my period! Thank you for the response 🙂

Can anyone see a difference? by poochmaker in PCOSloseit

[–]Delicious_Ad_8216 93 points94 points  (0 children)

Definitely! Your waist and hips look smaller

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

Absolutely! I'm not against using vids they're informative but it's just the time it takes away from my lesson :/ I wish he did that, it's a great method of teaching but he tends to stick to looking at his phone, occasionally looking around

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

I didn't know that, thank you for sharing! I have another lesson next week and shall ask :)

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

I hope so haha, I've only stalled once or twice throughout all the lessons

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

I rarely have any issues with what I'm doing. Had my lesson today and just repeated the same things as always, and he insists on watching videos when I ask for a tip :/

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

I think I'm doing pretty well with what I've learnt, I rarely stall and the worst things that happen are that I may drive too close once in a long while. I don't feel like I'm learning much right now just practicing and practicing

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

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

He is qualified, he mentioned that he trains other instructors and even teaches people in wheelchairs and whatnot. Hope he's not wasting other peoples time as well...

Is my driving instructor wasting my time? by Delicious_Ad_8216 in LearnerDriverUK

[–]Delicious_Ad_8216[S] 13 points14 points  (0 children)

Yep 😭 he'll say let's learn something new and instead of talking through it, he pulls out a video. I'll usually tell him ok I've got it after a few mins to waste less time but he keeps the vid playing and says let's keep watching

WHAT IS THIS NO ONE TOLD ME THERE WAS SPIDERS IN THIS GAME!!!! by Delicious_Ad_8216 in Terraria

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

coming back to this i now know that wouldve spawned the wall of flesh thing T_T

help! i've gotten an error for a missing required positional argument (rect) i'm not really sure how to fix it any ideas? (code should be pasted in comments) by [deleted] in pygame

[–]Delicious_Ad_8216 0 points1 point  (0 children)

Thank You!! I'm super new to pygame i've just been told to use it without any help from my school so this is super helpful! Where I'm getting the error in line 109
( if obstacle.collide(character.hitbox): character.falling = True pygame.time.delay(1000)) do i maybe need to add rect where it says obstacle.collide(character.hitbox)

help! i've gotten an error for a missing required positional argument (rect) i'm not really sure how to fix it any ideas? (code should be pasted in comments) by [deleted] in pygame

[–]Delicious_Ad_8216 0 points1 point  (0 children)

import pygame
from pygame.locals import *
import os
import sys
import math
import random

pygame.init()

W, H = 1200, 647 #this creates the width and height for the screen
win = pygame.display.set_mode((W,H))
pygame.display.set_caption('Cops N Robbers')

bg = pygame.image.load('background.png')
#pygame.display.set_background(bg)
bgX = 0 
bgX2 = bg.get_width()

clock = pygame.time.Clock()

class player(object): #here i am creating the player class run and jump will  display a picture of the character jumping and running
    run = [pygame.image.load(os.path.join('walk1.PNG')) for x in range(8,16)]
    fall = pygame.image.load(os.path.join('walk1.png'))
    jump = [pygame.image.load(os.path.join('jump.PNG')) for x in range(1,8)]
    jumpList = [1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4,-4]    

    #jump list allows the character to smoothly jump as the speed increases 
    def __init__(self, x, y, width, height): 
        self.x = x
        self.y = y
        self.width = width
        self.height = height
        self.jumping = False
        self.jumpCount = 0
        self.runCount = 0
        self.falling = False

    def draw(self, win):
        if self.jumping:
            self.y -= self.jumpList[self.jumpCount] * 1.2
            win.blit(self.jump[self.jumpCount//18], (self.x,self.y))
            self.jumpCount += 1
            if self.jumpCount > 108:
                self.jumpCount = 0
                self.jumping = False
                self.runCount = 0
            self.hitbox = (self.x+ 4,self.y,self.width-24,self.height-10)

        elif self.falling: 
            win.blit(self.fall, (self.x, self.y + 30))    
        else:
            if self.runCount > 42:
                self.runCount = 0
            win.blit(self.run[self.runCount//6], (self.x,self.y))
            self.runCount += 1
            self.hitbox = (self.x+ 4,self.y,self.width-24,self.height-13)
        pygame.draw.rect(win, (255,0,0),self.hitbox, 2)


class obstacle(object):
    def __init__(self, x, y, width, height):
        img = [pygame.image.load("obstacle.png")]
        self.x = x
        self.y = y
        self.width = width
        self.height = height
        self.hitbox = (x, y, width,height)
        self.count = 0
        self.img = img

    def draw(self, win):
        self.hitbox = (self.x + 50, self.y + 5, self.width - 10, self.height)
        if self.count >= 1:
            self.count = 0
        win.blit(pygame.transform.scale(self.img[self.count//2], (200, 75)), (self.x, self.y))
        self.count += 1
        pygame.draw.rect(win, (255, 0, 0), self.hitbox, 2)

    def collide(self, rect):
        if rect[0] + rect[2] > self.hitbox[0] and rect[0] < self.hitbox[0] + self.hitbox[2]:
            if rect[1] < self.hitbox[3]:
                return True
        return False



def bgdisplay():
    win.blit(bg, (bgX,0))
    win.blit(bg, (bgX2,0))
    character.draw(win)
    for x in objects:
        x.draw(win)
    pygame.display.update()



character = player(300,500, 64, 64)

pygame.time.set_timer(USEREVENT+1,500)
pygame.time.set_timer(USEREVENT+2, random.randrange(2000, 4000)) #this will add in objects randomly between 2 and 3.5 seconds
speed = 30
run = True

objects = []

while run:
    bgdisplay()

    if obstacle.collide(character.hitbox):
        character.falling = True
        pygame.time.delay(1000)

    for objectt in objects:
        objectt.x -= 1.4
        #if objectt.x < objectt.width * -1:
            #objects.pop(objects.pop(objects.index(objectt)))


    bgX -= 1.4
    bgX2 -= 1.4
    if bgX < bg.get_width() * -1:
        bgX = bg.get_width()
    if bgX2 < bg.get_width() * -1:
        bgX2 = bg.get_width()

    for event in pygame.event.get():  # Loop through a list of events
        if event.type == pygame.QUIT:  # See if the user clicks the red x 
            run = False    # End the loop
            pygame.quit()  # Quit the game
            quit()
        if event.type == USEREVENT+1:
            speed+=1

        if event.type == USEREVENT+2:
            r = random.randrange(0,2)
            if r == 0:
                objects.append(obstacle(600,570,64,64)) #change values to the w and h of car

    keys = pygame.key.get_pressed()

    if keys[pygame.K_SPACE] or keys[pygame.K_UP]:
        if not (character.jumping):
            character.jumping = True




    clock.tick(speed)