#i have mods that actually mod :) they were hired for their prior experience and picked to do a job
Explore tagged Tumblr posts
musashi · 8 months ago
Text
Tumblr media
⚖️ MY TUMBLR-EXCLUSIVE ACE ATTORNEY FAN DISCORD IS OPEN TO THE PUBLIC! ⚖️
Hi all! Welcome to AAblr: Germany. A bunch of AA fans here on tumblr were unhappy with how a previous server of ours was handled, so we all fled to Franziska's (my) party mansion in Germany and now we're straight fucking chilling. And you should come join us!
Here's some cool stuff you can find in AAblr 2:
Channels for every single game, ship, and character you can think of! Hang out in the blorbozone, mute the character channels you hate, meet like-minded people who are insane about all the same things as you.
Weekly calls! We have multiple voice channels and chat daily! Don't want to be on mic? Hey, no worries, we have a TTS bot so you can still be included!
Member-run events! Do you wanna stream your favourite show? Are you making your way through AA and want to voice act it sillystyle with people who love it? Feel free!
Big voice channels as well as small, member-restricted alternatives for people who don't like crowds!
Constantly active chats! We have members in nearly every timezone, so there's always someone to hang with.
Writing/Drawing sprints! Body double with fellow creatives and make some art!
Kin-friendly! We actually started as a kin server, and still have a whole section for kinfolks.
Plural-accessible! We got pluralkit & tupperbox for you and anyone else chilling in your mind palace.
Free of exclusionary bullshit! All are welcome and everyone is kind. Exclusionists and discourse-brainers get flogged.
Open to new fans and oldies! Spoiler-conscious, so don't even sweat!
All ages! I said all are welcome, I meant it!
Tons more fun! Literally too much to list! And so much more to come!
⚖️ JOIN TODAY! I LOVE YOU! ⚖️
175 notes · View notes
queenlua · 4 years ago
Note
hey, i started following you recently and ur bio says ur a hacker? any tips on where to start? hacking seems like a v cool/fun way to learn more abt coding and cybersecurity/infrastructure and i'd like to explore it but there's so much on the internet and like, i'm not trying to get into anything illegal. thanks!
huh, an interesting question, ty!
i can give more tailored advice if you hit me up on chat with more specifics on your background/interests.
given what you've written here, though, i'll just assume you don't have any immediate professional aspirations (e.g. you just want to learn some things, and you aren't necessarily trying to get A Cyber Security Job TM within the next three months or w/e), and that you don't know much about any specific programming/computering domain yet.
(stuff under cut because long)
first i'd probably just try to pick some interesting problem that you think you can solve with tech. this doesn't need to be a "hacking" project at first; i was just messing around with computers for ages before i did anything involving security/exploitation.
if you don't already know how to program, you should ideally pick a problem you can solve via programming. for instance: i learned a lot back in the 2000s, when play-by-post forum RPGs were in vogue.  see, i'd already been messing around, building my own personal sites, first just with HTML & CSS, and later on with Javascript and PHP.   and i knew the forum software everyone used (InvisionPowerBoard) was written in PHP.  so when one of the admins at my RPG complained that they'd like the ability to set multiple profile pictures, i was like, "hey i'm good at programming, want me to create a mod to do that," and then i just... did. so then they asked me to program more features, and i got all the sexy nerd cred for being Forum Mod Queen, and it was a good time, i learned a lot.
(i also got to be the person who was frantically IMed at 2am because wtf the forum is down and there's an inscrutable error, what do??? basically sysadmining! also, much less sexy! still, i learned a lot!)
the key thing is that it's gotta be a problem that's interesting to you: as much as i love making dorky sites in PHP, half the fun was seeing other people using my stuff, and i think the era of forum-based RPGs has passed. but maybe you can apply some programming talents to something that you are interested in—maybe you want to make a silly Chrome extension to make people laugh, a la Cloud to Butt, or maybe you'd like to make a program that converts pixel art into cross-stitching patterns, maybe you want to just make a cool adventure game on those annoying graphing calculators they make you use in class, or make a script for some online game you play, or make something silly with Arduino (i once made a trash can that rolled toward me when i clapped my hands; it was fun, and way easier than you'd think!), whatever.
i know a lot of hacker-types who got their start doing ROM hacking for video games—replacing the character art or animations or whatever in old NES games. that's probably more relevant than the PHP websites, at least, and is probably a solid place to get started; in my experience those communities tend to be reasonably friendly to questions. pick a small thing you want to do & ask how to do it.
also, a somewhat unconventional path, but—once i knew how to program a bit of Python, i started doing goofy junk, like, "hey can i implemented NamedTuple from scratch,” which tends to lead to Python metaprogramming, which leads to surprising shit like "oh, stack frames are literally just Python objects and you can manually edit them in the interpreter to do deliberately horrendous/silly things, my god this language allows too much reflection and i'm having too much fun"... since Python is a lot of folks' first language these days, i thought i'd point that out, since i think this is a pretty accessible start to thinking about How Programs Actually Work under the hood. allison kaptur has some specific recommendations on how to poke around, if you wanna go that route.
it's reasonably likely you'll end up doing something "hackery" in the natural course of just working on stuff. for instance, while i was working on the IPB forum software mods, i became distressed to learn that everyone was using an INSECURE version of the software! no one was patching their shit!! i yelled at the admins about it, and they were like "well we haven't been hacked yet so it's not a problem," so i uh, decided to demonstrate a proof of concept? i downloaded some sketchy perl script, kicked it until it worked, logged in as the admins, and shitposted a bit before i logged out, y'know, to prove my point.
(they responded by banning me for two weeks, and did not patch their software. which, y'know, rip to them; they got hacked by an unrelated Turkish group two months later, and those dudes just straight-up deleted the whole website. i was a merciful god by comparison!)
anyway, even though downloading a perl script and just pointing it at a website isn't really "hacking" (it's the literal definition of script kiddie, heh)—the point is i was just experimenting a lot and trying a lot of stuff, which meant i was getting comfortable with thinking of software as not just some immutable relic, but something you can touch and prod in unexpected ways.
this dovetails into the next thing, which is like, just learn a lot of stuff. a boring conventional computer science degree will teach you a lot (provided you take it seriously and actually try to learn shit); alternatively, just taking the same classes as a boring conventional computer science degree, via edX or whatever free online thingy, will also teach you a lot. ("contributing to open source" also teaches you a lot but... hngh... is a whole can of worms; send a follow-up ask if you want that rant.)
here's where i should note that "hacking" is an impossibly broad category: the kind of person who knows how to fuck with website authentication tokens is very different than someone who writes a fuzzer, who is often quite different than someone who looks at the bug a fuzzer produces and actually writes a program that can exploit that bug... so what you focus on depends on what you're interested in. i imagine classes with names like "compilers," "operating systems," and "networking" will teach you a lot. but, like, idk, all knowledge is god-breathed and good for teaching. hell, i hear some universities these days have actual computer security classes? that's probably a good thing to look at, just to get a sense of what's out there, if you already know how to program.
also be comfortable with not knowing everything, but also, learn as you go. the bulk of my security knowledge came when i got kinda airdropped into a work team that basically hired me entirely on "potential" (lmao), and uh, prior to joining i only had the faintest idea what a hypervisor was? or the whole protection ring concept? or ioctls or sandboxing or threat models or, fuck, anything? i mostly just pestered people with like 800 questions and slowly built up a knowledge base, and remember being surprised & delighted when i went to a security conference a year later and could follow most of the talks, and when i wound up at a bar with a guy on the xbox security team and we compared our security models a bunch, and so on.  there wasn't a magic moment when i "got it", i was just like, "okay huh this dude says he found a ring-0 exploit... what does that mean... okay i think i got that... why is that a big deal though... better ask somebody.." (also: reading an occasional dead tree book is a good idea. i owe my firstborn to Robert Love's Linux Kernel Development, as outdated as it is, and also O'Reilly's kookaburra book gave me a great overview of web programming back in the day, etc.  you can learn a lot by just clicking around random blogs, but you’ll often end up with a lot of random little facts and no good mental scaffolding for holding it together; often, a decent book will give you that scaffolding.)
(also, it's pretty useful if you can find a knowledgable someone to pepper with random questions as you go. finding someone who will actively mentor you is tricky, but most working computery folks are happy to tell you things like "what you're doing is actually impossible, here's why," or "here's a tutorial someone told me was good for learning how to write a linux kernel module," or "here's my vague understanding of this concept you know nothing about," or "here's how you automate something to click on a link on a webpage," which tends to be handier than just google on its own.)
if you're reading this and you're like "ok cool but where's the part where i'm handed a computer and i gotta break in while going all hacker typer”—that's not the bulk of the work, alas! like, for sure, we do have fun pranking each other by trying dumb ways of stealing each other's passwords or whatever (once i stuck a keylogger in a dude's keyboard, fun times). but a lot of my security jobs have involved stuff like, "stare at this disassembly a long fuckin' time to figure out how the program pointer got all fucked up," or, "write a fuzzer that feeds a lot of randomized input to some C++ program, watch the program crash because C++ is a horrible language for writing software, go fix all the bugs," or "think Really Hard TM about all the settings and doohickeys this OS/GPU/whatever has, think about all the awful things someone could do with it, threat model and sandbox accordingly." occasionally i have done cool proof-of-concept hacks but honestly writing exploits can kinda be tedious, lol, so like, i'm only doing that if it's the only way i can get people to believe that Yes This Is Actually A Problem, Fix Your Code
"lua that's cool and all but i wanted, like, actual links and recommendations and stuff" okay, fair. here's some ideas:
microcorruption: very fun embedded security CTF; teaches you everything you need to know as you're doing it.
cryptopals crypto challenges: very fun little programming exercises that teach you a lot of fundamental cryptography concepts as you're going along! you can do these even as a bit of a n00b; i did them in Python for the lulz
the binary bomb lab is hilariously copied by, like, so many CS programs, lol, but for good reason. it's accessible and fun and is the first time most people get to feel like a real hacker! (requires you know a bit of C beforehand)
ctftime is a good way to see when new CTFs ("capture the flag"s; security-focused competitions) are coming up. or, sometimes CTFs post their source code, so you can continue trying them after the CTF is over. i liked Stripe's CTFs when they were going, because they focused on "web stuff", and "web stuff" was all i really knew at the time. if you're more interested in staring at disassembly, there's CTFs focused on that sort of thing too.
azeria has good ARM assembly & exploitation tutorials
also, like, lots of good talks out there; just watching defcon/cansecwest/etc talks until something piques your interest is very fun. i'd die on a battlefield for any of Christopher Domas's talks, but he assumes a lot of specific x86/OS knowledge, lol, so maybe don’t start with that. oh, Julia Evans's blog is honestly probably pretty good for just learning a lot of stuff and really beginner-friendly?
oh and wrt legality... idk, i haven't addressed it here since it hasn't come up in my own work much, tbh. if you're just getting started you're kind of unlikely to Break The Law without, y'know, realizing maybe you're doing something a bit gray-area? and you can cross that bridge when you come to it? Real Hacking TM is way more of a pain-in-the-ass than doing CTFs and such, and you'll learn way more with the latter, so who cares lol just do the fun thing
20 notes · View notes
thesims4blogger · 6 years ago
Text
The Sims 4: New Game Patch (April 16th, 2019)
There’s a new Sims 4 PC update available via Origin!
Remove all MODS and Custom Content before updating your game!
UPDATE: 4/16/2019 – PC 1.51.75.1020 / Mac 1.51.75.1220
Happy April, Simmers. Nice to meet you! Maxis hired me as a freelance writer to work on these game update notes. (Side note — if you find a problem, blame SimGuruGraham — he’s my editor.) In all honesty, it’s a pretty sweet gig. I got to see the new Expansion Pack, Game Pack, and Stuff Pack that the team is working on, and did you know that they bring in bagels on Fridays? But hey, enough about me. Being a freelancer, I’ll be gone again before you know it.
Anyway, funny coincidence; there’s actually a brand-new Freelancer career arriving in this update that’s free for all players. I was playing around with it earlier, and go figure… my Sim self earns more money as a freelance writer than I do! Geez; guess I’ll have to live out my fantasies of getting rich through The Sims again. Looking beyond the new, free features though, I’ve got to say… those SimGurus really knocked it out of the park with this one. Just look at all those lovely fixes to many of the top discussed community issues!
Well, let’s get to it, shall we? Here’s everything you’ll find in this April update. Have fun!
Yours truly, Sue D. Nym Freelance Writer Extraordinaire
NEW CONTENT
Freelancer Career
Freelancer is a brand-new type of career. Sims can choose to be a Freelance Artist, Programmer, or Writer, and will work through an agency that will connect them with a variety of gigs. Unlike other careers, there’s no defined work schedule to worry yourself over. Need some extra Simoleons? Smash through a few gigs in a single day and get paid! Need some time off? No problem – plenty of gigs will be waiting for you when you’re ready to get back to work. Your office is wherever you want it to be. Perhaps a quiet corner in the local library, or maybe you’d prefer a home office decked out in the new set of office furniture? You’re your own boss, so the choice is yours! Completion of gigs across the different agencies will lead to a variety of rewards, and ever-increasing pay. Really, it’s the best Sims career Maxis has ever made. [Sue, please… remove this. No editorializing. – SimGuruGraham]
New Objects
This free set of home office furniture and decor is ideal for your burgeoning Freelancer Sims!
Bookcase: Edgier LadderCase
Desk: Anglette Desk
Desk Chair: The Professional
End Table: A Cute Anglette
Decor: Not So Simple Pen Holder
Decor: Hand Reference Model
Decor: Robo, The Friendly Circuitry Kit
Decor: The Note Book
Laptop: FreeRoam Portable Computing Device
Wall Decor: Better As A Pair Of Paintings
Wall Decor: Supreme Freelancer Award
New Clothing
Freelancers tend to want comfy, but professional outfits. We’ve got them covered with the following new pieces of clothing.
Women
Men
A cable knit cardigan outfit
A sweater and skirt outfit
A layered sweater
A pair of flats
A collared sweater
A button up shirt
A crewneck sweater
A pair of drawstring pants
Moschino
In collaboration with Moschino, your Sims can now enjoy an item from the Moschino X The Sims Capsule Collection. The new Freezer Bunny hoodie can be found in the Create a Sim catalog.
Immaculate White Shelf
I could have buried this down in the Fixes & Updates section, but… it’s kind of a big deal. There’s now a plain white version of “The Immaculate” shelf available in Buy Mode!
[Note to self: Sue seemed super excited about this. It sure seems like something we should do more of… – SimGuruGraham]
FIXES & UPDATES
The Sims 4
Sims will travel to the correct venue when invited out to an event by a NPC Sim.
Fixed an issue where the UI would occasionally indicate that a Sim was at work, when they were actually at home, which would block access to the Sim’s inventory.
Sims will no longer receive random phone calls from other Sims between the hours of 8pm and 10am, allowing them to enjoy a full – and speedy – night’s sleep.
Fixed an issue where multiple music tracks could end up looping and playing simultaneously.
Expecting parents will once again be able to “Take Family Leave” via their phone to take time off from work.
Fixed an issue where a Sim who had cheated with another Sim romantically, were then unable to successfully propose to that Sim and get married.
Fixed an issue where Sims in the eSport Gamer branch of the Tech Guru career were not earning money when programming video games.
The Pick Up Serving Together interaction will no longer cause one of the Sims involved to fail to route to the food.
Fixed an issue where interactions on the Digitalistic Sketchpad object would disappear if a Sim’s actions were canceled while they were picking up the Digitalistic Sketchpad.
Updated the Digitalistic Sketchpad object so that creating paintings on it will satisfy Aspiration goals and work tasks that involve painting.
Fixed an issue with the Lin-Z Smart Speaker, where the interaction to hire a Gardener would remain unselectable, even when the home had a garden that needed tending.
Sims will now look at the Lin-Z Smart Speaker when speaking to it.
The “Pre-Owned Painter’s Easel”, that’s unlocked via the Painter career, will now provide an Inspirational emotional aura, instead of a Focused emotional aura.
Fixed an issue where staircases were not rendering properly while held by a mouse cursor.
Updated positioning of overlapping Search & Reset buttons in a player’s catalog within the Gallery.
Adjusted icons of Lunar New Year recipes to better display what food you’re looking at within an inventory.
The children’s Yin & Yang Necklace will no longer clip into their neck when wearing a shirt that’s tucked in.
The “CleanRoom” wall pattern, which was previously missing a name for its 5th color variant, has now had that specific color variant named “Like Sand”.
Added the ability to click through different pack art on the main menu for any of the packs you currently have installed.
A new content alert icon has been added to individual careers within the Select a Career panel, to help players find new careers that have been added to their game.
Note: If a save file created prior to this update contains a Sim that’s already in this bad state, simply traveling to another lot with that Sim will permanently fix this issue.
As far as I’m aware, this is the only instance in the game where a color variant has been given a unique name. Huh… neat!
Mac
Fixed an issue for Mac users with Intel integrated graphics, where the mouse cursor would not move properly after adjusting the shape of a Sim’s body in Create a Sim.
Removed an outdated file that was causing a false error message to appear for 64-bit Mac users that said, “The Sims 4” is not optimized for your Mac and needs to be updated.”
Get To Work
Scientists will once again wear an appropriate outfit when going to work even if StrangerVille is not installed.
The “Chemical Analyzer” object can now be purchased from Build Mode without having to use a cheat.
Fixed an issue where selecting the Randomize from Gallery option until receiving an alien Sim, and then further randomizing that specific Sim, could result in a naked alien Sim.
Made updates to the list of valid objects that can be selected as the outcome of the SimRay’s “Transform Object” interaction.
City Living
Fixed an issue where objects from multiple festivals were appearing on top of each other in the neighborhood simultaneously.
Apartment landlords will now leave the apartment immediately after addressing a tenant’s complaint.
Added the ability for Sims with the Vegetarian trait to hire a Vegetarian Caterer by clicking on Stoves or Refrigerators.
Vegetarian Sims will no longer enjoy eating Mud Carp.
Cats & Dogs
After installing this update, Sims who adopt an animal after befriending them will be able to become companions with them and lecture them for misbehavior.
Fixed an issue where hungry pets would not eat from food bowls autonomously.
The pet toy box will no longer have its position rotated in a random direction when a Sim returns home from an active career.
Fixed an issue where the “Litter-Matic Scoop-Free” litterbox wasn’t looking clean after cat poop had been removed.
Fixed an issue with the Pet Adoption Agency, where they would occasionally show up at a Sim’s home without any pets to adopt, and would simply stand at the home’s front door and not do anything.
Note: Sims who have already adopted an animal after befriending them, in a save file created prior to this update, will continue to experience this issue. We’re investigating a separate fix for this issue in existing save files.
We’ve placed the magic gnomes responsible for this in the naughty box alongside SimGuruNinja.
Seasons
Updated the Gardening career so that Sims will earn more than 10 Simoleons per completed work shift.
Fixed an issue where on days where no holiday was set to occur, a Sim’s work schedule would update to falsely indicate that the day was a Holiday just prior to going to work, causing the Sim to stay home for the day.
Fixed an issue where NPC Sims were not autonomously using the skating rinks that appear in certain neighborhoods.
Toddlers will no longer attempt to queue up behavior to “Run Inside” during bad weather conditions if they’re already inside.
Fixed an issue where Sims voices could not be heard when Singing Together around a Holiday Tree if City Living was not installed.
Get Famous
The Acting career task to “Get Into Hair and Makeup” can be successfully completed once again.
Fixed an issue where celebrity Sims who had been set to use their normal walkstyle were switching back to using the celebrity walkstyle after traveling to certain types of venues.
Three star celebrity Sims will no longer use the celebrity walkstyle.
Dine Out
Players who have City Living installed can now add the Siopao and Ensaymada dishes to their restaurant’s menu. Yum!
Vampires
Vampire Sims created after installing this update will be able to continue to gain points after reaching the rank of Grand Master.
Fixed some circumstances where Vampire NPCs could appear at a venue and prevent the player from being able to save the game.
Fixed an issue where NPC Vampires would have their Vampire Energy drained after completing a load, which was causing them to idle in place instead of performing their expected autonomous behavior.
Note: Vampires that already exist will continue to experience a problem with gaining points after reaching Grand Master. We’re investigating a separate fix for Vampires in existing save files.
StrangerVille
Fixed an issue where Sims that had been shared to the Gallery after completing Act 1 of the StrangerVille Mystery would be blocked from progressing in the mystery when downloaded from the Gallery into a new game.
The following environment objects, which were created for StrangerVille, have been added to the Build Mode debug catalog to allow placement on lots. Players must enter the bb.showhiddenobjects cheat before they can be seen in the catalog.
Added proper images to the Officer and Covert Operator branches of the Military career.
Removed the “Question about Spores in Lab” interaction for Sims who have already acquired the Modified Hazmat Suit.
Removed the “Heart of the Pack” styled look from Create a Sim, as it was authored using clothing that’s only available to Sims that have joined the Military career.
Updated the pack information panel on the main menu to not display world objects under the Build Mode Items.
10 different cacti
3 different Joshua trees
3 different RVs
2 clusters of rocks
2 junked cars
A group of desert flowers
A military truck
A tire
A parking stop
My First Pet Stuff
Fixed an issue where deleting/selling the rodent habitat could cause the game to become unresponsive.
Holiday Celebration Pack
The Crown Roast platter will now show a partially eaten state when half of its servings have been taken.
80 notes · View notes