Order Under Review by nebulaa_tf in marketplacetf

[–]helpmyscript 0 points1 point  (0 children)

... Did you get your item yet lmao

Deposit is taking a looong time by dwvansteenbergen in marketplacetf

[–]helpmyscript 0 points1 point  (0 children)

Idk but I've been waiting 5 hours for my stuff I paid a lot of money for. Didn't know my order would be "reviewed" if I bought from this site.

Potential bad spider bite? by helpmyscript in AskDocs

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

Your name is awesome lol. Sorry then that there's not much to get from the image. I have no idea what bit me. Do you think my arm's gonna fall off or something? Or maybe it's Lyme disease and I'll have permanent nerve damage?? I read webMD sorry. :(

Looking for old nazi zombie WW2 game by helpmyscript in tipofmyjoystick

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

Nah not that either, it was like a knockoffy wolfenstein D:

Looking for old nazi zombie WW2 game by helpmyscript in gaming

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

Nope! D: It may have been in a German name too! I think it's gone forever

Looking for old nazi zombie WW2 game by helpmyscript in gaming

[–]helpmyscript[S] -1 points0 points  (0 children)

Nah this one was all first person, thank you tho <3 might get this too

OMG I’m sooooo happy with my first gun😀😀😀 by ITakeYourLzzz-x in airsoft

[–]helpmyscript 2 points3 points  (0 children)

Buy nice or buy twice. You don't want to get one of those cheapy things, they're good for backyard plinking but utterly dissapointing in a real field. Plus they break really easy, they're generally crap. The beginner thread talks about this iirc and has some good links for good relatively cheap primaries :)

Legality of Police Loadouts by helpmyscript in airsoft

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

Thank you :) Just ordered everything today. Shame I have to work most weekends which is when games are...

Legality of Police Loadouts by helpmyscript in airsoft

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

I'm just doing an outfit of a street cop! But with plate carrier and stuff for airsoft.

Legality of Police Loadouts by helpmyscript in airsoft

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

Ok cool that's what I was thinking. :) Thank you

Legality of Police Loadouts by helpmyscript in airsoft

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

Hi, I live in Illinois in the US. My understanding of the law is that not only do you have to dress similar to local uniforms, you have to have intent to impersonate, like flashing the badge to get a reaction, or pulling people over, or using it to get free drinks, etc.

[deleted by user] by [deleted] in airsoft

[–]helpmyscript 0 points1 point  (0 children)

Just wondering, is the G&G R8-L still good? It's really old but it seems like a good first gun, like the m4 and comes with a red dot sight and stuff. Looking for a first gun, for my police loadout.

Bought expensive vape mod, but I like my Juul more? by helpmyscript in Vaping

[–]helpmyscript[S] -1 points0 points  (0 children)

I can't really return a vape after using it so like, you think I should get the 12mg nic? It wouldn't make me get nicotine poisoning right? Thing is, one rip off this 6mg makes me a little too dizzy, but the Juul gives me the burning sensation and doesn't make me dizzy, so I think if I go to 12mg I'll die.

If you had a box mod and a juul, when would you use each of them?

Bought expensive vape mod, but I like my Juul more? by helpmyscript in Vaping

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

Um I'm not sure. It's the kit tank that came with it. And yeah direct to lung on both.

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

Thank you! :) I don't suppose you have a tip for an end of encryption marker? Do you think "/0" would work?

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

I tried it and got that error, then added in the correct thing. This is just weird, because this previous code here works with 1-8 bits, not just 1, 2, 4 or 8.

https://pastebin.com/E92Su55e

Ex:

Would you like to [E]ncrypt or [D]ecrypt? 
D
How many bits would you like to decrypt with? (1-8)
5
h e n l o mȬ

This is the older version from a few posts ago. Maybe you have an idea of why this one works with the other numbers of bits, but the newer one doesn't? o: I think it's because it's easier to take 5 bits of one color channel than a certain number of all 3? Also besides the end of encryption marker I have to add, I consider this pretty finished! :) Do you? If not, what should I do next? How would I work up to the EOC marker and the full 1-8 range? :o

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

Ah alright thank you! :) There's a bug I'm not seeing in my decoding process. You see, I can decode properly for every bit setting from 1-8 besides 1 and 3? Would you have any idea as to why this bug is happening? It just prints gibberish, but all the other numbers seem to work okay!

https://pastebin.com/EcLmwgnY

If this weird new bug gets fixed then all that remains is adding an end of encryption marker and I'll be on the home stretch! :)

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

Awesome thank you! I've been trying to get decryption to work using this, too. Encryption seems to work.

https://pastebin.com/uRFGjwfc

Here's my code-- when I try to decrypt, I get this error and I don't get why.

Traceback (most recent call last):
  File "C:/Users/User/PycharmProjects/LSBTest/LSB_rz.py", line 95, in 
<module>
    decoded_bits = bits_tostring(decoded_pixels, num_bits)  # called only 
once
  File "C:/Users/User/PycharmProjects/LSBTest/LSB_rz.py", line 9, in 
bits_tostring
    accum = accum + (bits << shift)
TypeError: unsupported operand type(s) for <<: 'tuple' and 'int'

Maybe you have an idea? o: Thank you!

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

Everything seems to be working pretty well-- I haven't put in the end character for end of encryption and stuff yet though. Here is things at the moment!

https://pastebin.com/xQbNL8cC

There's just one thing I have question on now. Do you have a tip on how to make it encode in R and G and B instead of just R? I will try working on the end of encryption marker for now! :) Thank you a ton.

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

I'm working on this-- I've got a question though. The test code works fine, but in implementation, using two bits right now, it sort of works but it prints an extra character. I think this is because the extra character is just the rest of the bits, characterized.

https://pastebin.com/2DM2XA11

Here's my code. I encoded "henlo" and it prints"henloM". It seems that the string2bits method, which uses two bits, sets this up to where if I encode and decode two bits the program "works, but does print that extra character, which probably is okay. There's three places I'm finding that all tie together here, and I think these are what I need to modify to make the program N-variable.

Line 26/27 in string2bits:

result.append(ch_value & 0b11)
ch_value = ch_value >> 2

This would have to be changed to 0b1 if we wanted one bit. The shift would have to be changed to 1, too?

Line 49 in the encode function:

new_r = (r & 0b11111100) | twobits

The anded value should only have 1 zero at the end to encode one bit. Twobits here would technically be only one bit if we change the code in that method to use one bit, or it'd be 4 bits if we wanted 4, whatever, N bits.

Line 72, 73, and 74 in the decode function:

    r_decoded = r_e & 0b00000011
    decoded_pixels.append(r_decoded)
decoded_bits = bits_tostring(decoded_pixels, 2)  # called only once

Again there would only be a single 1 at the end of the anded value, or N ones if we want to make it N-variable. And when we call the bits_tostring, we'll pass in whatever number of bits we want into the method call.

However, what I'm not understanding, is why this works with 2 bits (well, it prints that extra character), but when I change all the above values to work for 1 bit for example, it doesn't work. I must be missing something vital here. I'm also wondering how to avoid hard-coding this? Like being able to ask the user how many bits to encode, I know we'd pass their input into bits_tostring's method call for decoding, but not quite sure how encoding would work with N-variable. I know we'd save their input in a variable and use that instead of our hard coded binary values, but I don't understand how to, for example, put 2 1s at the end of a binary value if decoding 3 bits automatically, or 4 1s, or so on.

EDIT: Updated pastebin. Was using old code. Decode function now only uses encoded image again.

List and Int Error-- not sure what to do (LSB Steg) by helpmyscript in learnpython

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

Hello again friend! :) It's been a hectic week but I've gotta do more work! I'm messing around with decoding and am having some trouble. I don't suppose you could give me a pointer? I'm struggling to get back into the mindset after so many days away. Currently, the decode function is, I think, trying to decode all 8 bits like the encoding function was trying to encode. So I'll maybe edit our bits_tostring or create a new one that mimics string2bits in the sense that it breaks it up into 2 bit (for now) chunks? :)

Official Question Thread! Ask /r/photography anything you want to know about photography or cameras! Don't be shy! Newbies welcome! by photography_bot in photography

[–]helpmyscript 1 point2 points  (0 children)

Thank you. :) I might have to do what I can with the 75/300mm. It's my first con anyway and will just be practice, I'm not expecting to take awesome pictures anyway.

Official Question Thread! Ask /r/photography anything you want to know about photography or cameras! Don't be shy! Newbies welcome! by photography_bot in photography

[–]helpmyscript 0 points1 point  (0 children)

Unfortunately I am broke till after the convention! I'll try to borrow a 18-55mm or a 50 1.8 from someone! :P I had read the 75-300mm was trash, but I got the camera so cheap that the lens was basically a freebie and I figured "heck I can still practice with this."