Mastercard security code wont work

FreeBSD

2008.05.25 08:34 FreeBSD

Unofficial subreddit for the FreeBSD Project
[link]


2008.06.04 11:55 cryptography

For people interested in the mathematical and theoretical side of modern cryptography.
[link]


2022.08.26 16:14 sinbad3140 Character.AI

Character.AI lets you create and talk to advanced AI - language tutors, text adventure games, life advice, brainstorming and much more.
[link]


2024.05.15 08:12 groingroin Face ID not working after 17.5 (21F79)

Upgraded to iOS 17.5 right after release. Woke up this morning and wanted to check notifications. Face ID is broken. Enter code. Later Face ID is still broken and still entering code to connect. Rebooted the phone. Still same. Tried to reset Face ID but had to wait the security timeout: for whatever reason, my iPhone thinks I’m elsewhere but at home (I work from home since 1 year and merely go to workplace 🤷‍♂️). Never had such thing on my 15pro with previous releases. Amazing Apple can’t test correctly such critical and selling feature. Am I the only one to experience this ? Or is it a backend problem at Apple ?
submitted by groingroin to ios [link] [comments]


2024.05.15 08:10 loganowen770 Transform Your Assignments: Exclusive 20% OFF on Wireshark Tools

Welcome, students, to a world where understanding computer networks isn't just about theory, but about hands-on experience. At computernetworkassignmenthelp.com, we pride ourselves on providing comprehensive assistance to students struggling with their computer assignments. Today, we're thrilled to introduce an exclusive offer that will revolutionize the way you approach your assignments. Dive into the world of Wireshark, the ultimate tool for network analysis, and witness the difference it makes in your learning journey.
Wireshark Assignment Help:
Understanding computer networks often requires more than just reading textbooks or attending lectures. It demands practical knowledge and expertise in tools like Wireshark, which allow you to analyze network traffic with precision. Whether you're grappling with packet sniffing, network troubleshooting, or protocol analysis, our team of experts is here to guide you every step of the way. With our Wireshark assignment help services, you can gain a deeper understanding of networking concepts and excel in your coursework.
Why Wireshark?
Wireshark isn't just another tool in the arsenal of network engineers; it's a game-changer. With its intuitive interface and powerful features, Wireshark empowers users to dissect network protocols, troubleshoot network issues, and analyze security vulnerabilities. From beginners to seasoned professionals, Wireshark caters to all levels of expertise, making it an indispensable tool in the world of computer networking.
Exclusive Offer: 20% OFF on Wireshark Tools
As a token of our appreciation for your trust in our services, we're excited to announce an exclusive offer on Wireshark tools. For a limited time, use the referral code WAHFF20 to avail yourself of a 20% discount on all Wireshark-related assignments. Whether you're struggling with capturing packets, decoding protocols, or interpreting network traces, our experts are here to provide personalized assistance tailored to your needs. Don't miss out on this opportunity to transform your assignments and elevate your understanding of computer networks.
Benefits of Choosing Us:
  1. Expert Guidance: Our team comprises seasoned professionals with years of experience in computer networking and Wireshark analysis. Rest assured, you're in capable hands.
  2. Customized Solutions: We understand that every assignment is unique. That's why we offer personalized solutions tailored to your specific requirements, ensuring maximum satisfaction.
  3. Timely Delivery: We value your time as much as you do. With our prompt service and efficient workflow, you can expect timely delivery of your assignments without any compromise on quality.
  4. 24/7 Support: Have a question or need clarification at any hour? Our dedicated support team is available round the clock to address your concerns and provide assistance whenever you need it.
How to Avail the Offer:
  1. Visit our website, computernetworkassignmenthelp.com.
  2. Choose the Wireshark assignment help service that suits your needs.
  3. Use the referral code WAHFF20 during checkout to apply the 20% discount.
  4. Sit back and relax while our experts work their magic on your assignments.
Conclusion:
In the ever-evolving landscape of computer networking, staying ahead of the curve is essential. With our Wireshark assignment help services and exclusive discount offer, you have the opportunity to sharpen your skills, overcome challenges, and emerge as a confident, competent professional. Don't let assignments bog you down; embrace the power of Wireshark and unlock new possibilities in your academic journey. Transform your assignments today and embark on a path to success with computernetworkassignmenthelp.com.
submitted by loganowen770 to u/loganowen770 [link] [comments]


2024.05.15 08:05 tempmailgenerator Enhancing Data Integrity in Protocol Buffers with Email Validation

Unlocking Data Precision with Protocol Buffers

In the realm of data serialization, Protocol Buffers, or Protobufs, have emerged as a cornerstone technology, offering a lightweight, efficient, and language-agnostic format for structuring and transmitting data across various systems. Developed by Google, Protobufs serve as a compelling alternative to XML and JSON, focusing on minimizing message size and processing time. Their design allows for clear, precise definitions of data structures with the added benefit of generating source code for the most popular programming languages, thereby ensuring seamless integration and data manipulation across diverse computing environments.
However, the utility of Protobufs extends beyond mere data serialization. A significant aspect of leveraging Protobufs effectively involves enforcing data integrity and validation rules, such as email validation within serialized data. This layer of validation is crucial for applications that rely on accurate and validated user input, especially for fields that require specific formats, like email addresses. By embedding validation rules directly within Protobuf definitions, developers can ensure that data adheres to specified constraints from the get-go, thus enhancing the reliability and robustness of data communication protocols.
Command Description
message Defines a message type in Protobuf, which is a data structure similar to a class in object-oriented languages.
required Specifies that a field must be provided and cannot be left unset when the message is serialized.
string Indicates the type of a field that holds a sequence of characters, used for text.
pattern Used in validation frameworks that work with Protobuf to define a regex pattern a string field must match.

Implementing Email Validation in Protobuf

Protobuf schema definition
message User { required string name = 1; required string email = 2 [(validate.rules).string.pattern = "^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$"]; } 

Deep Dive into Protobuf Email Validation

Protocol Buffers (Protobuf) provide a systematic way of encoding structured data, especially useful in the context of network communication and data storage where efficiency is crucial. At its core, Protobuf allows for the definition of structured data schema through .proto files, which then can be compiled into code in various programming languages. This process ensures that the data structure is maintained across different systems, offering a robust mechanism for data serialization and deserialization. When it comes to enforcing data integrity and validation, Protobuf itself does not natively support complex validation rules out of the box. This limitation necessitates the integration of additional validation logic either at the application level or through the use of custom options in .proto definitions.
To address the need for sophisticated data validation, such as verifying that an email address fits a specific format, developers can leverage extensions and third-party libraries designed to augment Protobuf's capabilities. For instance, by defining custom validation rules, such as regex patterns for email addresses, within the .proto file, one can ensure that the data adheres to certain standards before it is processed by the application. This approach not only streamlines data validation by catching errors early in the data handling process but also enhances security by preventing invalid or malicious data from penetrating the system. Ultimately, incorporating email validation directly into Protobuf definitions promotes a more secure, efficient, and reliable data communication strategy.

Exploring Protocol Buffers and Email Validation

Protocol Buffers (Protobuf) offer a high-performance, language-neutral, and platform-neutral mechanism for serializing structured data, similar to XML but smaller, faster, and simpler. At its core, Protobuf allows developers to define data structures in a special language and compile them into native code for various programming environments, enabling seamless data exchange across disparate systems. This efficiency makes Protobuf an ideal choice for developing complex applications, where data integrity and validation are crucial. For instance, integrating email validation within Protobuf schemas ensures that only valid email addresses are processed, significantly reducing the potential for errors and improving overall data quality.
Email validation in Protobuf can be implemented through custom validation rules or by integrating with external validation libraries that extend Protobuf's functionality. This approach allows developers to specify complex validation patterns, such as regex for email addresses, directly within their Protobuf definitions. This built-in validation mechanism is particularly useful in microservices architectures, where data consistency across services is paramount. By enforcing data validation rules at the serialization level, Protobuf helps maintain a high level of data integrity and reliability across the network, laying a solid foundation for robust and error-resistant applications.

Frequently Asked Questions on Protobuf and Email Validation

  1. Question: What are Protocol Buffers?
  2. Answer: Protocol Buffers are a method of serializing structured data used by Google for nearly all of its internal RPC protocols and file formats.
  3. Question: How does email validation work in Protobuf?
  4. Answer: Email validation in Protobuf typically involves specifying regex patterns in the schema definition that match valid email formats, which are then enforced during data serialization.
  5. Question: Can Protobuf handle complex validation logic?
  6. Answer: Yes, with the help of custom options or integration with external libraries, Protobuf can handle complex validation logic, including custom regex for emails.
  7. Question: Why is data validation important in Protobuf?
  8. Answer: Data validation ensures the integrity and correctness of the data being serialized and deserialized, which is crucial for maintaining application reliability and performance.
  9. Question: How does Protobuf compare to JSON and XML?
  10. Answer: Protobuf is more efficient than JSON and XML in terms of both size and speed, making it suitable for high-performance applications.
  11. Question: Is Protobuf only used by Google?
  12. Answer: While developed by Google, Protobuf is open-source and widely used by various organizations for data serialization.
  13. Question: Can Protobuf be used with any programming language?
  14. Answer: Protobuf supports generated code in multiple languages, including C++, Java, Python, and more, making it highly versatile.
  15. Question: What is the advantage of using Protobuf for microservices?
  16. Answer: Protobuf facilitates efficient and reliable communication between microservices, thanks to its compact format and support for data validation.
  17. Question: How can I define an email field in Protobuf?
  18. Answer: An email field can be defined as a string with a regex pattern option to validate its format.

Wrapping Up Protocol Buffers and Validation

As we've explored, Protocol Buffers, with their efficient data serialization capabilities, play a pivotal role in the development of scalable and maintainable applications. The ability to enforce data integrity through validation rules, especially for critical data types like email addresses, underscores the versatility and power of Protobuf. This technology not only ensures that data is compact and fast to transmit but also maintains its correctness across different parts of a system. By leveraging Protobuf for both its serialization efficiency and its validation capabilities, developers can create more reliable and secure applications. This dual functionality makes Protobuf an invaluable tool in the modern developer's toolkit, facilitating better data management and communication in a wide range of applications, from microservices to large-scale distributed systems. The key takeaway is that Protobuf offers more than just a method for structuring data; it provides a comprehensive solution for ensuring data validity and integrity, which is critical in today's digital landscape.
https://www.tempmail.us.com/en/protocol-buffers/enhancing-data-integrity-in-protocol-buffers-with-email-validation
submitted by tempmailgenerator to MailDevNetwork [link] [comments]


2024.05.15 08:04 TurtleKing0505 Game: Prison Break

Venue: A high-security prison
Player Count: 20
Difficulty: 10 ♣
Time limit: 120 minutes
Clear Condition: Escape the prison before the time limit expires, at which point the collars fastened to the players' necks will explode.
The prison is very difficult to navigate, amd many doors are locked, requiring players to work together to find keys or codes to make progress.
There is also a group of eight heavily armed masked guards who will attempt to kill the players on sight and prevent their escape.
They are able to track the players' movements via security cameras, so players must take care to avoid them.
submitted by TurtleKing0505 to AliceInBorderlandLive [link] [comments]


2024.05.15 08:03 itsmeriky MakeItHome for macOS is now open source

MakeItHome for macOS is now open source
Hello,
MakeItHome, available on the App Store, has its source code finally available on GitHub: https://github.com/Geckos-Ink/MakeItHome
I have difficulties to complete the 2.0 release, so I hope that someone interested on the project can help me to implement and improve already existing aspects of this UI extender. Finally, the facts that to work the app requires the screen recording permission can undermine user trust. I hope that, in this way, this app can directly demonstrate that is secure for user's privacy.
You are free to clone it, compile it and try it by yourself.
ASAP I'll write the documentation (and I'll tidy up the code).
I just hope that this post doesn't pass as spam, because I'm quite exasperated by the discrimination of reddit moderators towards those who talk about their creations.
Thank you!
submitted by itsmeriky to macapps [link] [comments]


2024.05.15 07:57 TwoToOblivion Data Management - Applications - D427 (Dan's Guide)

Start Date/End Date: 4/19/24 - 05/13/24 (~3 Weeks)
Study Time: 10-20 Hours
Coaching Report
Overview:
As many of you probably will, I took this class immediately after D426. I thought I was gonna finish this class much quicker than I did. Most of the reason it took me longer was due to unrelated things occurring in my life, but I digress. If D426 is the "why' behind SQL, this class is the "how." The exam is 25 questions long and more than half of those questions will have you actually writing SQL statements. This was a big adjustment because when studying for D426, I didn't do any labs. Writing SQL statements was something that took a while to "click," but when it did, things got a lot easier. Knowing when to use quotes, parentheses, and commas was my main issue.
Studying:
I recommend using the Chapter 7 and Chapter 8 labs in Zybooks. If you need to, you can also read over Chapters 1 & 2, but the labs should be your main focus. These labs are very similar to the questions in the Pre-Assesment, which was similar to the Objective assessment. When I first did these labs, I would look over the corresponding lesson and try to answer them on my own. 9/10 times, my statement was wrong. I then checked this quizlet for the correct statements (since Zybooks won't tell you). I would review it and try and figure out why their statement was correct and why mine was wrong. I went over all the labs at least 3-4 times before taking the Pre-Assesment. Once I took the Pre-Assesment, I used ChatGPT to get the correct answers for the questions I missed (since once again, you can't see what the right answers are). Be aware that in my experience, there are a couple of questions on the PA (and probably even the OA) where you can answer the question 100% correctly but still be marked wrong because you didn't do it the way they wanted you to. This is my biggest issue with this class and I really hope this gets fixed.
Exam:
As for the exam, my biggest piece of advice is to run a second statement to check your answers. If you have a question where you need to create a table, add columns, or update data types and need to review the Columns/Data types, run a second statement where you type
DESCRIBE table_name
If you have a question where you're inserting/changing/updating rows & values and want to see the data within a table, run a second statement where you type.
SELECT *
FROM table_name
You can also do this before and after your initial statement to ensure that the data actually changed. If you do this, MAKE SURE TO DELETE THE SECOND STATEMENT AFTER TESTING IT. I also ran my code again after deleting it just to be safe. If you don't delete your statement, the question will probably be marked entirely wrong. Also, don't worry about this taking up your time, you get like 4 hours for this exam.
In addition to what's in the labs, you should how to write different aggregate functions (Min, Max, Sum, etc.) and how to delete a table entirely. There are also multiple-choice questions, but it's probably less than 10. If you passed D426, these shouldn't be a huge deal. They'll probably be similar to the ones that appeared on the PA.
Conclusion: I actually grew to sort of enjoy writing SQL statements after this class. However, the questions can be very tedious and I don't believe there is much partial credit. You have to be very careful not to make any typos and to answer the question how you think they want you to answer it. I think this class would work far better as a Performance-Assesment rather than an objective one. Something where you have to create a project in SQL would be much more enjoyable in my opinion. But as of right now, as long as you review and understand the labs and Pre-assessment, you should be able to pass this one.
submitted by TwoToOblivion to WGU [link] [comments]


2024.05.15 07:55 Scared-Soup-9121 A Complete Guide to Understanding PCI DSS Certification

What is the Certification for PCI DSS?
PCI DSS Certification in Somalia - Adherence to a set of security guidelines intended to safeguard cardholder data during payment transactions is referred to as PCI DSS certification. To guarantee the safe processing of payment information, major credit card companies including Visa, Mastercard, and American Express have set these criteria.
How to get a PCI DSS consultant for Business ?
You may depend on respectable consulting companies like B2BCert Consultants, who are global in scope and provide a variety of services, including PCI DSS certification consulting, if you need a PCI DSS Consultants in Bangalore for certification.Contact B2BCert Consultants using the information on their website or supplied contact details. You can enquire about their availability, experience, and PCI DSS certification services.Given its reputation as a reliable company providing ISO certification services, B2BCert Consultants probably employs knowledgeable consultants who are conversant with PCI DSS regulations. Find out about their past successes obtaining certifications and working with comparable companies.
submitted by Scared-Soup-9121 to u/Scared-Soup-9121 [link] [comments]


2024.05.15 07:42 kapone3047 Decent income but little wealth, what should I do with a possible small windfall?

Health crises and other unexpected life events that forced long breaks from paid work, have meant my wife and I are far financially behind where we hoped to have been by the time we reached our 40s.
I'm not salty about this. I know many stories of people who went through similar and didn't make it through as well as we did. We've got a secure housing situation, improving health, and putting food on the table is never concern (even if sometimes bills can hit hard). That wasn't the case for many years, so we're thankful for that. Saying that, we're definitely not hardcore frugalists with milkcrates for furniture and a house full of Facebook marketplace finds.
We've got a household income of ~$160k (most of that is my income), weekly mortgage repayments of ~$900 on a $585k loan against a $620k 1960s home that we expect to be our forever home. We have no other debt, but also no other significant assets (other than super, which isn't huge).
There is a good possibility that in the near future, I could receive a one-off windfall. Nothing huge, somewhere around $50K-80K. This would be subject to CGT.
Given the amount of stress caused by defaulting on our first home, I'm very keen to get our mortgage balance low as soon as possible, and plan to refinance once our equity in the home is great enough that we wouldn't be looking at LMI. For this reason, I'm tempted to put all, or most, of this windfall money onto the loan, but I'm not sure if that's really the smartest thing to do.
Note, while I have a good income now, I would like to make a career change within the next few years, possibly with study beginning as soon as next year. With this change will come a significant wage decrease (but I'll be doing something I love, as opposed to a job where the stress is affecting my mental health significantly). I'm hoping that over that same time my wife will grow her wage, but that won't happen without her making a significant job change either.
So, do I throw the money all at the loan? Some of it? Throw it all in an offset? Invest it in something? Or use it to help ease the transition with a career change? What would you do?
submitted by kapone3047 to AusFinance [link] [comments]


2024.05.15 07:26 DarthCookieThief Help me keep my cat fed and keep a roof over our head!

Help me keep my cat fed and keep a roof over our head!
GoFundMe: https://gofund.me/5d965c3b
Hi, my name is Dylan
I recently took in a stray I lovingly call Luna that was abandoned in the woods near my apartment complex, she'd come around every night to say hi and Christmas night she was brave enough to make her way inside and so I rushed her to the vet Christmas morning to get a full checkup and she's been with me ever since. She's been my sweet little girl and Christmas miracle.
Around this time however I was laid off from my Sales job because the company came under fire and received a class action lawsuit pending against them which left me destitute and with no real way to take care of my bills besides savings.
Ever since then I've been hunting for work locally and remotely with no luck until I found a position for another business with a start date of 05/13, unfortunately for me about two weeks prior to this is when my medical issues began, I'd come down with a wicked and harsh skin infection that had me constantly suffering until I eventually spoke to a doctor, was ignored and wound up at the ER with no answers before I found a Derma that was willing and able to help. All without insurance and looking forward to starting my new job. Only to be told that because I have a doctor's appointment they'd be refusing to start me implying that would be too soon for any time off even with a doctor's note so they refused to start me on the job I was relying on.
I'm now left getting evicted from my home and with no way to provide for my little girl or afford a move across country to get back to my family and find some stability in my life. I'm begging you if there's anything you can spare or you're in a position to help please do what you can or are able to.
The funds will be used carefully to feed Luna, make sure she has everything she needs and secure a safe move across country for me and pay for some groceries so I'm not starving. I won't pretend to not know what it's like when you can't spare much so if you can't well wishes are always appreciated as well! Spread the word!
submitted by DarthCookieThief to gofundme [link] [comments]


2024.05.15 07:20 whiplash-willie Autel and 3.6 Pentastar Cam Data

TLDR: Trying to figure out which scan tool from Autel or others can show cam desired versus actual on 3.6 Pentastar.
Following up on some major seevice work at 171k miles on 2014 Wrangler 3.6 / auto and need some advice please:
Changed plugs, coils, injectors, oil cooler (dorman aluminum version) timing set (Melling) and cam phasers with new control valves (Standard Motor Products).
I don’t do this for a living but am definitely on the serious side of amateur / hobbiest. I’ve probably rebuilt to spec several dozen engines ranging from 1970’s Jaguars through FJ40’s lots of GM products in 4,6,8 cylinders, light truck and commercial diesels and powerstroke Diesels. I’ve never had a failure to start, run, or last. I have and followed factory service manual for the JK Jeep. I should have been able to do this!
Startup was rough but after a few attempts at cranking she bled the injectors and fired right up. Idles smoothly. Oil pressure 91-95 PSI cold and 25-30 hot at idle. Battery and alternator voltage good (don’t recall exact value). Within a 1/4 mile I was in limp mode with traction control and check wngine lights on. All of the codes are P000a-d. “Camshaft Slow Response”. Engine runs smooth through 5000+ rpm, but shifts are limited to 4th gear. So I drive to work 18 miles each way. Next day the lights go off and everything is golden. After 3-4 restarts, limp mode is back and wont go away!
Factory service manual says oil change, then replace pcm. Nope, not at those $$. I want to know what is wrong! So I do a bit of parts cannon…. New cam position sensors, although the fault seems to be on all 4 randomly. JSCAN only says “at least one fault has been counted in this position recently”. New crank position sensor. New cam VVT Solenoids. No Changes.
Then I start tracing grounds from the solenoids and get some intermittent high resistance. Ive had weird groundingg problems before, and I realized that my battery cable terminal negative side isnt clamping well. I can lift it off the post. The harness is generally crunchy and shitty from 10 years in desert heat, so I decided to re-do them.
Pulled the entire wiring harness off the engine and yanked the battery cables out. Replaced them with 2awg and bolt-down terminals. Continuity checked every ground terminal pin to pin. No fails. Same on the power side.
Fun side note, the 2014 Factory Wiring diagram has a major typo in showing incorrect ground terminal locations!
So, put that all back, pulled valve covers again, checked timing marks against youtube. It all seems right. I did not pull the timing cover again. I did clean the bits of metal powder off the camshaft tone rings with paper towel and brake clean. Restart engine. Starts instantly. Cam rattle for about 1 second, perfectly smooth idle. Same codes within 45 seconds.
So, i need a scan tool. Factory service manual says to check desired versus actual cam and crank positions. My old scan tool was PC based AutoEnginuity, but I hate the PC aspect and the subscription lapsed about 8 years ago. So im looking at Autel, but overwhelmed by all the options with very little info.
Can anyone tell me what level of Autel can show that live position versus desired position? Should I look elsewhere?
Mechanically, can you tell me if it is possible to overtorque an oil control valve? I keep wondering if the cam phasers could be dragging because they might be too tight? But if you grab the cam with a wrench, it moves easily and moves the phaser, so the lock pins are seated.
Cost isn’t a huge concern, especially if I can find a tool with longevity, but I cant use it for work, so it wont pay back / trying to avoid the Snap-off-in-you van. I can go a long way into trying to squeeze another 150k miles out of this rig before I lay down for a new Jeep at $75k plus!
Thank you for any and all advice and ideas. Brainstorming will help and I’m grateful for it.
submitted by whiplash-willie to MechanicAdvice [link] [comments]


2024.05.15 07:15 d3vi1ma7cr7 Bosses didn't train me enough.

I don't think this would count as malicious compliance, but I think I'd be doing my company a favor with it, and somewhat stick it to my bosses who likely would take issue with it. I generally like my job and my bosses. This is moreso a result of my district manager; let's call him John. That's not to say I wasn't, at fault. I did in fact fuck things up royally, with no one to blame on certain aspects but myself. A while ago, I wanted to become a key carrier for my store, I thought it'd be nice to earn 25 more cents for every hour at my store, and be a bit more capable. For context, the company uses an online training system we're expected to do at work when we have no customers, or, if it wasn't a station that dealt with customers, just straight up nothing to do. Becoming a key carrier was something you had to go out of your way to find on the training site, and do. Finding and doing it wasn't hard. In fact, I got it done within an hour. I told my general manager; let's call him Matt, the next day that I was looking to be a key carrier, and had already done the online part. I could tell by his look that he was impressed with my taking initiative, but not much came from it. About a month later, Matt finally got me started doing actual in-person training with other key carriers, and seeing as how I could only close on Fridays and Saturdays, it would've been a slow process. At least it should've been. Given how Matt had been cutting back on people's hours, with everyone saying that John was pressuring him to do so, I have reason to believe that John is responsible for how long it took me to actually get started with in-person training. However, I only got 2 weeks until I had to close the store on my own. That was 4 nights' worth of learning, and safe to say: I WAS NOT READY. I couldn't remember where I was supposed to look to see how much I was supposed to take out of each register or how much variance there was. Not helping was how the other 2 people up front were a little new, the guy in the back was a bit lazy, and the 2 of the 4 computers we had to ring people up were crapping out for some reason. Things weren't going smoothly, and I was losing patience as the night went on. Once we closed for the night, I sent 2 of my coworkers home for the night, as we weren't allowed to count registers or safe without at least one other person in the store. The registers ended up being incredibly short for the next day, but confusingly to my general manager in training, let's call him Elliott, the deposit that was accurate. He ended up having to scrub through security footage to be sure that I didn't steal any money, which I didn't. The most damning thing I did was forget to ask about actually getting the physical key. This is one area where I am objectively at fault. No denying it. So when the other guy and I left for the night, we locked the front door, put in the alarm code, and made a mad dash for the back door. It was about an hour and a half after we were supposed to have left, and we were very tired, so we didn't bother to make sure the door closed all the way, and just went home. It was just left open, and I am INCREDIBLY lucky that no one snuck in. I showed up the next day and asked just how horribly I fucked up. Elliott calmly said that it was by a lot, but understood that I wasn't entirely at fault. We quickly made a few schedule changes so that a key carrier would be watching over me, ensuring that I actually knew what I was doing. A while later, I would be closing with someone who was previously a key carrier for another company; let's call him Greg, and he is a pretty solid guy. I asked Greg why he wasn't a key carrier for our company, to which he said: "The amount of added duties weren't worth the 25 cent raise. You're pretty much a manager, with all of the overrides you'd get access to, and things you'd be responsible for signing off on, but you aren't called a manager, or payed like one." After seeing me close a few times, he noted how, at least compared to his previous company, the closing process had way more room for error. I don't know just how much better the closing procedures are at Greg's previous company, but I found it noteworthy. What Matt and John might take issue with is my plan to head straight to my store and ensure that any new key carriers were capable whenever someone was being trained to become a key carrier. I fully intend to do so for every night they close without another key carrier scheduled until they can confidently do so with me just watching them. I imagine my John and Matt will be taking issue with the fact that I'll be off the clock when helping with closing procedures. My response to that would be: having a key carrier come in for an hour at most for a few nights would be less expensive to the company than the two people already be there for 2 hours longer than they're supposed to be, combined with someone coming in early the next morning to fix whatever mistakes were made, and maybe scrub through footage, for the same amount of nights. Again, I don't think this counts as malicious compliance, but I'd be sticking it to an incompetent boss and saving the company a bit.
Edit: I changed some lines to be a bit more accurate and did a bit of formatting, so it's not one massive paragraph. Sorry.
submitted by d3vi1ma7cr7 to MaliciousCompliance [link] [comments]


2024.05.15 07:04 Gestobersenpai [OFFER] £14/€14 with Monese - £10/€10 from Monese & £4/€4 from me(18+ UK & GERMANY)

Monese is a 100% mobile, multi-award winning account provider. With it, you can easily receive your salary, shop online, make purchases at stores, and withdraw cash from ATMs. With any Monese account, you can easily order your very own Mastercard contactless debit card, which works anywhere in the world for shopping or withdrawing cash. Only bid if you will seriously complete the referral
1 Open a Monese account through the Monese app or website by using my Referral Code when signing up
2 Order, receive and activate your Monese Mastercard, then use your Monese Mastercard or your virtual card for a single transaction of any amount. (There is no minimum value for a qualifying transaction, but transactions to gambling or financial services entities such as paying off credit card bills won't count)
3 Spend £500/€500 with your Monese card or through the cross-currency international bank transfer (Local bank transfers aren't included) Once I receive my reward, I will send you my share
Terms
Comment $bid if you are interested and I will send you my referral code.
submitted by Gestobersenpai to signupsforpay [link] [comments]


2024.05.15 07:01 tempmailgenerator Automating Email Forwarding with VBA and Attachments

Automating Your Inbox: VBA Forwarding Techniques

Email management can be a tedious task, especially when it comes to handling a large volume of messages and ensuring important emails are forwarded to the right recipients with their attachments intact. Visual Basic for Applications (VBA) offers a powerful solution to automate these processes within Microsoft Outlook, saving time and reducing the potential for human error. By writing specific VBA scripts, users can customize their email handling, forwarding emails based on certain criteria, including sender, subject, or specific keywords contained within the email body.
This automation not only streamlines the forwarding process but also ensures that all necessary attachments are included, maintaining the integrity of the information being shared. Whether for personal use or within a corporate environment, mastering VBA to automate email forwarding can significantly enhance productivity. The following sections will guide you through the basics of setting up VBA scripts for email forwarding, including how to access the VBA editor in Outlook, write the necessary code, and apply it to incoming emails to automate the forwarding process.
Command Description
CreateItem Creates a new Outlook mail item.
Item.Subject Specifies the subject of the email.
Item.Recipients.Add Adds a recipient to the email.
Item.Attachments.Add Adds an attachment to the email.
Item.Send Sends the email item.
Application.ActiveExplorer.Selection Gets the currently selected item(s) in Outlook.

Expanding Automation: The Power of VBA in Email Management

Email has become an indispensable part of professional communication, often resulting in a flooded inbox that can be challenging to manage efficiently. This is where the power of VBA (Visual Basic for Applications) comes into play, particularly in the context of Microsoft Outlook. VBA allows for the automation of repetitive tasks, such as forwarding emails with attachments, which can significantly enhance productivity and ensure no important communication is missed or delayed. By leveraging VBA, users can create scripts that automatically identify and forward emails based on predefined criteria, such as specific keywords in the subject line or from certain senders, ensuring that critical information is promptly shared with the relevant parties.
Moreover, the automation process via VBA is not limited to just forwarding emails but can be extended to include custom responses, organizing emails into specific folders, and even setting up alerts for emails from VIP contacts. This level of automation can transform how individuals and organizations manage their email communications, making the process more streamlined and less prone to human error. For individuals who are not familiar with programming, the initial setup of VBA scripts might require a learning curve, but the long-term benefits of automating mundane email tasks can free up valuable time for more important work. Additionally, the customization aspect of VBA scripts means that they can be tailored to fit the unique needs of any user or organization, making it a versatile tool in the arsenal of email management strategies.

Automating Email Forwarding in Outlook with VBA

VBA in Microsoft Outlook
 Dim objMail As Outlook.MailItem Dim objForward As MailItem Dim Selection As Selection Set Selection = Application.ActiveExplorer.Selection For Each objMail In Selection Set objForward = objMail.Forward With objForward .Recipients.Add "email@example.com" .Subject = "FW: " & objMail.Subject .Attachments.Add objMail.Attachments .Send End With Next objMail End Sub 

Unlocking Email Efficiency: The Role of VBA

The integration of Visual Basic for Applications (VBA) in email management, particularly within Microsoft Outlook, heralds a significant shift towards efficiency and productivity in handling electronic correspondence. This programming language enables users to automate various tasks, from forwarding emails with attachments to categorizing incoming messages based on specific criteria. The essence of VBA lies in its ability to perform these tasks without manual intervention, thereby saving time and reducing the likelihood of errors. For businesses and individuals inundated with a high volume of emails daily, VBA scripts can be a game-changer, streamlining operations and ensuring that important communications are promptly addressed.
Furthermore, VBA's flexibility allows for customization to meet the unique needs of each user. Whether it's setting up auto-replies, managing calendar events based on email content, or even extracting data from emails for reporting purposes, VBA offers a versatile toolkit for enhancing email management. The potential of VBA extends beyond simple automation; it empowers users to create sophisticated solutions that can adapt to changing workflows and requirements. While the initial learning curve might deter some, the long-term benefits of mastering VBA for email management are undeniable, offering a blend of productivity, customization, and efficiency that is hard to match with manual processes.

VBA Email Automation FAQs

  1. Question: Can VBA scripts automatically forward emails with attachments?
  2. Answer: Yes, VBA can be programmed to automatically forward emails with attachments, ensuring that important documents are sent to the appropriate recipients without manual intervention.
  3. Question: Is it possible to filter emails by sender or subject using VBA?
  4. Answer: Absolutely, VBA scripts can be customized to filter and act on emails based on various criteria such as sender, subject line, and even specific keywords within the email body.
  5. Question: Can VBA help in managing email clutter by organizing emails into folders?
  6. Answer: Yes, one of the advantages of VBA is its ability to automate the organization of emails into designated folders, thereby helping users maintain a clutter-free inbox.
  7. Question: Are there security concerns when using VBA for email automation?
  8. Answer: While VBA itself is secure, users should be cautious with scripts downloaded from the internet or received via email to avoid potential malware. It's advisable to use VBA scripts from trusted sources or develop them in-house.
  9. Question: Do I need advanced programming skills to use VBA for email automation?
  10. Answer: Basic programming knowledge is beneficial, but many resources and tutorials are available to help beginners learn VBA for email automation. The community around VBA is also quite supportive.

Enhancing Productivity with VBA Automation

In conclusion, leveraging VBA for email automation in Microsoft Outlook presents a significant opportunity to improve productivity and efficiency in managing email communications. By customizing VBA scripts to automate routine tasks, users can ensure timely forwarding of important messages, maintain organized inboxes, and reduce the manual effort required in handling emails. The adaptability of VBA allows for scripts to be tailored to the specific needs of individuals or organizations, making it a versatile tool in the arsenal of email management strategies. Despite the initial learning curve, the long-term benefits of integrating VBA into email workflows are clear, offering a blend of customization, efficiency, and enhanced productivity. As email remains a critical component of professional communication, the ability to automate and streamline email management processes with VBA can provide a competitive advantage, allowing users to focus on more strategic tasks. Thus, embracing VBA automation in email handling not only simplifies the management of email traffic but also contributes to a more effective and efficient communication strategy.
https://www.tempmail.us.com/en/vba/automating-email-forwarding-with-vba-and-attachments
submitted by tempmailgenerator to MailDevNetwork [link] [comments]


2024.05.15 06:58 burgguy Combo help

I asked this before, and I had looked into more about how to do an input-based combo system. Overall the code sort of works, in the sense that the animations will play but only if I'm holding down one of the directional keys (A/S or left/right key). Other than that the animation won't play if I'm not holding down one of those keys. Note that I am only looking for animation help.
Provided is the code I think is relevant, that being the players create event, step event, end anim event, Macros, the GetInput(); function, and PlayerState_Idle(); respectively
oPlayer code
Direction = NOKEY; Action = IDLE; SeqCount = 0; //combo counter state = PlayerState_Idle; //combo array NoKeyCombo[0] = spr_Jab; NoKeyCombo[1] = spr_Cross; NoKeyCombo[2] = spr_UpCut; //horizontal combo HorizCombo[0] = spr_UpCut; HorizCombo[1] = spr_Cross; HorizCombo[2] = spr_Jab; Sprite[NOKEY,IDLE] = spr_Idle; Sprite[HORIZONTAL,IDLE] = spr_Walk; Sprite[NOKEY,ATTACK] = spr_Jab; Sprite[HORIZONTAL,ATTACK] = spr_Jab; sprite_index = Sprite[Direction,Action]; script_execute(state); switch(state) { case PlayerState_Idle: break; case PlayerState_Attack: SeqCount++; if (SeqCount >= 3) { SeqCount = 0; } Action = IDLE; state = PlayerState_Idle; break; } 
Macros
//direction #macro NOKEY 0 #macro HORIZONTAL 1 //action #macro ATTACK 1 #macro IDLE 0 
GetInput(); and PlayerState_Idle (because reddit formatting is a real piece of work)
function GetInput(){ horiz = input_check("right") - input_check("left"); lightAttack = input_check_pressed("latk"); } function PlayerState_Idle(){ GetInput(); if (horiz > 0) { image_xscale = 1; Direction = HORIZONTAL; } else if (horiz < 0) { image_xscale = -1; Direction = HORIZONTAL; } else Direction = NOKEY; if (lightAttack) { image_index = 0; //reset anim state = PlayerState_Attack; Sprite[@NOKEY,ATTACK] = NoKeyCombo[SeqCount]; Sprite[@HORIZONTAL,ATTACK] = HorizCombo[SeqCount]; } } 
submitted by burgguy to gamemaker [link] [comments]


2024.05.15 06:45 RemozThaGod Thank you guardian angel

Or at least that's what I assume you are. I was trying to do a quest but the area I needed to get to was locked behind a coded door.
Thing is, the code just didn't want to work, not for me or my friend. But then you joined our group (it was public).
You instantly fast traveled to us, not a word spoken between, immediately tried the keypad and I guess it likes you cus it opened first try.
Then, with your job done, you just left the game. Instantly disappearing and simultaneously leaving the group.
I don't know why you have a sixth sense for players in trouble, but I won't question it, just give my gratitude.
submitted by RemozThaGod to fo76 [link] [comments]


2024.05.15 06:24 Flaky_Ad_3217 Help: Python code (Whatsfly) that runs underlying Go (Whatsmeow) need updating.

Hi all,
First of all let me preface with I am a pure python developer. I don't know much of go lang and honestly I don't know heads or tail when reading a go lang code.
I am currently using a python package call Whatsfly which is basically a python wrapper around the go package Whatsmeow. I been using roughly the library for my personal use for the past year or so to send out messages to my relative and friend. Suddenly around a week or so ago, the code that i been using are unable to send out text messages to WhatsApp. I assume the reason is due to WhatsApp new UI update which causes the old code to no continue to work. I understand something like this would be a bit finicky since its not really a proper api interface. I could go with the WhatsApp Business API route but since I'm not making money out of this i do feel its a bit of an overkill.
I try updating the whatsfly python package from V 0.0.22 to the latest V 0.0.231 however now it wont even show any text on the command line.
I research some of the issues in GitHub, it shows that in go.mod i need to change a few version of whatsmeow. but now I don't understand how I make that changes stick to python?
Hope this help and any pointer would be helpful
submitted by Flaky_Ad_3217 to golang [link] [comments]


2024.05.15 06:02 Dense-Art-5266 I have an innovative idea and a working prototype, what next?

I am a cybersecurity grad student with some experience in software development. Last semester, I developed a Password Generator & Manager that uses images to strengthen the password generation. It also addresses vulnerabilities present in traditional password management tools that solely rely on a 'master password'.
By using an image as a second factor, the user won't have to come up with complex passwords and can instead use something that's easy to remember. The system stays secure even when the 'master password' is compromised.
I presented a working prototype last week which bagged me the university's innovation prize and my work was praised by the board members (mostly CEOs, professors and researchers in Cybersecurity).
Even though I have something, there are certain challenges that I need to overcome to further improve my invention. Also I want to add that the idea is not fully mine, I took inspiration from a research paper on image hashing.
My product is far away from being used practically but there is definitely a potential. Now, I want to know what are next options from here?
TL;DR: I created a Password Generator & Manager using images to enhance security. Won university innovation prize. Inspired by image hashing research. Seeking next steps to develop the product further and explore potential use cases.
submitted by Dense-Art-5266 to Entrepreneur [link] [comments]


2024.05.15 05:52 ozzuneoj QB Desktop Pro Plus 2023: "Connection Has Been Lost" when trying to delete checks... even using a backup from before the problem started??

Huge post, sorry. If you have time to offer any suggestions it would be much appreciated.
I have been doing PC repair (mainly hardware, new PC builds and malware removal) as a bit of a side gig for over 20 years and the last two days have completely wrecked me. In 22 years I have never been unable to help a customer before now.
A small business (friends) I've been doing work for for a few years started having QB crash with a "Connection Has Been Lost" error starting last Friday when they were trying to do payroll. Somehow the owner was able to get through most of the employees (there are less than 10), but eventually the error prevented him from completing payroll for the week. Keep in mind, the file is stored on the internal SSD on this PC. It doesn't seem to crash when doing things other than specific tasks in Payroll. The easiest way to repeat the issue is to go to the Register and delete a check which does it every single time, even if I make a new check and then try to delete it.
Here is the error message in question: https://quickbooks.intuit.com/learn-support/image/serverpage/image-id/68606i0DEEB6774923052A?v=v2
Long story short, I despise software like this for many reasons which I won't get into now, I am fairly proficient with how Windows and DOS applications work, but I do not use Quickbooks myself. Still, I am attempting to help them because I doubt anyone else in our very small town has any more experience with this kind of issue. I helped them install QB 2023 about one year ago, after they had been using 2020.
They have two PCs on a network and the main PC (Office2) hosts the file in multi-user mode and is the system that is used for most of the QB work. All of the troubleshooting steps mentioned were performed on the Host PC with no files being accessed over the network.
I have tried the following:
-Updated QBD Pro Plus 2023 repeatedly (the process was very glitchy) until it somehow managed to show that it was at version R12_17, despite the fact that the website said that R12_15 was the latest. Did this on both systems. Also updated Payroll.
-Ran ALL scans\checks\fixes in Tool Hub and File Doctor many times with varying results. Most notably, the File Doctor says they couldn't fix the company file and to contact support. However, I am able to open the company file and most things work fine except for trying to do certain things in payroll or with checks so it isn't completely corrupted or broken.
-Completely uninstalled all Quickbooks\Intuit programs from both PCs and reinstalled QBD 2023 Pro (Plus) using the download from the website with the license code.
... and this is the kicker:
-Copied the company file from one of the dated backup folders from two weeks ago (a day before the last successful payroll was completed), renamed it, put it in a completely different folder on the desktop... and that has the error now too, despite the problem just starting a week ago.
-Copied that 2 week old (pre-error) company file to the other PC, set that PC to open it in Single User mode, and it STILL goes to "Lost Connection" when doing the exact same thing. Keep in mind, this is on a PC which just had all QB software removed entirely, then freshly reinstalled.
-One thing that baffles me is that the modified dates on the files in the backup folders seemed to update to the current date despite not being opened by QB recently. It's like some part of QB is messing with files in the background, even dated backups!? I opened a folder and watched the modified date change on 2 week old backup file without QB even running! This is possibly the most ludicrous thing I have ever experienced from retail software in nearly 30 years of using PCs.
-Contacted support... went through several of the above steps (again!) with them before they determined I needed speak to a technician. As soon as the "technician" joined, they immediately left the chat and the chat ended.
... much sighing ensued at this point.
Of note: I have also noticed that in Event Viewer there are many many many errors listed for Quickbooks going back to about February. Most of them related to caching issues, and it seems to correlate with the program being closed. The program seems to close very slowly (except when it crashes of course), so that is probably related.
Relevant specs of both systems: Windows 10 i5 10400F 8GB DDR4 NVMe SSD with plenty of free space wired ethernet connection to router\switch
Over the past two days I have worked on this for 8 hours total on-site (mostly waiting for scans, downloads and slow QB operation), and several more at home doing research to try to help these friends of mine.
Looking around here on this subreddit I have just read about using the "Verify Data" and "Rebuild Data" options... for some reason that hadn't come up in any of my searches for this particular problem. I will try those tomorrow, but if anyone else has any suggestions I would love to hear them.
Is there a way to "export" the company data to get it "out" of a corrupted company file? I don't care if it says "hey, this part was corrupted, we couldn't get that..." ... because clearly 90% of the company file is readable and works fine. Anything is better than telling them that if they ever want to pay their employees again they have to dump 15+ years of business records and start over.
Also, for what it's worth, I recall the "Total Transactions" being somewhere in the realm of 250,000, if that matters.
submitted by ozzuneoj to QuickBooks [link] [comments]


2024.05.15 05:47 finchestech What is a Google Search Console?

Google Search Console is a free tool offered by Google. It helps website owners understand how their site performs in Google searches. This tool provides vital data and reports on your site's visibility.

How Does Google Search Console Work?

To start using Google Search Console, you first need to verify ownership of your website. This can be done through a verification code that Google provides. Once verified, you can access various reports and tools.
The dashboard shows how often your site appears in Google search results. It also shows which queries bring users to your site. This information is essential for optimizing your website's SEO.
Google Search Console tracks the number of clicks from Google search results to your website. It also measures how many times your site appears in search results, called impressions.
The tool provides insights on the pages that attract the most traffic. It also identifies which countries the traffic comes from. Knowing this helps you target your content more effectively.
Google Search Console alerts you to any issues with your site. These issues can include broken links or security problems. It is important to fix these to keep your site running smoothly.
Additionally, it helps you submit sitemaps. Sitemaps tell Google about the pages on your site. This makes it easier for Google to index your site.
You can also use this tool to check which websites link to your site. This is useful for building a link strategy.
Performance reports are another feature. They show how your site performs on different devices and in different countries.
Finally, Google Search Console helps you understand the impact of different updates on your site. It shows how updates affect your site's performance in search results.
submitted by finchestech to u/finchestech [link] [comments]


2024.05.15 05:39 RobotDragon0 Trouble with HC-SR04 ultrasonic sensor

I am working with the PIC24Fj64GA002 microcontroller operating at 16MHz and the HC-SR04 ultrasonic sensor. I believe my hardware is operating correctly. I used a logic analyzer to confirm that the sensor was sending signals back to my microcontroller, and when putting a breakpoint in my input capture ISR, the program correctly stops inside of it. This tells me the issue is with my code.
I am having an issue debugging this code. I placed an object in front of the sensor and varied its distance from the sensor. However, when placing a breakpoint inside the else statement in my input capture ISR, the distance value I am getting is not expected, and on top of that the distance won't change as I move the object.
One debugging step I took was connect my RB4 and RB5 pins together, and knowing that I am sending a pulse of 10us from RB5, I tested to see if the finalVal would correspond to 10us. It did not, so this tells me the formula I am using in my program is wrong.
What steps should I take from here?
#include "xc.h" #include  bool stopMotion = 0; volatile uint32_t finalTime = 0; volatile int overflowtmr = 0; int distanceThreshold = 1; void setup(){ CLKDIVbits.RCDIV = 0; TRISBbits.TRISB4 = 1; //input for echo TRISBbits.TRISB5 = 0; //output for trig LATBbits.LATB5 = 0; //IC1 setup IC1CONbits.ICTMR = 0; //timer 3 IC1CONbits.ICM = 1; //PPS for IC1 __builtin_write_OSCCONL(OSCCON & 0xbf);// unlock PPS RPINR7bits.IC1R = 4; // RP4 (pin 11) __builtin_write_OSCCONL(OSCCON 0x40); // lock PPS T3CON = 0; TMR3 = 0; T3CONbits.TCKPS = 0; _T3IF = 0; //a prescaler of 1 for TMR3 PR3 = 65535; T3CONbits.TON = 1; IFS0bits.T3IF = 0; IEC0bits.T3IE = 1; IPC2bits.T3IP = 3; IFS0bits.IC1IF = 0; IEC0bits.IC1IE = 1; IPC0bits.IC1IP = 3; //TIMER1 setup T1CON = 0; TMR1 = 0; T1CONbits.TCKPS = 0; _T1IF = 0; PR1 = 160; //for a delay of 10uS T1CONbits.TON = 0; IFS0bits.T1IF = 0; IEC0bits.T1IE = 1; IPC0bits.T1IP = 5; //higher priority than the input capture interrupt } void __attribute__((interrupt, auto_psv)) _IC1Interrupt(){ IFS0bits.IC1IF = 0; if(PORTBbits.RB4 == 1){ //reset both TMR3 and overflowtmr TMR3 = 0; overflowtmr = 0; } else{ finalTime = (TMR3)*625 + overflowtmr*625*65536; overflowtmr = 0; TMR3 = 0; uint16_t distance = finalTime/((58)*(10000/10)); if(distance <= distanceThreshold) stopMotion = 1; else stopMotion = 0; } } void __attribute__((interrupt, auto_psv)) _T3Interrupt(){ IFS0bits.T3IF = 0; overflowtmr++; } void __attribute__((interrupt, auto_psv)) _T1Interrupt(){ _T1IF = 0; T1CONbits.TON = 0; TMR1 = 0; LATBbits.LATB5 = 0; } void sendTrig(){ LATBbits.LATB5 = 1; T1CONbits.TON = 1; } void delay_ms(unsigned int ms){ while(ms-- > 0){ asm("repeat #15999"); asm("nop"); } } int main(void) { setup(); while(1){ sendTrig(); delay_ms(2000); //delay for 2 seconds before sending another trig signal. } } 
submitted by RobotDragon0 to learnprogramming [link] [comments]


2024.05.15 05:26 Incman I would love to hear from this subreddit regarding my (actually-this-time-unless-she-changes-) final letter to my nMom.

As the title states, (and despite the existential risk to myself - as I am disabled, impoverished, and my survival is reliant on the room I rent in her attic - given her recent threat to have have me thrown out by the police because she could not handle the feelings she had during the argument that she initiated), I have finally drawn a bright red line in the metaphorical sand regarding her treatment of me. This is the culmination of 8+ years of sustained, one-sided, unreciprocated, and unsuccessful effort on my part to sustain, salvage, repair, or improve our "relationship"
 
I've learned a lot from the stories and people on this subreddit, and I know if anyone can understand the way that I'm feeling about this it's you guys.
 
Any input, commentary, criticism, insight, commiseration, etc, is very welcome, and I appreciate anyone who takes the time to read it.
 
Anyways, enough preamble, here's the letter in all of my ridiculously-verbose inglory (the square-bracketed disclaimers, etc, were part of the letter as delivered to her, since she is selective illiterate whenever there's something she doesn't like):
 
[START]
 
[This document begins with a 382 word AI-generated summary (titled "AI- GENERATED SUMMARY:" below the square-bracketed opening remarks), estimated at 1m23s time required to read. If you are unable or unwilling to make it through even this brief summary, then there is literally nothing else I could possibly do to assist in your comprehension of my positions. The full message following the summary is approximately 2100 words, estimated at approximately 8 minutes to read.]
 
[If you would like assistance in understanding things I've written that you're struggling to interpret or comprehend, you can go to chatgpt.com (no account necessary), or download the ChatGPT app from the Google Play Store on your phone. You can simply interact with the chat in natural language (in other words, type as though you were texting another person) and it will understand what you are saying. If you are struggling to understand how to interact with it effectively, you can simply inform it of that (in any wording you choose) and it will assist you with altering your approach to receive more effective results.]
 
AI-GENERATED SUMMARY:
 
Your son's message is a powerful declaration of his boundaries, grievances, and intentions within your relationship. Here's a breakdown to help you understand:
 
Preface: He advises you to read with an open mind and, if needed, with assistance due to the emotional complexity.
 
Declaration of Disengagement: He firmly states his decision to disengage from any form of interaction or acknowledgment outside of essential landlord-tenant matters.
 
Condemnation of Abuse: He accuses you of perpetuating a cycle of abuse that has deeply impacted his health and stability.
 
Rejection of Coercion: He dismisses the idea that being evicted is a viable solution to the abuse, highlighting the coercive nature of such a choice, and how it leaves him vulnerable to further harm.
 
Criticism of Your Behavior: He unreservedly condemns your actions, particularly your exploitation and manipulation, emphasizing the gravity and effects of your conduct.
 
Challenges to Your Claims: He directly confronts your claims regarding his efforts in the relationship, asserting that he has consistently made extensive attempts to maintain it, despite your accusations to the contrary.
 
Commitment to Compliance: He unequivocally affirms his commitment to compliance with all landlord-related demands, demonstrating his unwavering respect for your authority as the homeowner.
 
Demand for Clarity: He demands clear and unambiguous knowledge of the requisite terms when any changes to living arrangement paradigms are demanded, underscoring his willingness to comply with any directives you may issue.
 
Defense Against Gaslighting: He firmly asserts his unwavering commitment to respecting your property and authority, preemptively refuting any attempts to accuse him otherwise.
 
Insights into Your Behaviour: He offers insights into patterns in your behaviour, linking them to moments of vulnerability or distress in your life.
 
Call for Self-Reflection: He urges you to seek professional help for your narcissism and unresolved childhood traumas.
 
Caution Regarding Gravity: He states that failing to address your responsibilities would be a missed opportunity for both of you to salvage the relationship and resolve underlying issues.
 
Reiteration of Hope: Despite his current stance, he leaves the door open for reconciliation if you undergo necessary personal growth.
 
Closure on Unequal Effort: He firmly states that he can no longer sustain the one-sided effort in the relationship and won't continue to do so.
 
It's evident that he's deeply hurt and demanding acknowledgment, change, and resolution in your relationship.
 
[end of AI-generated summary; my full, non-AI-generated message follows below]
 
[I recommend that you read this in its entirety at a time and capacity level where your literacy and comprehension are at their highest level, and preferably with the interpretational assistance of a knowledgeable and competent support person or technological assistant.]
 
[Presumably, after reading a few sentences or less, your defense mechanisms will be activated and you will eject. However, as with the vast majority of the things I have said to you that have gone unacknowledged, I am completely certain that the contents are cogent and comprehensible, and I believe that with competent support and vulnerable effort you undoubtedly have the raw cognitive capacity necessary for comprehension if you are able to stabilize your emotional reactions and put real effort into the actions necessary for you to understand my words.]
 
I will not talk to you.
I will not look at you.
I will not approach you.
I will not acknowledge you.
 
If you attempt to interact with me on any interpersonal level not related to your role as a landlord, I will reserve the right to express just how fucking despicable it is to treat such a vulnerable person with such utter disregard and abuse for so fucking long.
 
The cycle of abuse you have maintained to destabilize me for your own pathological reasons has caused - and continues to cause - extensive damage to my health, stability, and existence. However, since I know your response to this would likely be some variation of "you're not a victim here [my name], so if I treat you so bad, just leave", I'll preemptively and unequivocally condemn such coercive and abusive tactics, and state again (as I did the other day), that the forced choice between your abuse and life-threatening-homelessness is obviously no choice at all, and leaves me perpetually subject to your coercion and abusive control.
 
Such exploitation by you is absolutely disgusting, and honestly I understand why you run away from yourself at every single instance where you're in danger of having your lifelong house-of-cards ego even slightly threatened. I know if I treated another human being the way you treat me for even a moment, let alone for the literal years you have done so, I would not be able to face myself in the mirror either. You should be fucking ashamed of yourself.
 
You say I "don't want to be your son anymore", as though it has been someone other than me making hundreds and hundreds and hundreds of hours of efforts and attempts in order to try and single-handedly keep our relationship alive, and as though it has been someone other than you who has stonewalled me for years about every single legitimate and valid time I attempted to gain even the slightest foothold as a full human being in the owner-pet relationship you have fought so hard to maintain. You siphon, in fact demand, emotional supply whenever you so choose, and then fucking discard me as soon as it appears that I might do anything that would result in you losing even a fraction of a percent of the 99% to 1% imbalance you believe is an immutable part of our "relationship".
 
I will do my absolute best to be in my room as much as physically possible when you are home, so as to minimize the need to be physically adjacent to you in the course of our respective activities of daily living.
 
I, again, remain unequivocally committed to my position of deference and compliance towards any rules/demands related to my existence, presence, or activities as your tenant.
 
As you refuse to provide any sort of unambiguous guidance or clarification whatsoever regarding your shifting demands affecting my ability to access/perform basic activities of daily living, I will continue to act in good faith with respect to my adherence to all previously-established arrangements and protocols (whether codified or de facto) regarding such activities. To the full extent of my abilities, and to the extent that it is physically possible, I will immediately and unequivocally comply with any alterations, additions, or excisions you choose to impose regarding the nature of our physical coexistence as landlord and tenant, regardless of your disregard or intent for any harm to my stability that will ensue as a result.
 
If you intend to attempt to manipulate or threaten or gaslight me to illegitimately and dishonestly accuse me of failing to comply with your rights and demands as the homeownelandlord, then I can assure you that such efforts will be ineffective and inadvisable. The extensive history of my genuine, documented, and unwavering commitment to absolute respect of your home, property, and landlord-tenant authority is unassailable, and nothing has or will change about the good faith nature of my efforts to simply live peacefully and work on stabilizing my health and continuing to attempt to develop basic protocols that offer me the opportunity to seek the ways and means required to sustainably exist, survive, and seek meaning and fulfilment as a human being.
 
To try and make it a bit more bite-sized (without warranty as to the efficacy of said efforts), since I know when your ego is threatened you conveniently - and dishonestly - become completely unable to read a couple thousand words:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
I love you, and goodbye for now. I hope to see you on the other side, but I cannot force you to undertake the journey.
 
- [name]
 
[/END]
(any edits are fixing formatting/copy&paste errors)
submitted by Incman to raisedbynarcissists [link] [comments]


2024.05.15 05:23 valeriemaried I (28f) feel like my boyfriend (29m) is continually hurt by me and I don't know how to help him see how poorly he handles conflict. It's making me feel terrible. I want to suggest couples counseling but don't know how.

I'm scared that I'm completely losing myself or being emotionally manipulated in my relationship. (1 yr together, known each other for 10). My partner (29 M) supports me in my self care & work & hobbies & loves to boost me up, but he also frequently tells me things I've done wrong. I'd always rather he be honest about his feelings, but i feel like it's very frequent. Something comes up at least twice a month where he says he doesn't feel listened to or valued or "like a partner" in our relationship and things blow up. This has happened for 3 months now. I have tried really hard to fix previous tangible concerns like letting him know when I'll be away from my phone for a while or making changes to not be late to things. We have had some really good strides where I've been able to tell him sorry for things I say that sound inconsiderate asap and asking what he means about things to avoid miscommunications. But the last 48 hours have been a nightmare even with my growth and progress. I'm sorry this post is lengthy but I'll try my best to explain the current situation:
Sunday my bf slept through his brother coming to visit on accident. He woke up and texted me and said he was spiraling a bit about feeling bad about it and would be okay but just needed a "5" to show him I was there. (this is supposed to be a call back to us saying I love you 5 ever in the past)
I didn't see his text for 30 minutes and then told him l was soo sorry I didn't see this sooner and that I was really sorry he slept through his alarm and missed that, but his body must have needed rest. He said it's okay, it's just my brother.
We spoke for 40 minutes about mothers day and other stuff and then he said "hey you never sent a 5" and I said "oh shoot, 5". It then was shared that it really upset him that I hadn't read and replied to that part of his text. It made him feel not listened to, he said, that I chose to reply how I wanted instead of doing what he asked for. I apologized and also said sorry I didn't say a 5 sooner and that I wish I had seen his text and sent a 5 right away. He got upset that I was apologizing for not texting him right away. He said apologizing for the thing he's not even upset about (not replying for 30 minutes) takes away his agency and takes away from him feeling heard.
He then explained it wasn't fully about the 5 - it was that it hurt that I didn't ask more about his feelings and just changed the topic after he said "it's okay". I think sometimes I forget people say "it's okay" to try to be strong when really they want to talk about their feelings. He emphasized he wished I had asked about his feelings and I said I definitely should have and need to be better about asking more follow up if he opens up and says he's spiraling.
I apologized a ton Sunday night and called him and cried to him on the phone about how much I cared and how much I didn't want to hurt him. He told me it was going to be okay and he even told me he felt loved and cared about. He showed appreciation when I took accountability and I said things like "I totally see how it made you feel not heard that I didnt do a small thing you asked for" and "I really should have followed up by asking more about your feelings or why you were spiraling".
Monday he got upset again once he woke up and said I was defensive yesterday and it hurt and that I talk at him and not with him (I did get defensive a bit by saying things like "I didn't know you weren't still okay and I took it at face value when you said you were okay" or saying "I told you I know I messed up and I shouldn't have ignored you opening up to me" when he brought up again how hurt he felt. But sometimes he repeated how hurt he was and how he wished I would hold myself accountable. So I would at times get defensive by saying "well I tried telling you that I'm sorry I ____"
I didn't know what to keep saying besides sorry and that I messed up. I tried keeping my answers brief after he said i was making things about myself (being emotional in my guilt) because i didnt want to risk monopolizing the conversation. Then he told me I really hurt him because he shared 2 paragraphs about how hurt he was and I gave a 10 word answer. I apologized multiple times for my 10 word answer. I said I only kept it short to keep the focus on him. He said it felt like I wasn't even trying. I tried asking what else he needs or what I could do to help and he told me I'm just Asking "out of self preservation". Then when I said I wish I knew what I could do to help he said "did you ask". Three different times when I said I wish I could make him feel better or things like I am trying to give thoughtful answers he would say "did you ask" and then I would say "ask what?" And get frustrated when he didn't give me a straight answer. When I got upset for not getting an answer to my question, he said I was making it about me again.
At some point he asked for examples of me asking accountability. I sent screenshots of when I said I messed up and hurt him and I should've done differently and he got upset and said "those are from yesterday and don't impact how I feel today". I tried taking accountability again today in multiple sentences. He seemed grateful that I did and was glad to hear me list the things I messed up and take the blame for. But then when I brought up something i was hoping we could still do (a surprise party for him) he got really upset and said I was only thinking about what I wanted (to see him and get him to the surpise) instead of what he wanted (to not go out). This led to him skipping his own surprise party today. We haven't had a conversation since he skipped it.
A chunk of yesterdays convo, word for word: M: "I felt so small when you gave me a 10 word response I felt like I didn't explain enough or wasn't good enough . And to not really have a response, it hurt me so bad."
F: "I'm sorry for hurting you so much and giving so small of a response. I'm really sorry for the things I did to make you feel small."
M: "thats not what I'm worried about or bothers me"
F: "What are you worried about or bothered by? You shared it Made you feel small when I sent a 10 word response, so I thought that was a part of the problem."
M: "Not really related and makes me feel worse about getting the love I need/want"
F: "i don't understand. You brought up how much hurt you and how low it made you feel, how is it not related?"
M: "Did you ask?"
F: "I'm asking now"
M: "I'm sorry, I didn't realize you being hurt negated everything I've felt?"
F: "What? Where did I say I'm hurt?"
M: "You're asking a question so you could feel good or secure but I dont feel I'm afforded the same"
A convo chunk from today:
M: i spend so much energy and get so little in return. When I reach out and ask for help everything gets focused on how you felt. When do I matter?
F: I'm sorry. I hope you can get to feel like you matter now. I have been trying to do what you need and put very little focus on myself and I'll keep trying
M: If you can't try or listen to what I'm saying or asking for just leave me alone and make this whole situation easier. I'm exhausted and tired from giving you grace and somehow things always focus back on you.
_--- Then In several texts asked him if he explain how things kept coming back to me and he said the focus just keeps coming back to me.because I won't take accountability. He is embarrassed and doesn't feel good enough. Because I don't show him support when he needs it and don't show i care in the ways he wants or needs the way he supports me when I'm low.
F; I'm sorry and I wish I had afforded you the same. I'm trying to give thoughtful answers, sorry if they have to be short because I'm at work. Can you explain how you feel like the focus has been coming back to me in today's convo. M: did you ask? F: ask what? M: dude we aren't doing this again F: dude I asked for clarification becuase I don't get your question M: It's not about you. I don't think you're ready or capable of loving me the way I want or need. I feel like I've given you grace and afforded you the space to make or acknowledge mistakes. I can't keep begging to be heard and feel like I'm overreacting or misunderstood. It's fine to ask for clarification, but when you do it hijacks the conversation and we never revist what I said.
F: because I don't get an answer so it's hard to revisit the topic when I'm still confused
M: I'm sorry , I didn't realize that me spiraling or being in a bad place was only continued because you didn't get a response. This isn't about you.
I want to get him to couples therapy because I care about him SO much and he has a really big heart and a good soul. But once he feels hurt, it's like he's stuck being the victim and can't see how horribly irrational our conversations are going. I am not perfect at conflict either - I get defensive if he keeps talking about being hurt, and I end up crying a lot to him about how bad I feel for hurting, and sometimes he has to help me calm me down from my intense crying over the problem I caused, which is draining for him. But I think at least in this case he is really stuck in a victim complex where he isnt doing any wrong and I'm not doing much right to him. I genuinely feel like therapy could really help, I want to support him, but I'm nervous to just outright ask for it. What do I do? How could I ease into the topic?
TL;DR: Although I have tried to be very patient and take accountability there are a lot of things I do that hurt my boyfriend. I have worked on improve some concrete things but our most recent conflict (detailed above) has me feeling anxious and lost because I try taking accountability throughout but he is still upset no matter what I say. I don't think he knows how to handle conflict and I'm not perfect at it either but i am very willing to name everything I do wrong and try to change it. I want to suggest couples therapy so he can see we can both do better. Not sure how.
submitted by valeriemaried to relationships [link] [comments]


http://rodzice.org/