MysticLord |
Posted on 21-03-28, 22:43 in Hardware/Product Recommendations Thread
|
Post: #21 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
So the Boox Nova 3 is great. The screen is a bit small, but if it were any larger using it one handed would be awkward. I live near a large chain grocery store that has free wifi, and I want to steal it. It's probably 150 yards away, max. Is there some sort of antenna I could use to get a reasonable (5 MB/s) connection? It's line of sight, catty-corner down the block a bit. I'm sure I could find other unsecured networks within the same distance. Really don't want to pay $60 a month for internet when I can pay $200 for an antenna and get it for free, forever. |
MysticLord |
Posted on 21-03-28, 23:17 in Instant messaging (cr)apps
|
Post: #22 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
There's been a spate of literally autistic teenage boys in England being set up in absurd Kafka-esque "push the button to make the kitschy 1950s-style Nazi death ray fry London" entrapment plots. In one case, the police and prosecution were able to get every message this kid ever sent, and every message sent by the people he communicated with, on Telegram. So there is apparently a backdoor to Telegram somewhere. https://prism-break.org/en/all/#instant-messaging Looking at PRISM Break, there are a number of options you didn't mention. If I were you, I'd ask various dissident/criminal* communities about this, as they have the motivation to know best. I think Curtis Yarvin's Urbit is becoming a big deal among dissident Righties. Some of the more intellectual thinkers use it, as do old hats. I taught one of my cousins to buy insulin (and fentanyl test strips to make sure it wasn't cut with fentanyl, in true Chinese fashion and as they do with nootropics) from pharmacies in India. I'm considering buying permanent aromatase inhibitors and metformin from the same to lose lockdown weight and cope with decreasing fitness as I age. Good for cancer drugs too. I had to set up a tutanota email, buy a burner phone/sim, and get a fake ID to buy a private mailbox in case the FDA wants to violently sodomize me for importing stuff that is over the counter in nations that don't consider their populations cattle to be farmed for tax revenue. I2P is supposedly better than Tor as a platform for building anonymous private distributed network apps, but that's literally just something I read and I have no idea if this is true or not. Granted, the person who wrote it was someone who used to pull 500,000 a year in Silicon Valley, so I'll take his word for it. * In order of least to most risk: internet trolls, pirates, computer criminals (their instructions on messaging them to remove ransomware are informative), illicit pharmaceutical importers/distributors/buyers, Nazi/Antifa/Eco-Anarchist radicals that have successfully avoided arrest, people with porn habits that are varying levels of illegal (too many categories to count), actual zoosexuals/pedophiles, and so on. As long as you approach it in a neutral fashion they are usually very helpful, just follow all the usual precautions to prevent anything from being traced back to you - and make it very obvious that you're not one of them, just someone living in a nation that is being used as a political football by the powers that be and who needs some advice on laying low. |
MysticLord |
Posted on 21-03-29, 20:09 in Instant messaging (cr)apps
|
Post: #23 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
If you take a look at the link I posted earlier (which is a curated list of software designed to evade the PRISM surveillance system used by the NSA; hence PRISM Break) you'll see a number of links relevant to your interests. I'll post long-form, for my own use in the future. 1. Briar, P2P messaging app. https://briarproject.org/ Some sort of cell-phone based peer-to-peer mesh network(?) civil breakdown and anti-authority app. Works with Tor too. https://code.briarproject.org/briar/briar/-/wikis/home ^Technical details on their protocols and software stack. https://briarproject.org/how-it-works/ ^Same as above, but quick rundown version with infographics. https://briarproject.org/about-us/ ^People involved. 2. Silence, encrypted text messaging app. Exactly what it says on the tin, with all the limitations (threat can see who, when, and how often you communicate even if they can't see the contents). https://silence.im/ 3. Psi, cross platform XMPP client. Skim the Psi wikipedia link below for a quick rundown, but I think it meets almost all your needs. https://psi-im.org/ https://en.wikipedia.org/wiki/Psi_%28instant_messaging_client%29 https://en.wikipedia.org/wiki/XMPP ^Has a ton of extensions, including connections to stuff like AIM and others. Worth a read. 4. Conversations, Android XMPP client. Would work well with number three above since it doesn't have an Android app. Has recommendations on XMPP servers to run in the link below. https://github.com/iNPUTmice/Conversations 5. Dino, XMPP client for Linux. https://dino.im/ 6. Retroshare, P2P communication and https://retroshare.cc/ https://en.wikipedia.org/wiki/Retroshare |
MysticLord |
Posted on 21-03-31, 22:11 in Looking for a python script in the now defunct archives (revision 1)
|
Post: #24 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
Got another python question. Code:
Output:
Files (not actually needed, you can just rename any 10 files as IMF00A_subfile_?.img, where? is a number between 1 and 10, both inclusive): https://ufile.io/lkcr8f2y Goal of this script right now is to print the file size of each subfile as a little endian byte string with a word size of 4 bytes. As you can see from the output, in all but 3 cases it's printing I think an ascii character for the first (least significant) byte instead of a byte string. I'm trying to figure out how to use struct.pack. |
MysticLord |
Posted on 21-03-31, 23:00 in Looking for a python script in the now defunct archives (revision 3)
|
Post: #25 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
Posted by funkyass MIMF/IMF*.IMG are the event scripts, background palettes, and sprite palettes for the corresponding "room" in Saga Frontier. It's a PS1 game - and *.IMG files always have a 10 entry header, with 4 little endian bytes per subfile entry denoting where they start in the file - so it must be little endian. The modder I'm working for needs the ability to resize each subfile to add/remove events for each room, and I figured he needs 3 scripts: one to print info about each IMF to tell him how much room he has left in it's sectors (by taking the IMF file size modulo 2048 sector size), a script to split each IMF into its subfiles, and a script to merge a split IMF's subfiles back into a legal IMF file. The first two are done, I'm working on the third now. Regardless of what it should be doing regarding escaping printable characters, I looked up the least significant bytes of the file sizes (which are the decimal numbers printed before the byte string) in an ASCII table and that's what it's doing for some reason. The question is why, and why only some of them. How could I debug this behavior? Or should I quit trying to learn struct.pack for now and go back to bitwise logical operations and shifts? |
MysticLord |
Posted on 21-04-03, 21:20 in Looking for a python script in the now defunct archives
|
Post: #26 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
Posted by funkyass Posted by Screwtape That's an awful lot of text to tell someone to use *.hex() |
MysticLord |
Posted on 21-04-04, 01:57 in Looking for a python script in the now defunct archives
|
Post: #27 of 27
Since: 08-01-20 Last post: 1328 days Last view: 1227 days |
Posted by Screwtape Is it worse than assuming I don't have a wife, family, and full time job; and can indulge an intellectual game of capture the flag more commonly known as "just do the research maaaaaaaaaaaaaaahhhhhhhhhnnnnnnnnnn *massive bong rip*"? I'm already extremely burned out as it is, and I'm romhacking as a favor for a friend. Would it kill you to not take the most roundabout way possible of explaining something, just once? Assume IDGAF about intellectual curiosity, and I just want to finish this problem, shit the script out of my brain via my fingers, and go back to something more interesting. |