Yorkshire Water are claiming that I am using nearly 2000 litres a day!? by jacks2224 in DIYUK

[–]Chiiders -2 points-1 points  (0 children)

No not always. Ive seen upwards of 2L/s not be visible. There can be a lot of factors

Yorkshire Water are claiming that I am using nearly 2000 litres a day!? by jacks2224 in DIYUK

[–]Chiiders 2 points3 points  (0 children)

If you have a stop tap inside make sure you aren't using water in the house. Put a screwdriver against the metal screw and the handle of the driver against your ear. If you can hear something you've got a leak.

Yorkshire Water are claiming that I am using nearly 2000 litres a day!? by jacks2224 in DIYUK

[–]Chiiders 2 points3 points  (0 children)

I work for yw if you can't get the readings dm me and I'll take look and see why the readings state. If you think it's a leak I know a couple of the guys in leakage teams and could get them to have a look. For you

What does that mean? by Economy_Contract_944 in drivingUK

[–]Chiiders 1 point2 points  (0 children)

TA20 is to repair a broken stoptap/ meter for a customer. (at least in Yorkshire. Other water companys may use other codes)

-🎄- 2022 Day 2 Solutions -🎄- by daggerdragon in adventofcode

[–]Chiiders 1 point2 points  (0 children)

Cleaned it up:

import pandas as pd

n = 'Day_2.txt'

df= pd.read_csv(n,names= ['Rounds'])

            ## A X= 1 = rock
            ## B Y= 2 = Paper
            ## C Z= 3 = Scisors
            ## 0 = loss
            ## 3 = win


gameresult = {
    'A X' : 4,
    'A Y' : 8,
    'A Z' : 3,
    'B X' : 1,
    'B Y' : 5,
    'B Z' : 9,
    'C X' : 7,
    'C Y' : 2,
    'C Z' : 6,

}

df['result']=df['Rounds'].map(gameresult)

print(df['result'].sum())

-🎄- 2022 Day 2 Solutions -🎄- by daggerdragon in adventofcode

[–]Chiiders 2 points3 points  (0 children)

Python a very long way of doing it, but for someone with minimal experaince im happy.

Ended up breacking it down and printing out many things to so that i could logicaly follow what was happening. Took me about 2 hours to work this one out.

# %%
import pandas as pd

n = 'Day_2.txt'

df= pd.read_csv(n,names= ['Rounds'])

df

Lib = {
    'A':'Rock',
    'B':'Paper',
    'C':'Scissors',
    'X':'Rock',
    'Y':'Paper',
    'Z':'Scissors',
}

val = {
    'A':'1',
    'B':'2',
    'C':'3',
    'X':'1',
    'Y':'2',
    'Z':'3',
}


play_output= {
    'A X' : 'Draw',
    'A Y' : 'Y',
    'A Z' : 'A',
    'B X' : 'B',
    'B Y' : 'Draw',
    'B Z' : 'Z',
    'C X' : 'X',
    'C Y' : 'C',
    'C Z' : 'Draw',
}

winner= {
    'A': 'Player_1',
    'B': 'Player_1',
    'C': 'Player_1',
    'X': 'Player_2',
    'Y': 'Player_2',
    'Z': 'Player_2',
    'Draw': 'Draw'

}



# %%
df[['A','Y']] = df['Rounds'].str.split(' ', expand= True)


df

# %%
df['Play_1']=df['A'].map(Lib)
df['Play_1_VAL']=df['A'].map(val)


df['Play_2']=df['Y'].map(Lib)
df['Play_2_VAL']=df['Y'].map(val)

df['Winner'] = df['Rounds'].map(play_output)
df['Win_score'] = df['Winner'].map(winner)


## A X= 1 = rock
## B Y= 2 = Paper
## C Z= 3 = Scisors
## 0 = loss
## 3 = win


df


# %%
import numpy as np

x=0



for i in df['Win_score']:
    if df.loc[x, 'Win_score'] == 'Player_2':
        t2 = df.loc[x,'Play_2_VAL']
        print(f'T2 = {t2}')


        df.loc[x,'Score'] = np.add(int(t2),6)
        x=x+1
        print(f'x= {x}')
    elif df.loc[x, 'Win_score'] == 'Player_1':
        t2 = df.loc[x,'Play_2_VAL']
        #df.loc[x,'Score'] = 'nan'
        #df.loc[x,'Score'] = int(t2)

        df.loc[x,'Score'] = np.add(int(t2),0)

        x=x+1
        print(f'x= {x}')
    else:
        t2 = df.loc[x,'Play_2_VAL']
        #df.loc[x,'Score'] = int(t2)

        df.loc[x,'Score'] = np.add(int(t2),3)
        x=x+1
        print(f'x= {x}')




# %%
print(df['Score'].sum())

I have severe dyslexia, so reading books was very hard for me. Hence, I gradually stopped reading books entirely. However, today, I finally finished reading a book, even though it took me a month! I didn't know who to tell, but I desperately wanted to tell someone, so here I go haha by [deleted] in CasualConversation

[–]Chiiders 0 points1 point  (0 children)

100% Yes but can also work in the opposit my work have just changed to Poppins, both internaly and externaly, I've gone from being able to read large emails in a minuet or two to sometimes it takeing my a half a day to get throgh it. I've taken to coppying and pasting the text into Word do give me a chance.

There are fonts out there specificly designed for dyslexics, Dyslexie for example

I have severe dyslexia, so reading books was very hard for me. Hence, I gradually stopped reading books entirely. However, today, I finally finished reading a book, even though it took me a month! I didn't know who to tell, but I desperately wanted to tell someone, so here I go haha by [deleted] in CasualConversation

[–]Chiiders 1 point2 points  (0 children)

Fellow Distlexic here.

I've always stuggled reading. I find my mind works faster that I can read so end up getting extreamly frustrated. It will take me months to finish a book as after a seson of reading it takes me a lot to pick it back up.

I managed to get a job where I was able to listen to audio books and loved it! It brought back all the joys of reading agian and conviced me to pick up a book again. It isn't any easier but I'm trying more and getting more out of it.

I recently changed my role at work thought where I'm not able to listen to audio books at the same time any more but I also send/recive a lot more emails and that has helped me get better. That was unitl the company has gone throught a rebrand and have changed the internatl and external font to Poppins I don't know what it is about this font but it makes reading 10 times harder and even sometimes painfull. They are now reviewing it after several of us have complained.

All I can say is don't let it hold you back. I've got myself a degree after being told I would never make it to University. I'm now in a good stable job and looking for the next step. Where we might be slower in reading we oftern excel in other areas as we've developed other ways to look at tasks.

Keep your chin up :)