#System File Checker
Explore tagged Tumblr posts
bitcoinversus · 2 months ago
Text
Command #6 – sfc (Windows OS)
SFC (System File Checker)System File Checker (SFC) is a built-in Windows utility designed to scan for and repair corrupted or missing system files. SFC ensures the integrity of critical operating system files by replacing them with the correct versions from the Windows installation source, helping to resolve system stability or performance issues. Keep in mind, you will need administrative…
0 notes
officialclangen · 11 months ago
Text
ClanGen Resources Masterpost
Something not so cool is that you can really only find the majority of our resources via our Discord server, and that's frustrating and exclusionary. We get it! To help bridge that gap, Fable and Chibi have put together a list of our most useful resources.
This will be kept updated and maintained for all our friends on Tumblr, we hope folks find this helpful! All of these resources are made by the amazing members of our community. Thank you all for loving our game!
Download Guides
Image Heavy ☆ No Images ☆ Screenreader Friendly Our official guides for how to download the games. Look here if you need a helping hand!
Amaa's/Selkirks' Text Guide
Stable Release ☆ Development Version These guides are meant for save-file editing, giving you a quick resource to refer to when you want to change things about your cats! Amaa no longer works on this sheet, but Selkirks has taken over!
Kenz's Visual Sprite Guide
Stable Release ☆ Development Version Ever wondered what a sienna masked tabby looked like? Wanted to know just how many white patches there truly are? Look no further than here!
Cere's Tortie Guide
☆ Link ☆ Coding in a tortoiseshell or calico can be frustrating. This concise, easy-to-follow guide goes over how to do it, complete with examples!
Cere's Conditions List & Scribble's Conditions Guide
Cere's List ☆ Scribble's Guide These two guides go hand-in-hand (or... paw-in-paw?) to walk you through editing in conditions for your cats!
Acorn's Inheritance Guide
☆ Link ☆ Have you ever wondered just how ClanGen determines what a litter of kittens might look like? How in-depth IS our genetics system, anyways?! The wonderful Acorn will walk you through it here!
blackkat's Wildcard Tortie Checker
☆ Link ☆ This spreadsheet helps determine whether or not a tortoiseshell cat is a wildcard or not! Not sure what a wildcard is? See here!
Citrus' Clan Organizer
☆ Link ☆ A beautiful spreadsheet that helps track and organize your ClanGen Clans, for those who enjoy things like that!
Various Tumblr Resources
What can I expect, joining the Discord? I want to have the day-time backgrounds, but on dark mode! How are the allegiances formatted, if i want to write my own?
1K notes · View notes
razzledazzle-pop · 1 year ago
Text
Tumblr media Tumblr media
Logan time!! *smacks him with a metal bat*
Personal headcanons/design things:
The de-facto leader of the sides. Although Character!Thomas is mostly governed by his morality and creativity, Logan is the best at keeping the peace and good relations amongst all the sides. Even before Virgil joined he had amicable relations with the dark sides. Friendly? No. Practical? Yes.
You know what? Yeah. I’ll get a little silly with it. He helped Remus and Janus orchestrate the whole “send Virgil over to the Light Side” thing; He understands those sides of Thomas are sides that are repressed and Repression! Isn’t! Healthy!
Patton thinks that he’s the Get Along Guy but really it’s Logan. Patton has weird standards on who is and isn’t “acceptable” (which change drastically later). But initially Logan is the one holding this Whole thing together and he’s holding it all with twine and scotch tape. He’s endlessly tired.
He and Janus are playing chess and everyone else is playing checkers. In that vein, he also views Janus as an intellectual contemporary (though he begrudgingly finds Patton helpful to discuss thought experiments with as well).
Has a mini fridge in his room filled with triple shots.
Has an info-binder on the other sides—their likes/dislikes etc…
He’s extremely observant.
Always stands like he’s giving a presentation 💀
2nd tallest of the sides, after Virgil.
His room has The Archives (copies of all school notes/info Thomas has ever learned)…Every few years or so he does File Closing (shredding) of any info that hasn’t been pulled on in that time. It’s like the burning of Alexandria to him.
He has a very meticulous file system (it’s analog).
Has a 1990’s style computer. It has one game and that game is chess.
I believe in side solidarity so he also enjoys hosting DND one offs with Roman sometimes (Something something combo of imagination and strategy).
One time Remus got ahold of Logan’s sacred Tumbler Cup and refilled it with something absolutely vile. He has not attempted to do so since.
Now I don’t think Logan knows exactly what the dark sides are per se (in terms of their additions aside from Janus—, or what causes them) but he has his suspicions (something something dehumanization).
Somehow has a connection to the Orange side???
198 notes · View notes
pinka-style · 8 months ago
Note
hi pinka 🤍 May I know your pc type & specifications? I’m dealing with pink soup on a windows 11 laptop so I’m curious! I’m thinking I may downgrade to an older system to run the game better. I have so much cc I can’t give it up 🙈
Hi there ♡
HP Pavillion x360 Convertible Windows 11 11th Gen Intel(R) Core(TM) i5-1155G7 @ 2.50GHz 2.50 GHz Graphic Card: Intel Iris Xe Graphics RAM: 16,0 GB
Downloads folder: 23gb
Pink flashing seems to be a tricky issue, but it has only happened to me twice and both times it was due to several high poly hairs. I don't know if it's because of that but I associate it with hair texture as I play with high poly objects and I have no issues. Try playing with low/medium or only with some high poly hairs... and see if that might be the problem with your game.
You probably already know most of them, but here are a few tips to keep your game as stable as possible:
Install graphic rules and 4gb patch
Run Delphy's Organizer to delete duplicate files
Compress your cc
Run Hood Checker
Disable neighbourhood decoration
Load the game in an empty hood and on an empty lot
I hope you get it fixed soon!
14 notes · View notes
intercal · 4 months ago
Text
the anatomy of my TODO.md
this is for the language I've been working on and actually making progress with. right now, I've got just a small handful of tests for ints and floats and strings doing basic stuff, just like all of the operators. but really besides basic types and operators and a couple of print statements, there's not that much. (for those who are curious, here are the types: Obj, Ty, Str, Int, Float, Bool, Nil, BuiltinFunction, UserFunction, Method.) this is all in about 4500 lines of code including comments and blanks.
we have "if" statements and functions, so we are technically turing-complete, but we don't even have "while" loops. obviously some things have higher priority than others. bit twiddling operators are pretty low on the priority list, and "while" loops are pretty high up. I have four categories of "TODO" on my list:
things that need to get done ASAP to even be considered a "programming language". this includes stuff like while loops, picking a name, collections (lists, maps, tuples etc), imports, exceptions, custom types (e.g. classes), and other things. basic stuff that you hypothetically use in nearly every single program you would write.
"things that need to get done". much lower priority, and really I shouldn't be working on any of these until the previous list is completed. these include things like robust slicing (for strings, lists, etc), iterators, for loops (blocked on iterators), string interpolation, bit twiddling operators, variadic arguments, and others. other things that are fundamental to any programming language, but are either a little more complex or easier to work around not having for a while.
"wishlist". this is broken up into "near future" and "far future", but it covers stuff I haven't put a lot of thought into but have thought "this would be neat to have". they are features that are not guaranteed to make it into the language. the "near future" list is pretty short, containing just method/function decorators (like python), context management (like python's "with" statement), runtime type checking syntax, pattern matching, and a "bytes" collection type. the "far future" list is just two items: good tooling, like a formatter, static type checker, docs generator, etc; and compile-time function execution (CTFE).
"incubator". this is the longest section and each item will need a lot of thought put into them since they could fundamentally change the language, or because I don't know if they're good ideas or not. these items include object literals, atomic values (like erlang/elixir/OTP languages), a pipe operator, asyncio, and a structured macro system for the language.
okay I lied. there's a fifth section, called "standard library" for stuff that I want in the standard library. I really like python's (can you tell I'm drawing a lot of inspiration from python) philosophy of "batteries included" and want to have a big standard library. hopefully I don't come to regret that decision. for the standard library, I have these packages written down so far for what I want: json, regex, random, time, ast (abstract syntax tree bindings), "system functions" (maybe like python's os module? not sure what I meant by this), paths, file i/o, ffi?, PNG images, sockets, basic HTTP client, basic HTTP server, CLI option parsing (python's is REALLY good), logging (supposedly python's is REALLY bad)
so there you go. that's what my todo list looks like. it's kind of interesting which language features would take at least a week of iteration to get integrated how I like (like imports or custom types), versus features that I could knock out in an evening (like 'while' loops). idk, this is the furthest I've gotten with any language I've started. I'm looking forward to getting through the first two sections of my todo list, so I can stop looking at "which features NEED to be implemented" versus "which features do we WANT to implement".
#t
6 notes · View notes
aghostinmyownmachine · 10 months ago
Text
dbh-adjacent writing-program nonsense under the cut, a.k.a. let's talk a bit about WriteMonkey 3
I've used WriteMonkey 2 and 3 on and off for. hm. I guess it's gotta be eight or nine years now? but those instances of use have always been erratic and short lived, and I've usually returned to either Scrivener or, more frequently for many reasons, MS Word. (I also did just a ton of first-draft writing in discord back when I had an account and c/ped my writing from there into Word. near-peerless syncing between devices, appalling security practices. what can ya do 🙃)
anyway, due to ~circumstances~ I've switched to writing on a computer that isn't my writing program–filled work laptop, and so I've been experimenting with WM3 again because it's super lightweight due to plaintext markdown instead of rich text and I have a license key for it, which = fun plugins. it's also way less complicated and labor intensive to set up per project and use than, say, Scrivener. I love Scrivener! but scriv can be overwhelming and distracting when all I want to do is write, especially if I want a unique, quick-to-set-up theme (and I always do, because Aesthetic Is Everything), which is one of the reasons WM3 is so handy
Tumblr media
in addition to the gorgeous stripped-down UI that showcases whatever background I choose (mine can be found here!), WM3 has some really neat little plugins? I don't actually use the word-frequency checker myself, but WM3's shows you where each word appears in the document via the little indicator bars to the right of the word, which. rad! (you can tell at a glance which chapters are written in whose POV based off name usage alone and I think that's neat.) also, when you click on a given word in the frequency list, it'll highlight that word throughout the document and also display all uses of it vertically over the scroll bar path. lots of nice little visual indicators of what's going on. I just really like the design, it's simple but extremely useful and intuitive
admittedly, Scrivener cannot be beat when it comes to how easily you're able to make notes in it due to its multitude of note-taking locations, plus it has internal splitscreen capabilities that make referencing a second document a breeze, so there's definitely a mental transition involved when it comes to WM3 and its single-document-at-a-time system, on top of switching to markdown-style comments/reminders. that said! being able to not only see those comments below the headings in the left-hand sidebar but also jump to them when they're clicked? stellar 10/10 would use again
Tumblr media
finally, the repository. I <3 the repository. being able to quickly toss whatever text I'm not quite ready to delete or info I know I'll want to reference at some point in the future into the repository is great. it's a seamless process, only a couple seconds' worth of effort required, allowing my focus to stay on what I'm writing instead of distracting myself by tabbing my way through various open files to find my notes. plus the repository is searchable(!!!!!), and using it also keeps the actual text editor clean visually, especially since the right-hand sidebar can be hidden too:
Tumblr media
hm! possibly that is a sneak preview of chapter one! who can say!
so yeah! if you're looking for a stripped-down, highly customizable, portable writing program, I absolutely recommend it. there are downsides, of course, the biggest one being no official WM3 mobile options available at present, but since the program is both portable and plaintext, you can toss it into a syncing service and access it via your handheld devices that way. it's also not open source, and you need to pay to access the truly useful plugin features. with all that said, if you don't mind fiddling around with some CSS to make everything look juuuuuuuuust right, you can get yourself a really snazzy setup with relatively little effort. but maybe that's just me—aesthetic is king and all that
7 notes · View notes
bluecaribousims · 3 months ago
Text
Missing EAxis Object...
So. I run a *very* heavy CC system, to the extent that I will start loading TS2 and then walk away, make dinner and come back half an hour later as the main menu finally loads. This obviously means I have a *massive* aversion to anything that requires me to load the game multiple times to diagnose an issue. So, my question for the all-knowing overlords of Tumblr is this: Is there a better way to identify a problem object that is overwriting an EA object in game than the binary-sort system where you unload 50%s of CC, load, then 25%s etc until you identify the problem file? I've tried loading my conflicts checker, but that's not pulling up anything in that area (it's the base game crib used in the Broke trailer which has vanished completely from my catalogue) If I have to binary sort, I will, but I'm open to better suggestions! ... Also, SimPE won't load for me, no idea why, so if your solution requires that, it may need a deeper layer of problem fixing...
2 notes · View notes
leaf4e · 1 year ago
Text
hi i have a new texture pack
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Mods visible in screenshots are Mod Menu ( - the mods option) and Appleskin ( - the checkered pattern behind the hunger bar). Texture pack used for clear water is here
Link to download here
If you have any feedback on it pls tell me (even if its just based off the screenshots here)
Im also not planning on a bedrock port bc im lazy and its a different file system for these
8 notes · View notes
hedonicghost · 1 year ago
Note
You can also try running the system file checker and dism tool! in command prompt do "sfc /scannow" and then when its done do "DISM /Online /Cleanup-Image /RestoreHealth"
Tumblr media
i'm so sure there is your honor
3 notes · View notes
gachagon · 2 years ago
Text
Case Study 1 | STATUS: CLASSIFIED | ACCESS: GRANTED
Tumblr media
SYSTEM CHECK | BLUE LOCK X PYSCHO PASS | BACHISAGI
Words: 3.0K
Pairing: Bachira Meguru/Isagi Yoichi, Bachisagi Genre: Romance, Sci-fi, Crossover, Crime Solving, Murder Mystery
STATUS: Ongoing
The Sibyl System is a perfectly curated AI that judges human's mental capacity to commit crime before they have done any real harm to society. A person's Pyscho Pass is the measure of their propensity to commit crime and such people who are deemed with too high a Pyscho Pass are labeled Latent Criminals. Ego Jinpachi is the Director of the Public Safety Bureau and has issued a new system under the Sibyl System to help at risk youth who have anomalous Pyscho Passes known as Project: Blue Lock. Bachira Meguru and Isagi Yoichi are two of the newest members of this system, and are registered Strikers who work for the PSB, helping their local community with small tasks. One day, however, they come across the one thing they never thought they'd see during their time with Blue Lock: A Dead body. Now they're tasked with investigating and solving the murder of a person they've never met, but can they keep their hue's from shifting too far in the wrong direction while they're doing it?
tags: @echarie @https-true-egoist @swoland @blonde-batgirl @awkward-fandom-fan @lizzieonka @antiv3nom @go-rocksquadsfan @reomikagekin @oo-mi-ru-oo
“Isagi Yoichi?” His name was called from the front desk and he looked up almost immediately towards the kind looking receptionist. “Inspector Anri will see you now.” The receptionist gave him a warm smile as he nodded and made his way down the hall of the Public Safety Bureau. Isagi had never been in the PSB building before, which he had considered to be a good thing since the only people who really came here were Latent Criminals or victims. The office was sleek and clean with plain white walls, and fluorescent lights up above. The logo of the PSB was plastered in some places, usually accompanied by a telepad that displayed information about the Sibyl System and the PSB. 
As his feet trudged slowly across the shiny tiles, he could feel unseen eyes on him when he neared a door at the end of the long hall. Security cameras that doubled as hue checkers followed his every move closely. Before him was a door with the name “Anri Teieri” displayed neatly on a holo-plaque. Isagi raised his hand to knock on the door, and her name fizzled in and out with the vibrations. 
“Come in!” A voice called out, and the door slid open. Anri Teieri, or just “Inspector Anri”, sat at a large but crowded desk full of screens and messy wires. The office was cramped a bit, full of files that were overflowing with papers and manila folders that were unmarked. In front of the desk was one solitary wooden chair that looked as if it hadn’t seen daylight in years. When Isagi sat on it, the chair creaked and he feared it’d fall out right from under him if he squirmed in it too much. 
“Sorry we don’t have more uh…welcoming accommodations. I’m Inspector Anri Teieri, and you must be Isagi Yoichi, correct?” She asked him with an outstretched hand. Isagi took it and shook her hand gingerly. 
“Yeah, that’s me. It’s fine, I’ve never really been inside of one of these places before. You know, a PSB building.” He said with a slight chuckle. “I’ve seen them on TV a lot before, though.” 
Anri laughed along with him, “Well this is no tv set, that’s for certain. And I hope you won’t treat it as such. We here at the PSB take our job very seriously, and I intend to do my best with you as well.” She explained before turning one of her screens to Isagi. On it was a file that was obviously for him, with his picture on display and general information about him listed. However, what peaked his interest the most was the big blue hexagonal logo that had the words “Blue Lock” written on it. “We’ve already got most of your information ready for the Blue Lock project, though I do still need one more thing from you which is your own personal report.” 
Isagi cocked his head to the side, “Personal report…?” 
Anri nodded, “I need you to tell me the last time you noticed your crime coefficient  was stagnant…what were you doing then, who were you around, that kind of stuff. It’s just for file management so don’t worry, you’re not in trouble or anything.” Anri said. “And it’ll help us uh…pair you up with someone else in the future if I can reference your story with someone else's. People of similar hues tend to influence one another, after all.” 
Isagi got the gist of it. “I see, well I guess the last time I noticed my hue hadn’t changed in a while was maybe…last week? When I was playing soccer with my highschool team.” Isagi reminisced about that day as he told everything to Anri. 
It had been a normal, and sunny afternoon on the field. His team had just lost a match, though that wasn’t unusual for them. They were ranked as one of the lowest rated teams in their entire district by the Sibyl System, and were only really allowed to play in small scrimmage matches until they climbed the ranks some more. “Nationals” wasn’t a thing that really existed, since the country was closed off from outside nations. Instead they would compete in a district wide competition, though the Sibyl System decided who got into what ranks and who didn’t. Only those with very clear hue’s got in. And out of everyone on the team, Isagi was the one with the cloudiest hue. 
That day, after the match, he decided to sit on the bench and try to cool off since it was a rather hot day. His friends waved goodbye to him as they headed for the locker room, but Isagi stayed behind. In his pocket, he had pulled out a hue self-checker, something that the nurses at the care facility had given to him the last time he went for a check up. 
He’d never been flagged, but his parents were still worried about his crime coefficient  and his hue. It was a small device, built like one of those in home sick thermometers you held to your head. With a languid sigh, he turned it on and held it against his temple, before hearing the soft beep. 
When he looked at the screen on the small device, he felt a slight tinge of dread crawl up from the pit of his stomach. 88.5, blue green. That wasn’t good, anyone else with that kind of CC and hue would be checked into a care facility immediately and given therapy. A person's Psycho Pass, the measure of a person's stability in society and their propensity for good, was a delicate thing to balance. If any of his teammates knew he had such a high Psycho Pass they’d probably have him kicked off the team. 
Tucking the device away quickly, lest anyone else see, he had decided to just head home instead of hanging around with the others. He didn’t want to cloud their hues since his was already bad enough to be flagged by a scanner. 
“And it had been at 88.5 for…well for months now. When I was a kid, obviously it would change but it’s like ever since my birthday…My crime coefficient  hasn’t budged at all.” Isagi finished his story with a weary look. “It hasn’t gone up, thankfully…but it also won’t go down. No matter how much therapy or pills I take, nothing seems to work.” 
Anri typed all of this on her laptop as he spoke, her fingers moving fast across the keyboard. “Well you’re not lying, thankfully. I can see all of your past checks from years ago, and you did have a normal Psycho Pass for a child of your age back then. Though I do see a gradual increase as time goes on, maybe it was the stress from school that did it? When you were a first year, your Psycho Pass was moderate, but in the second year that is when you breached the .60 range. And now that you’re a third year…” She shook her head. “It skyrocketed all the way to 88? That kind of CC only happens to people with intense anxiety, you know.” 
Isagi did know, and he had explained his circumstances to every specialist who would listen. “I don’t have any reason to stress. I’ve never…I didn’t feel overwhelmed or anything during school. My grades are good, I have nice parents, I have friends-” 
“What about that soccer team of yours?” Anri asked, as she eyed her screen again. “Says here your team is the lowest ranked in your district. Could that perhaps have clouded your Psycho Pass?” 
Isagi furrowed his brow, “What? No, of course not. Everyone on the team…plays for fun. It doesn’t matter what our rank is, just that we…get to play together.” He sounded more like he was trying to convince himself rather than Inspector Anri, who raised an eyebrow at him. 
“Really?” Anri rested her head on the backs of her clasped hands as she looked at Isagi. “All those losses didn’t get to you, not even once?” Isagi avoided her gaze but Anri continued on. “You know, I used to play Soccer too when I was younger. I was pretty good at it, though when I tried to get my friends to play along with me…it was as if I was the only one really giving it my all. They all wanted to play for fun, and I did too…but I cared too much at the same time, and it really annoyed me so I stopped playing the game. I’ve seen your scores here, you’ve got the most goals out of everyone on that team of yours, which isn’t saying a lot but…I think maybe you also ‘care too much’ about soccer.” 
“I…” Isagi opened his mouth to rebuke that statement, but nothing came to mind then. Truthfully he had grown increasingly frustrated with his teammates and the way none of them seemed to carry their own weight when they played. There were times where he’d passed to one of them and they had let him down, including in the last game they played together. But every time he felt annoyed with them, he had stamped down that frustration and told himself he wasn’t being a “good sport”. That he was just being a sore loser and was throwing a tantrum because they lost a game. 
Anri studied him silently for a moment, before returning her eyes to the screen. “This is just a minor setback in your life. We here at the PSB invited you today so you could be a part of a special program to help kids struggling with their hues just like yourself.” Anri slid him an I.D card that had some information on it about him. It held his name, a picture of himself, and the words “Project Blue Lock” typed on the top. 
“It says here I’m a registered…’Striker’? What does that mean?” He knew the term from soccer which had to be a strange coincidence considering their conversation just then. 
“The Blue Lock project, as you know, is a new youth program created by the Sibyl System to help at-risk youth with their CC’s, to stop you from becoming Latent Criminals before your hue deteriorates. We call the kids like yourself who are a part of such a program ‘Strikers’. Pretty cool name, huh?” She winked with a smile. “You’re not formerly an employee of the PSB but you’re not quite just a visitor either. So this is how Sibyl has decided to register you.” 
Isagi pocketed the I.D quickly, making sure it was in a safe place. “Oh wow, that’s pretty cool…A Striker, huh? I was told I would just be doing some volunteer work though, Striker sounds kind of…uh…” Violent. He hoped they wouldn’t be putting him to any real PSB work, like investigations. 
Anri laughed, and waved a hand dismissively. “Oh don’t worry, the name’s just a name. It means nothing. You will be doing volunteer work around your district. And you’ll be partnered up with another Striker so the work is not quite as hard. I’ll be overlooking you for the time being since leaving you unattended would be unwise.” She sighed with an eyeroll. “And kids are known to slack off when there are no adults nearby. But you seem like a good kid, Isagi! So I trust you to get your tasks done, even when my eyes aren’t always on you, okay?” 
Isagi chuckled, “Yes, ma’am.” He hoped this project would help, though with the way his CC had stagnated he didn’t have much hope to give.
…………………………………………………………………………………………..
“Bachira Meguru…Bachira Meguru…? Is there a Bachira Meguru here?” A voice from the front desk called out to him, though Bachira did not care. He was far too engrossed in reading whatever files he had managed to dig up on his personal holopad, his eyes greedily read over every word like a new novel he had picked up from a bookstore. Though this was no novel, rather the records of someone who he had never met. Marisa Hanamura…married….36…former bartender at one of those fancy nightclubs downtown, oh how interesting… His thoughts rattled an internal commentary as he read the files. 
It wasn’t until he felt a slight tap on his shoulder that he finally looked up to a very annoyed looking receptionist. “Excuse me?” Said the woman, a hand on her hip. “You’re Bachira Meguru, correct? Inspector Anri will see you now.” 
“Ah. Thanks!” Bachira quickly grabbed his backpack, and stuffed his holopad in it. Along with the other various knick-knacks he had pulled out while he was waiting. Snacks, candy, a game player that was paused immediately as soon as the file on Marisa Hanamura (former bartender and hostess for a fancy nightclub) had finished downloading. The receptionist scrunched her nose up at his messy display, before waltzing back to her desk. 
Bachira sped down the hall, not minding the weary plea from the reception desk about not running in the halls. He paid her no mind and continued onward. His journey was cut short as he bumped harshly into someone’s chest. 
“S-sorry!” The boy he had bumped into apologized to him with an awkward smile, though Bachira wasn’t sure of why he was the one saying sorry. He had dark hair, and very startling blue eyes that Bachira latched onto immediately. Before he could even reply, the boy was gone, and Bachira was standing in front of Anri Teieri’s door. He looked back to see where the boy had walked off too, but just as he craned his head the door slid open and he was greeted by a messy office, and a stern looking Inspector. 
Anri Teieri stared him down with crossed arms. “Bachira Meguru? You were supposed to be here at the PSB office an hour ago…” She said in a tight voice. 
Bachira chuckled sheepishly, as he scratched his head. He walked into the small office space, and sat down on the creaky wooden chair, and winced when he thought it would give out from his weight. “Sorry! I got a little side tracked is all. But I’m here now, so when do I start, chief?” He smiled, but it didn’t do much to lessen Inspector Anri’s annoyed look. 
“Geez…Anyways, since you’re so late we got most of your file ready. However I need-” 
“You need my personal report, right? I already have it right here.” Bachira dug around in his backpack for a bit, before slapping down a thick pile of documents onto Anri’s desk. She tentatively took it and leafed through the pages, her face contorted in confusion. 
“How did you…?” She asked as she scanned the pages. It wasn’t just one personal report, but multiple personal reports. From weeks and weeks ago, all detailing times Bachira had checked his hue. 
“Oh it was easy, I knew everything this meeting would entail weeks before I was asked to come here.” He explained. “It was all in your file!” 
“My file?” Anri threw the papers on the desk. “Looking through classified PSB documents is against regulation! You could seriously be charged for that!” 
Bachira scoffed, which seemed to make Anri even more upset. “I didn’t dig through anything the PSB held…it was just all on the net. You talk a lot about your job, especially on your blog. What was the handle again….?” Bachira put a hand to his chin in thought, but Anri looked as if she wanted to crawl into a hole just then. 
“Okay, okay enough! I…how did you even find something like that?” She asked him in an embarrassed tone. “I didn’t think anyone even knew about that dumb blog…” Bachira thought it was a miracle he even found it himself considering she only had 1 follower. And it was her mom. 
“I came prepared though, so…I feel like that should make up for being so late today! Please forgive me, chief!” He put his hands together and bowed his head, and Anri rolled her eyes. 
“I’m not the chief- oh nevermind. I suppose I can let this pass, just try not to make being late such a habit.” She said as she rubbed the bridge of her nose. “And stop snooping around people’s private blogs! It’s rude to spy on others, you know.” She scolded with a glare. “I’ll read over your uh…personal reports and type the latest one in. I told the last kid who came in here this, but starting next week you’ll be showing up here again for your assignments from the Blue Lock project. Here’s your I.D card.” She slid it over to him. 
Bachira studied the I.D card and then clipped it to the side of his backpack in one swift motion. “I need that to enter the PSB building, right?” He asked, to which nodded. She opened her mouth again to explain some other things, but Bachira was standing up already. “Don’t worry, I already know all about the Striker thing and whatnot because of…well you know, the blog. You should probably delete it later today!” He said, as his hand reached for the doorknob. “See you next week!” 
“Ah-wait!” But before Anri could call him back Bachira was gone down the hall again. Anri sighed and placed her head in her hands. She guessed that hoping all of the kids were like Isagi Yoichi was too much to ask. They can’t all be polite little angel’s I guess…Anri decided to check one last thing before clocking out for the night. As her hands flitted across the keyboard once more, she quickly brought up Bachira Meguru’s Psycho Pass scans. Whenever anyone walked through the hall, they were quickly scanned multiple times. Her eyes widened as she took in the numbers on the screen. 
99.7 
123.0 
40.5 
345
Bachira’s Crime Coefficient was random and erratic, it shifted multiple times seemingly for no real reason. Her eyes lingered on the 345, and she shuddered. If she had her dominator out she could’ve…She closed the entire PC down and decided to leave that worry for another day. Preferably next week when she would see Bachira Meguru again. Anri grimaced again as she also reminded herself to delete that blog…or at least private it so no one else could see her embarrassing rants. She supposed Bachira Meguru was just as wild and unpredictable as his Psycho Pass. 
20 notes · View notes
hydrus · 1 year ago
Text
Version 554
youtube
windows
zip
exe
macOS
app
linux
tar.zst
I had an excellent week. Some important bugs are fixed, and we have some basic support for CBZ and Ugoira files.
full changelog
bugs
I screwed up two important calls last week, in fixed-period checker timers and job statuses. If you had watchers not start, subscriptions with incorrect check times, and/or popup messages that threw display errors or wouldn't auto-dismiss, I am sorry! I didn't plan the changes here properly, and several things slipped through my tests.
All the affected systems have been given proper rework this week and have some unit tests to make sure this doesn't happen again. Please let me know if you still have any problems.
animations
I fixed up more of the 'while checking for transparency, this file produced x error!' issues. Checking GIFs for transparency should be a bit faster and more fault tolerant too, now.
Also, the native GIF renderer has much improved transparency support. The multilayered 'noclip' artifacts should be gone, and damaged GIFs will recover better. GIFs also now get thumbnails that are x% in with proper transparency.
Also, APNGs now get transparency: when rendering in the native renderer; in their thumbnails (which are also now x% in); and for 'has transparency' checks.
CBZ and Ugoira
I am adding basic recognition and thumbnails for these filetypes today. Behind the scenes, both formats are essentially just zips with a list of images, so all your zips will be scanned, and if they look like a CBZ or Ugoira, their filetype will change and they will get a thumbnail. Ugoira thumbnails will be x% in, like for other video.
Also, a user is working on true Ugoira rendering now, so I hope we will be able to finally roll this out in the medium term.
Unfortunately, neither format has a particularly definitive/unique specification, so while I have tried to be careful, my tests here are imperfect. We can expect a few incorrect determinations one way or the other. If you get an outrageous false positive or false negative here (e.g. something you know is a Ugoira that stays as a ZIP, or a ZIP of misc files that detects as a CBZ), please send in the details, and I'll see if I can tweak my tests.
next week
I put in extra time this week to figure out CBZ, so I'll let things breathe and just catch up on simple, small work. I have a bunch of interesting quality of life UI items in my immediate todo, so I'll probably focus on that!
2 notes · View notes
milfglupshitto · 2 years ago
Text
Writing Masterpost
Canon-Compliant Original Fiction
albatross: my longest fiction piece to date (6-7k words). link is the info post with all chapters, description can be found there.
bonus: visual profiles and notes for the original and not-quite original characters introduced in albatross
Canon-Divergent Original Fiction
burn it: not as long as albatross but still lengthy! same deal, link is the info post with all chapters and the description can be found there.
Canon-Adjacent Short Writing
the snare: technically can be read as speculative for Thrawn (2017) but accessible to those who haven’t read the book or have no familiarly with Star Wars at all
still on patrol: about a Star Wars vessel but you could probably read this without knowing any context beyond ghost ship cool.
Rebels Sequel Content
rebels sequel script: it’s in the dropbox link. ask me about the free program I used!
rebels sequel skeleton notes: more later-season plotlines and more discussion of themes
rebels sequel rogues gallery: breakdown of the thematic importance of various villains I would include given full creative control and permission from original creators + ability to adequately compensate them
more on bakokin tell: an original villain warrants more explanation
In Which I Describe the Content of a Thrawn-Adjacent Book Austistically
gender systems in Zahn’s books: long-ish brief look at fandom behaviors in relation to original text
deuteragonist meta: she’s even color-coded. I got diagnosed like a year later btw
outbound flight and survivor’s quest: I read some books in apparently the wrong order and made some themes about it
In Which I Describe the Content of a Thrawn-Adjacent Book Comedically
hand of thrawn duology: what it says on the tin
more of that but blended canon and EU this time: can you guess which books and characters I’m talking about? find out by clicking on the link!
alliances: hey it’s darth vader this time! everybody look at darth vader
alliances again: I think this one was actually the first like chronologically
Stand-Alone Content
thrawn gender rambling: approaches incoherence with astonishing speed. still, important to me
thrawn terrible childhood rambling: I’ll never pass up a chance to make him thematically better and emotionally worse
x files comparison: have you ever wondered what would happen if fox mulder had net zero swag? wonder no longer.
eli no bitches??? rambling: I think he genuinely has never had any friends. click the link to see me make my case
chess and checkers: more eli. checkers is very swagful to me
semiextragalactic force sensitivity rambling: brief speculation on support systems for parents of force sensitive children in communities detached from the Jedi Order
bonus: theoretical clone wars episode based on similar concept
hey so what’s the deal with the grafs actually: I read the whole adventures in wild space series and I’m still very skeptical of the whole everything
hey more wild space stuff: I see Lysatra and I put my looking eyes on
thoughts on modern vs classic star wars evil: on the heels of kenobishow, I had some thoughts
an interesting line construction in the Ronin novel, catalogued: also what it says on the tin
review of Shadow of the Sith: in short, there was a good bit I didn’t like
my Lesser Evil theory: so I was wrong. what about it?
the force as an overwriting pen: two small blurbs about being toyed with by something inconceivably more than you
luminous beings: a series of blurbs about non-force-sensitive acquiring force sensitivity
similarities between the Chiss and the Romans: I’ve been studying Latin for six years and I have problems about it
Hey, This Isn’t Star Wars
monsters vs aliens is a transgender allegory: you know I’m right.
you know surf’s up? the penguin movie? trans. gender. allegory: YOU KNOW I’M RIGHT. also, I know it’s not really writing. sue me
7 notes · View notes
atharva-thite · 2 years ago
Text
Search Engine Optmization
Search Engine Optimization (SEO)
HOW SEARCH ENGINE WORKS?
CRAWLING- Crawler/Bots/Spider search the data and scan the data from the server / Internet / web.
INDEXING- Indexing is to store data in search engine data base centre.
RANKING- Ranking is to show the result and give them ranking.
Techniques of SEO
White Hat SEO- It refers to any practice that improve your search ranking without breaking search engine guidelines.
Black Hat SEO- It refers to increase a site ranking by breaking search engine terms and services.
Black Hat SEO Types
Cloaking- It is the method of presenting users content that is different from search engine crawlers.
Content Hiding- This is done by same text colour as the background to improve ranking.
Sneaky URL Redirection- Door way pages are proper site that redirect to different page without their knowledge.
Keyword Stuffing- Practice of filling content with repetitive keyword in an attempt to rank on search engine.
Duplicate Content- It means to copy content from other website.
WHAT IS WEBSITE?
Domain- Domain is a simply name of the company.
Hosting- Hosting is a space or storage on server where we can store website.
Dealers of Domain and Hosting
GoDaddy
Hosting Raja
Hostinger
Blue Host
Name Cheap
WHAT IS SSL?
SSL Stands for Secure Socket Layer It is a technology for keeping an internet connection secure and sensitive data that is being sent between two system preventing criminals from reading and modifying any information transferred including personal details.
WHAT IS URL AND SUB DOMAIN?
URL- Uniform Resource Locater
Sub Domain- www,web,apps,m
KEYWORDS- Any query search in search box is known as keyword.
TYPES OF KEYWORD
Generic Keyword- It is used for brand name or general keyword it helps to balance your generic keywords to capture wide range of customer. Only one word is used.
Short Tail Keyword- These keywords are phase of two or three words.
Long Tail Keyword- Specific Keyword phase consisting more than three words.
Seasonal Keyword- These Keyword generate most of their search traffic during a specific time of the year.
GOOGLE SANDBOX EFFECT
It is a observation period done by the google to check whether your site is having any technical issues, fraud, scam and user interaction towards website.
SERP
Search Engine Result Page appears after some search something in the search box.
HTML
Hyper Text Markup Language
META TAG OPTIMIZATION
Title Tag- Digital Marketing
Meta tag- content=………….150 to 170 characters
FTP TOOLS
Core FTP
Filezilla
INDEXING AND CRAWLING STATUS
Indexing Status- Status which shows exactly when the site is stored in data base centre.
Crawling Status- Status which gives information about recent crawling of our website. eg. site:abc.com.
KEYWORD PROXMITY
It refers to distance between keywords.
Keyword Mapping
It is the process of assigning or mapping keywords to a specific pages of a website based on keyword.
IMAGE OPTIMIZATION
ALT Tag- It is used for naming images also known as alt attribute
<img src=”digital.png”alt=”name/keyword>
Image compressing-The process of reducing image size to lower the load time.
Eg. Pingdom- To check load time.
       Optimzilla- To compress image.
Robot.txt
It is a file in which instructions are given to the crawler how to crawl or index the web page it is mainly used for pages like privacy policy and terms and conditions.
Robots meta Tag
They are piece of core that provide crawlers instruction for how to crawl or index the content. We put this tag in head section of each page it is also called as no index tag.
<meta name=”robots”content=”nofollow,noindex……………../>
SITE MAPS
It is list of pages of website accessible to crawler or a user.
XML site map- Extensible Markup Language is specially written for search engine bots.
HTML site map- It delivers to user to find a page on your website.
XML sitemap generator
CONTENT OPTIMIZATION
Content should be quality content (grammarly)
Content should be 100% unique (plagiarism checker)
Content should be atleast 600-700 words in web page.
Include all important keyword.
BOLD AND ITALIC
<b>Digital Marketing</b>   <strong>……………</strong>
<i>Digital Marketing</i>      <em>………………</em>
HEAD TAGGING
<h1>………..</h1>          <h5>…………</h5>
<h2>………..</h2>           <h6>………..</h6>
<h3>…………</h3>
<h4>…………</h4>
DOMAIN AUTHORITY(DA)
It is a search engine ranking score developed by moz that predict how website rank on SERP.
PAGE AUTHORITY(PA)
It is a score developed by moz that predict how well page will rank om SERP.
TOOL- PADA checker
ERROR 404
Page not found
URL is missing
URL is corrupt
URL wrong (miss spilt)
ERROR 301 AND 302
301 is for permanent redirection
302 is for temporary redirection
CANONICAL LINKS
Canonical Links are the links with same domain but different URL it is a html element that helps web master to prevent duplicate issues in seo by specifying canonical version of web page.
<link ref=”canonical”href=https://abc.com/>
URL STRUCTURE AND RENAMING
No capital letters                    5. Use important keyword
Don’t use space                      6. Use small letters
No special character             
Don’t include numbers
ANCHOR TEXT
It is a click able text in the hyperlink it is exact match if include keyword that is being linked to the text.
<a href=”https://abc.com”>Digital Marketing</a>
PRE AND POST WEBSITE ANALYSIS
PRE- Domain suggestions and call to action button
POST- To check if everything is working properly
SOME SEO TOOLS
SEO AUDIT AND WEBSITE ANALYSIS
SEOptimer
SEO site checkup
Woorank
COMPITITOR ANALYSIS AND WEBSITE ANALYSIS
K-meta
Spyfu
Semrush
CHECK BACKLINKS
Backlinks watch
Majestic Tool
Backlinks checkup
CHECK WEBSITE LOAD TIME
GT-Matrix
Google page insights
Pingdom
PLUGIN OR EXTENSION
SEO quacke- site audit and web audit
SERP Trends- To check ranking on SERP
SOME GOOGLE TOOLS
Google search console
Google Analytics
Google keyword Planner
2 notes · View notes
jaymes-baker · 2 years ago
Text
General Device Maintenance for Windows
It is common for people to think they need a new laptop or desktop after a few years of use, and it is running slow. However, I’m going to show you a few tricks that I have perfected over the years to help a machine run in tip top shape. These are especially great to do after you have been uninstalling and reinstalling video games on them or just general use from office activity. These are, in my professional experience, the General Maintenance your company should be running on their Windows machines once a year, but probably is not…
-Work Machine-
Please note that for any commands I’m referencing to with quotes, you will not enter the quotes, it’s just the industry standard when specifying a string of data. We’ve all been there, on a work machine and it’s locked down on the permissions. Great news, you can run “gpupdate /force” (Group Policy Update) from Command Prompt. It’s pretty fast and either works or gives you an error that you can screenshot and send to your Service Desk, saving a ton of time. Fundamentally what it does is checks with your company’s server to make sure your computer follows the parameters of the domain. It’s typically the first thing your IT person will run and can be done with any account.
-Personal Machine-
If you haven’t already done it, you should uninstall any Bloatware. This is software that came on your computer when you got it, you don’t necessarily need or use it and it doesn’t seem to contribute to how your computer runs the way you are going to use it. Navigate to the “uninstall a program” area of your Control Panel and you will see the list, then just right click > uninstall (sometimes with stuff like Office there is a “Repair” option). If you see “Wave Browser” while in the control panel you will want to get rid of that at once and run a malware scan; actually, if you see any program you don’t recognize, Google it and/or the publisher to check that it’s legitimate or see what it does. (Note: modern browsers have Java built in, you no longer need it installed on your machine.) You may also have to do it from what we used to call the “Start” area and have no idea why they changed it, er the windows icon and “All Apps”.
-Light Clean-
Clearing your temp folders might seem like it’s not that important, but the closer your SSD drive gets to 50% the slower it performs. This is the random cache your computer stores during regular use of moving files, installing programs, error logs…etc. You’d be surprised at just how junked up they can get, I’ve seen them take up to 8GB worth of data.
From any account: Go to start > Run and type in “%temp%”. (The actual path is “C:\Users\\AppData\Local\Temp”)
With administrative rights, follow the same steps but instead type “temp”.(“C:\Windows\Temp”)
-Update Drivers-
If it’s not one thing, it’s the drivers. Easiest way you can check is to look for a caution mark on one of the listed items in the Device Manger; you might have to drop down the tree. These are the kernel code that binds your operating system and programs with the motherboard. You can set them to auto update, but sometimes the list doesn’t synchronize. Some laptops such as Lenovo have a program that you can download from their website or find in the Microsoft Store like “Lenovo Vantage” and it can be ran from a user account. If you want to look for them yourself the command is: “wmic bios get serialnumber”. The top two to look for and download if they have a newer version are the BIOS and Firmware/Chipset Management Engine.
-More in Depth Commands-
(You will need administrative rights)
Similar to Linux there are terminal commands that are native to the Windows environment that you can run to improve your system. To run these, go to start > Command Prompt > right click > run as administrator:
#1 System File Checker = "sfc /scannow"
This one will take roughly 10 minutes but it’s safe to use the machine while it runs; however, I wouldn’t install anything while it goes. It basically goes through your filesystem and makes sure everything lines up the way it should be, the right system files point to the correct location and there’s no junk files that shouldn’t be there linking to something else. This is just layman’s term, and feel free to look into it more but I assure you it’s perfectly fine to run even if you don’t know what you’re doing.
#2 DISM = "dism /online /cleanup-image /restorehealth"
It can take 15 to 45 minutes, depending on how bad your machine is, but again it’s safe to use while it runs. This connects with the Microsoft servers responsible for updates and ensures that your operating systems image matches the lines of code it should have. You can actually do a lot with dism commands.
#3 Check Disk = "chkdsk /f /r /x" (stands for: find, repair, dismount)
Please note that you will not be able to use the machine until it’s finished running and it can take up to an hour. It should automatically restart your machine after entering it so make sure to save and close everything beforehand. It sometimes gets stuck at “100%, please do not turn off or restart your machine”, but it’s safe to hard reset (press the power button or pull cord). This checks your hard drive for any irregularities and makes sure nothing is corrupt or damaged. There are several ways to run this, however this is the one I find most useful as it runs it at a very low level right after bios when it is loading the kernel (code that makes hardware talk to software).
#4 Cipher = "cipher /w:c:\"
This one will take a while, like up to 2 hours, and I wouldn’t plan on using it, so it goes faster. For when you drastically want to really clean your hard drive to sell or donate This command wipes the dark void of the strange quarks files turn into after the recycling bin. Basically, preventing anyone from restoring anything you deleted and maximizing the free space available in some parts per million way. — And that’s pretty much it! There are a few snazzy programs that I will leave below to help keep your computer stay in shape and safe. Other than that, Congratulations!!! You could be an entry level IT person now.
Noteworthy programs: ATF Cleaner, JRT Remover, Glary Utilities, CCleaner and Malwarebytes
3 notes · View notes
maxpctools · 2 years ago
Text
Tumblr media
Sunbelt Personal Firewall Free Download
Users can regulate how their computers communicate with other computers on the Internet or in a local network with the aid of Sunbelt Personal Firewall. It is intended to defend your PC against assaults coming from both the Internet and other local network machines.
Sunbelt Personal Firewall manages all information transfer in both directions—from the Internet to your computer and vice versa—and can block all attempted contact while allowing only what you want to allow. This makes it an ideal choice for notebook computers that freely enter and exit the business network and are exposed to varying risks as a result of their connections from various locations.
Features of Sunbelt Personal Firewall:
Packet filter Control of file integrity Control over application communication Management of application launch System for preventing network intrusions Checker for automatic updates Long-term logging
1 note · View note
pentesttestingcorp · 1 day ago
Text
Fixing Insufficient Logging and Monitoring in Laravel
Insufficient logging and monitoring is a common vulnerability that can lead to missed or delayed detection of security incidents in web applications. In this blog, we’ll explore how Laravel developers can mitigate this issue with practical coding examples and introduce a free Website Security checker tool to evaluate your website's vulnerabilities.
Tumblr media
What is Insufficient Logging and Monitoring?
Insufficient logging and monitoring occur when an application fails to:
Record critical events like authentication attempts, permission changes, or system errors.
Generate alerts for unusual activities.
Monitor logs for anomalies or breaches.
Without proper logging and monitoring, organizations may remain unaware of attacks, compromising their ability to respond to and mitigate potential damage.
Impact of Insufficient Logging and Monitoring
Delayed Incident Response: Attack detection is slower, giving attackers more time to exploit vulnerabilities.
Compliance Issues: Many regulations (e.g., GDPR, HIPAA) mandate robust monitoring systems.
Reputation Damage: Customers lose trust after unreported breaches.
How Laravel Handles Logging
Laravel uses the powerful Monolog library for logging, supporting multiple log handlers such as files, databases, or external tools like Slack. Laravel’s configuration files for logging are stored in:
config/logging.php
Steps to Mitigate Insufficient Logging and Monitoring
Enable Detailed Logging Configure logging levels based on your environment. Laravel supports levels like debug, info, notice, warning, error, etc. Example: Setting Up Logging in Laravel In the config/logging.php file:
return [ 'default' => env('LOG_CHANNEL', 'stack'), 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['daily'], ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', // Adjust as needed 'days' => 14, ], ], ];
This setup logs events daily and retains logs for 14 days.
Log Critical Events Ensure important actions are logged. For example, log login attempts and failed logins:
use Illuminate\Support\Facades\Log; // Successful Login Log::info('User logged in', ['user_id' => auth()->id()]); // Failed Login Log::warning('Failed login attempt', ['email' => request('email')]);
Monitor Logs and Generate Alerts Use tools like Laravel Telescope to monitor logs. Install Telescope via Composer:
composer require laravel/telescope
Publish its assets:
php artisan telescope:install php artisan migrate
Enable Telescope in production by modifying the telescope.php configuration file.
Using Free Tools for Security Checks
To ensure your Laravel application’s logging and monitoring setup is effective, it’s crucial to identify potential vulnerabilities. Our Website Security Scanner can help.
Tumblr media
Screenshot of the free tools webpage where you can access security assessment tools.
Real-World Example: Logging Suspicious Activity
Here’s how to log suspicious activity in Laravel:
use Illuminate\Support\Facades\Log; // Log suspicious activity function detectSuspiciousActivity($user) { if ($user->login_attempts > 5) { Log::alert('Suspicious login activity detected', [ 'user_id' => $user->id, 'email' => $user->email, ]); } }
Sample Vulnerability Report
Using our tool, you can generate a detailed vulnerability assessment report, highlighting areas like insufficient logging.
Tumblr media
An example of a vulnerability assessment report generated with our free tool provides insights into possible vulnerabilities.
Conclusion
Insufficient logging and monitoring are critical vulnerabilities that developers must address to ensure their Laravel applications remain secure. By implementing proper logging, monitoring logs, and using tools like Laravel Telescope, you can mitigate risks effectively.
Don’t wait—try our free Website Security Checker tool today to identify vulnerabilities in your application and improve your security posture!
1 note · View note