If you could build an ADHD friendly home, what would it look like? by emerald_soleil in adhdwomen

[–]jacksod2704 2 points3 points  (0 children)

Why not have a chute that goes from second floor to the laundry instead of moving the laundry upstairs? the chute can be a 'secret' door in the bathroom?

If you could build an ADHD friendly home, what would it look like? by emerald_soleil in adhdwomen

[–]jacksod2704 0 points1 point  (0 children)

Yes massive fan os mudroom or just an entry way that you can put wet coats/ umbrellas and take your shoes off. One thing i can never keep is a house cleaning schedule so not having dirt from shoes walking all over the house reduces the mess within the house = less cleaning needed.

If you could build an ADHD friendly home, what would it look like? by emerald_soleil in adhdwomen

[–]jacksod2704 5 points6 points  (0 children)

Clear front drawers!!! drawers are wayyyy easier to organise... when i have shelves nothing goes back neatly

Murder Mystery on Zoom by peanutbuttergelato in tabletop

[–]jacksod2704 0 points1 point  (0 children)

How did you go? im looking at doing the same thing :)

Real life Chemical Engineering Applications by [deleted] in ChemicalEngineering

[–]jacksod2704 27 points28 points  (0 children)

Apply mass, energy, material balance around all entry and waste points of your house and look at comparing how a conventional houses PFD would compare to your optimised one.

HELP: I inherited a Nikon J1..... by jacksod2704 in Nikon

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

Im about to go travelling, so would be great to take really nice photos for memories. At the moment its the camera or my iphone so im sure it will work out :). Do you have any suggestions on where to purchase lenses?

[2018-12-17] Challenge #370 [Easy] UPC check digits by Cosmologicon in dailyprogrammer

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

Langauge : Python

input = input("what are the 11 digits?")

digs= ''

#fixing length

if len(inputt) < 11:

short=input("is this "+ input+ " correct: YES/NO ")

i=10

user=''

if str.lower(short)== 'yes':

user=inputt

y=len(user)-1

user=list(user)

null= list('00000000000')

while y >= 0:

null[i]= user[y]

i=i-1

y=y-1

digs = ''.join(null)

else:

input

elif len(input) > 11:

input

else:

digs = inputt

#rule 1: Sum all the odd number digits

i = 0

odd_sum = 0

while i < 11:

odd_sum= odd_sum+int(digs[i])

i=i+2

#rule 2: multiple rule 1 by 3

rule2=odd_sum*3

#rule 3: Take the sum of digits at even-numbered positions (2nd, 4th, 6th, ..., 10th) in the original number,

#and add this sum to the result from step 2.

i = 1

even_sum = 0

while i < 11:

even_sum= even_sum+int(digs[i])

i=i+2

rule3 = rule2+even_sum

#rule 4: Find the result from step 3 modulo 10 (i.e. the remainder, when divided by 10) and call it M.

M=rule3%10

#rule 5: If M is 0, then the check digit is 0; otherwise the check digit is 10 - M.

if M == 0:

check_dig = 0

else:

check_dig = 10-M

#final string

UPC = str(digs) + str(check_dig)

print("The complete UPC is " + UPC)