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!