Clock face artwork

Sally Face

2017.07.24 23:03 SteveGabry Sally Face

Talk with fellow fans, share theories, artwork, cosplay, thoughts, etc. for Sally Face! A dark adventure game series following a boy with a prosthetic face and a tragic past.
[link]


2022.01.24 12:25 StevenBeercockArt paintnbdamned

A space to place your in-your-face artwork
[link]


2014.04.03 04:55 sweaterlvests Queen of [Me]an

A subreddit dedicated to our queen, the Bianca Del Rio and her work in NY, NOLA, and RPDR. Also dedicated to the handsome devil who shares her body, Roy Haylock.
[link]


2024.05.16 23:49 HarryPudding careldindiabloleague

Cisco Router Security
What are the two access privilege modes of the Cisco router?
User EXEC Mode: This is the initial access mode for a router. In this mode, the user can access only a limited set of basic monitoring commands.
Privileged EXEC Mode: This mode provides access to all router commands, such as debugging and configuration commands. It requires a password for access to ensure security.
What is the approach for password for the privileged mode of the router?
enable secret [password]
uses hashing algorithm so that the password is not in plain text but encrypted
How to ensure that all passwords in the router are stored in the encrypted form?
service password-encryption
What is the difference between the Cisco router’s startup and running configurations?
How to save the running configuration into start up configuration?
Startup Configuration: Stored in the NVRAM, this configuration is used to boot the router. It remains unchanged until an administrator explicitly saves the running configuration to it.
Running Configuration: Held in the router’s RAM, this configuration is active on the router. Changes to the router’s configuration are made here and are effective immediately.
Know and be able to configure all aspects of the Cisco router covered in class. For example,
configuring the router interfaces, setting the router OSPF ID, etc.
enable
configure terminal
hostname MyRouter
interface GigabitEthernet0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
exit
interface Serial0/0/0
ip address 10.0.0.1 255.255.255.252
clock rate 64000
no shutdown
exit
router ospf 1
router-id 1.1.1.1
network 192.168.1.0 0.0.0.255 area 0
exit
enable secret mysecretpassword
line console 0
password myconsolepassword
login
exit
line vty 0 4
password myvtypassword
login
exit
crypto key generate rsa
ip ssh version 2
ip ssh time-out 60
ip ssh authentication-retries 2
ip route 0.0.0.0 0.0.0.0 192.168.1.254
access-list 10 permit 192.168.1.0 0.0.0.255
access-list 10 deny any
Practical Routing, OSPF, and Security
What is the difference between static and dynamic routing?
Static Routing: Involves manually setting up routes in the router's routing table through configuration commands. These routes do not change unless manually updated or removed. Static routing is simple, secure, and uses less bandwidth but lacks scalability and flexibility.
Dynamic Routing: Automatically adjusts routes in the routing table based on current network conditions using routing protocols. This approach allows for more flexibility, scalability, and fault tolerance, but consumes more resources and can be complex to configure.
What is the difference between link state and distance vector routing?
Distance Vector Routing: Routers using distance vector protocols calculate the best path to a destination based on the distance and direction (vector) to nodes. Updates are shared with neighboring routers at regular intervals or when changes occur. This approach can lead to slower convergence and issues like routing loops.
Link State Routing: Each router learns the entire network topology by exchanging link-state information. Routers then independently calculate the shortest path to every node using algorithms like Dijkstra’s. This results in quicker convergence and fewer routing loops.
Distance Vector Routing: Each router computes distance from itself to its next immediate neighbors. (RIP, EIGRP, & BGP)
-Does not build a full map of the network
-Focuses more on the next hop towards the destination
Link State Routing: Each router shares knowledge of its neighbors with every other router in the network. (OSPF and IS-IS)
-Builds a full map of the network
-Each router shares information
-Maintains a database of the entire network.
Give an example of the distance vector and link state algorithms.
Distance = RIPLink State = OSPF
What type of protocol is Routing Information Protocol (RIP)? Be able to understand
examples and solve problems.
Example of a distance vector protocol
dynamic protocol
-shares routing info with neighboring routers
-an interior gateway protocol that operates within autonomous system
-oldest of all dynamic protocol; RIPv1
-widely used open standard developed by IETF
-a distance vector routing protocol
-limited to maximum 15 hops;
 how rip works -rip sends regular update message (advertisements to neighboring routers) 
-every 30 seconds that resets after each successful ack
-route becomes invalid if it has not received a message for 180 seconds
-RIPv1 (obsolete) uses broadcast, while RIPv2 uses a multicast address -Update message only travel to a single hop
downside : limitations, each router in its table can only have one entry per destination. Have to wait for advertisement for an alternative path, cannot reach hops 15 paths away, little to no security.
What type of protocol is Open Shortest Paths First (OSPF) protocol? Be able to under-
stand examples and solve problems.
-a link state routing protocol
 intra as routing with RIP 
What is the Link State Advertisement (LSA) in OSPF? What is the Link State Database
(LSDB)?
-LSA contains data about a router, its subnets, and some other network information.-OSPF puts all the LSAs from different routers into a Link-State Database (LSDB)
The goal of OSPF is to be able to determine a complete map of the interior routing path to be able to create the best route possible.
The way this is done is that OSPF finds all the routers and subnets that can be reached within the entire network. The result is that each router will have the same information about the network by sending out LSA.
How does each router in OSPF create a map of the entire network?
Step 1 : Acquire neighbor relationship to exchange network information.
Step 2: Exchange database information, neighboring routers swap LSDB information with each other
Step 3: Choosing the best routes, each router chooses the best routes to add to its routing table based on the learned LSDB information.
What is the process for two OSPF routers to become neighbors?
A. a neighbor sends out a Hello packet including the router ID along with subnets that it routes to the given multicast address to a given OSPF area ID.
this is also a way for routers to tell neighbors that they are still on and good to go. 
B. Once other routers receive this packet, they run some checks. The neighboring routers must match the following requirements:
-area id needs to be the same (also used when scaling up OSPF)
-the shared or connecting link should be on the same subnet.
-The Hello and dead timer must be the same.
-the dead timer is having enogh time before the sending router assumes that the neighbor is down.
-this timer is typically 10 secs for point-to-point and broadcast networks.
C. If all is fine, the receiving router will go into Init stage and sends a hello message of its own. This Hello packet list its own network info along with the known neighbor R1. This puts R1 into a 2-way communication status.
D. R1 sends another Hello message to R2 with the information as a known neighbor. This allows the R2 now with a 2-way communication status as well.E. We now have a 2-way neighboring routers
What is the difference between point-to-point and multi-access networks? How does OSPF
handle each case?
Point-to-Point: A network setup where each connection is between two specific nodes or devices. OSPF treats these links with straightforward neighbor relationships since there are only two routers on each segment. 
Multi-Access Networks: Networks where multiple routers can connect on the same segment, such as Ethernet. OSPF uses a Designated Router (DR) and a Backup Designated Router (BDR) on these types of networks to reduce the amount of OSPF traffic and the size of the topological database.
DR selected by the highest OSPF prio.
Be able to configure OSPF routing given a topology.

Example:
Consider a topology with three routers R1, R2, and R3. The routers
are connected R1 =⇒R2 =⇒R3 =⇒R1.
R1 has interface f0/0 connected to the
interface f0/0 of R2. R2 has interface f0/1 connecting to the interface f0/0 of R3.
Finally R3 has interface 1/0 connecting to the interface 1/0 of R3. Assuming all
routers are Cisco 7200 routers, configure them to use OSPF to dynamically route in
this topology (you will be given the Cisco router manual for such questions).

R1enable
configure terminal
hostname R1
interface FastEthernet0/0
ip address 192.168.12.1 255.255.255.0
no shutdown
exit
interface FastEthernet1/0
ip address 192.168.31.1 255.255.255.0
no shutdown
exit
router ospf 1
router-id 1.1.1.1
network 192.168.12.0 0.0.0.255 area 0
network 192.168.31.0 0.0.0.255 area 0
exit
end
write memory
R2enable
configure terminal
hostname R2
interface FastEthernet0/0
ip address 192.168.12.2 255.255.255.0
no shutdown
exit
interface FastEthernet0/1
ip address 192.168.23.1 255.255.255.0
no shutdown
exit
router ospf 1
router-id 2.2.2.2
network 192.168.12.0 0.0.0.255 area 0
network 192.168.23.0 0.0.0.255 area 0
exit
end
write memory
R3enable
configure terminal
hostname R3
interface FastEthernet0/0
ip address 192.168.23.2 255.255.255.0
no shutdown
exit
interface FastEthernet1/0
ip address 192.168.31.2 255.255.255.0
no shutdown
exit
router ospf 1
router-id 3.3.3.3
network 192.168.23.0 0.0.0.255 area 0
network 192.168.31.0 0.0.0.255 area 0
exit
end
write memory
How does OSPF authenticate packets to protect against packet spoofing and tempering?
Be able to enable it a Cisco router.
OSPF (Open Shortest Path First) can authenticate packets to protect against packet spoofing and tampering using several methods. The two main types of authentication are:
Plain Text Authentication: This is simple and provides minimal security. It sends the password in clear text.
Message Digest 5 (MD5) Authentication: This provides stronger security by using cryptographic hash functions to authenticate OSPF packets.
Plain textenable
configure terminal
interface FastEthernet0/0
ip address 192.168.12.1 255.255.255.0
ip ospf authentication
ip ospf authentication-key cisco123
no shutdown
exit
router ospf 1
router-id 1.1.1.1
network 192.168.12.0 0.0.0.255 area 0
area 0 authentication
exit
write memory
MD5enable
configure terminal
interface FastEthernet0/0
ip address 192.168.12.1 255.255.255.0
ip ospf authentication message-digest
ip ospf message-digest-key 1 md5 securepassword
no shutdown
exit
router ospf 1
router-id 1.1.1.1
network 192.168.12.0 0.0.0.255 area 0
area 0 authentication message-digest
exit
write memory
Network Defense Fundamentals

What is IP spoofing? Explain.
-The ip packet contains the source and destination Ip addresses.-Is it straightforward to modify the ip address of the packet.
-IP Spoofing: sender chagrin his source address to something other than his real address.
How can IP spoofing be used in security attacks?
-If the attacker sends an Ip packet with a spoofed IP, they will not receive a response form the destination: the machine with the IP matching the spoofed IP will receive the response.Ip spoofing operation - the sender spoofs the source IP address to point to another target. The receiver system replies to the spoofed IP.

What are the countermeasures to IP spoofing?
Ingress and Egress Filtering: Network operators should implement filtering rules on routers and firewalls to block packets with source IP addresses that should not originate from those networks. Ingress filtering blocks incoming packets with a source IP address that is not valid for the network, while egress filtering blocks outgoing packets with an invalid source IP address.
Reverse Path Forwarding (RPF): This technique ensures that the incoming packets are received on the same interface that the router would use to send traffic back to the source. If the path does not match, the packet is discarded, preventing spoofed packets from passing through.
IPsec (Internet Protocol Security): IPsec can be used to authenticate and encrypt IP packets, ensuring that they come from legitimate sources and have not been tampered with. This makes spoofing attacks significantly more difficult.
How can IP spoofing be used to perform DoS attacks?
IP spoofing is often used in Denial of Service (DoS) attacks to obscure the attacker's identity and to overwhelm the target with traffic from what appears to be multiple sources. One common type of DoS attack that utilizes IP spoofing is a Smurf Attack. In a Smurf Attack, the attacker sends ICMP (Internet Control Message Protocol) echo requests to broadcast addresses of networks, with the source IP address spoofed to that of the victim. The devices on the network respond to the echo requests, sending replies back to the victim's IP address. This amplifies the traffic directed at the victim, potentially overwhelming their network and causing a DoS condition.

Know how to use
hping3
for performing ping floods.
Using hping3 to perform ping floods involves sending a high volume of ICMP Echo Request packets to a target to overwhelm it.basic ping floodsudo hping3 -1 --flood [target_IP]
Using spoofed source ipsudo hping3 -1 --flood -a [spoofed_IP] [target_IP]
Controlling the Packet Sending Rateo hping3 -1 --flood -i u1000 [target_IP]Combining sudo hping3 -1 --flood -a 10.0.0.1 -i u1000 192.168.1.1
Firewalling
What is a firewall?
a filtering device on a network that enforces network security policy and protects the network against external attacks.
According to NIST SP 800-41, what are the characteristics of a firewall?
NIST standard defines the possible characteristics that a firewall can use to filter traffic.
-(IP Address and Protocol type) filtering based on source/destination IP address/ports, traffic direction and other transport layer characteristics.
-(Application Protocols)controls access based on application protocol data
-(User identity) controls access based on user identity
-(Network activity)
What are the limitations of the firewall?
Firewall capabilities: -Define a traffic chokepoint in the network and protects against IP spoofing and routing attacks
-Provide a location for monitoring the security events -Provide non-security functions: loggin internet usage, network address translation-Serve as platform for VPN/IPSec
Firewall limitations:-protect against attacks bypassing the firewall, connections from inside the organization to the outside that do not go through the firewall.-protect against internal threats such as disgruntled employees.
What is a packet filter firewall? Be able to write and interpret rules and to spot configu-
rationflaws.
Packet filtering firewall : applies a set of rules to each packet based on the packet headers.Filters based on: source/destination IP, source/destination port numbers, IP Protocol Field:defines the transport protocol, Interface : for firewalls with 3+ network interfaces, the interface from which the packet came from/going to

What is the difference between the default and allow and default deny policies? Which
one is the more secure one?
-when no rules apply to a packet, a default rule is applied: default deny : what is not explicitly permitted is denied default forward : what is not explicitly denied is allowed
default deny is more secure, you dont have to identify all of the cases that needs to be blocked, if one is missed, default deny will deny it.
Port 0-1023 reserved
1024-2**17 ephemeral
source port used by the system initialiatizng a connection is always chosen from the ephemeral ports
Be able to configure the packet filtering functions of iptables.

Example:
Write iptables rules to block all ICMP traffic to and from the system.
iptables -A INPUT -p icmp -j DROP
iptables -A OUTPUT -p icmp -j DROP
Example:
Write iptables rules to block all traffic on port 22
iptables -A INPUT -p tcp --sport 22 -j DROP
iptables -A OUTPUT -p tcp --dport 22 -j DROP

Example:
Write iptables rules to block traffic to host 192.168.2.2
iptables -A OUTPUT -p tcp --dest 192.168.2.2 -j DROP
iptables -A INPUT -p tcp --src 192.168.2.2 -j DROP
What are the limitations of the packet filter firewall?
-does not examine upper layer data : cannot prevent attacks that employ application specfic vulnerabilities or functions.cannot block application specific commands.

What is the stateful firewall and how does it compare to a packet filter?
A stateful firewall is a network security device that monitors and tracks the state of active connections, making decisions based on the context of the traffic. Unlike a simple packet filter, which examines individual packets in isolation based on predetermined rules, a stateful firewall keeps track of connections over time, distinguishing between legitimate packets that are part of an established session and potentially malicious ones. This contextual awareness allows it to block unauthorized connection attempts and prevent attacks such as spoofing and session hijacking. While packet filters, or stateless firewalls, operate faster and consume fewer resources by applying static rules to each packet independently, they lack the sophisticated traffic pattern handling and enhanced security provided by stateful firewalls.

What is the application-level firewall? What are its advantages and limitations?
An application-level firewall, also known as an application firewall or proxy firewall, operates at the application layer of the OSI model. It inspects and filters traffic based on the specific application protocols (e.g., HTTP, FTP, DNS) rather than just IP addresses and port numbers. limitations : increased communications overhead due to two separate TCP connections
 and not transparent to the client 
Application-level gateways are also known as application-level proxies.
-act as a relay for the application-level traffic.
-runs at the application layer, and examines application-layer data
Supported ProtocolsFTPSTMPHTTP
What is a circuit-level firewall? What are its advantages and limitations?
-Similar to the application-level gateway, but only tracks the state of the TCP/UDP sessions.
-Does not examine application data , simply relays TCP segments
-Allow/deny decisions based on whether a packet belongs to an established and trusted connection
Advantage of circuit-level firewall -do not filter individual packets(simplifies rules)
-fast and efficient 
Disadvantages:
-do not filter individual packets -require frequent updates: traffic is filtered with rules and policies that need regular updates for new threats and risks -the vendor needs to modify the TCP/IP implementation for thor applications to use the circuit-level proxy. 
What are the different approaches to basing the firewall?
-stand-alone machines -software modules in roosters, switches, or servers, or pre-configured security appliances. 
What are the host-based firewalls?
Host-based firewalls: a firewall software module used to secure a single host.
What are the network device firewalls?
Network device firewall = routers and switches often have firewall functions, like packet filtering and stateful inspection, to check and filter packets
What are the virtual firewalls?
-in a virtualized environment, servers, switches, and routers can be virtualized and share physical hardware. The hypervisor that manages the virtual machines can also have firewall capabilities.
What is the DMZ? How is it used for securing networks?
A Demilitarized Zone (DMZ) in network security is a physical or logical subnetwork that contains and exposes an organization's external-facing services to an untrusted network, typically the internet. The primary purpose of a DMZ is to add an additional layer of security to an organization's local area network (LAN). By isolating these externally accessible services, the DMZ ensures that if an attacker gains access to the public-facing systems, they do not have direct access to the rest of the network.
How the DMZ Secures Networks
Isolation of Public Services: Services that need to be accessible from the outside, such as web servers, mail servers, FTP servers, and DNS servers, are placed in the DMZ. These services are isolated from the internal network, which helps protect the internal systems from attacks that may exploit vulnerabilities in the public-facing services.
Controlled Access: Firewalls are used to create boundaries between the internet, the DMZ, and the internal network. The firewall rules are configured to allow only specific types of traffic to and from the DMZ. For example, incoming web traffic might be allowed to reach a web server in the DMZ, but not to access internal systems directly.
Minimal Exposure: Only the necessary services are exposed to the internet. This minimizes the attack surface, reducing the number of entry points that an attacker can exploit. Internal systems and data remain protected behind the additional layer of the firewall.
Layered Security: The DMZ provides an additional layer of defense (defense-in-depth). Even if an attacker manages to compromise a server in the DMZ, the internal network is still protected by another firewall, making it harder for the attacker to penetrate further.
Monitoring and Logging: Activities within the DMZ can be closely monitored and logged. Any suspicious behavior can be detected early, and appropriate actions can be taken to mitigate potential threats before they impact the internal network.
Traffic Filtering: The firewalls between the internet and the DMZ, as well as between the DMZ and the internal network, can filter traffic based on IP addresses, ports, and protocols. This filtering ensures that only legitimate traffic is allowed and that malicious traffic is blocked.
-if attacker compromises a server on the network, they will be able to pivot to other systems on the network.
What are the advantages and disadvantages of having the two DMZ firewalls be from
different vendors?
Using different firewall manufacturers for the two firewalls maybe a good idea, avoids possibility of both having the same vulnerability but introduces more complexity and management overhead.
Be able to write pfSense firewall rules
Penetration Testing

What is penetration testing?
-legal and suthorzied attempt to locate and exploit vulnerable systems for the purpose of making those systems more secure.
pen testing, pt, hacking, ethical hacking, whitehate hacking, offensive security, red teaming 
What is the objective of the penetration testing?
Use tools and techniques used by the attackers in order to discover security vulnerabilities before the attackers do. 
What is the BAD pyramid?
The purpose of a red team is to find ways to improve the blue team, so purple teams should not be needed in an organization where the red/blue teams interaction is healthy and functioning properly. 
red attack
purple defender changes based off attack knowledge
blue defend
green builder changes based on defender knowledge
yellow build
orange builder changes based on attacker knowledge
Why are the penetration tests conducted?
-a company may want to have a stronger understanding of their security footprint.
-system policy shortcomings -network protocol weaknesses -network/software misconfigurations -software vulnerabilities 
What is the difference between penetration testing and vulnerability assessment?
-two terms often incorrectly ,interchangeably used in practice.
-vulnerability assessment : review of systems services to find potential vulnerabilities-penetration testing: finding an exploiting system vulnerabilities as proof-of-concept
What is the difference between black-box, white-box, and grey-box testing.
Black-Box Testing
Tester Knowledge: The tester has no knowledge of the internal structure, code, or implementation details of the system.
-lack knowledge of system
White-Box Testing
Tester Knowledge: The tester has full knowledge of the internal structure, code, and implementation details of the system.
-very thorough , but not completely realistic
Grey-Box Testing
Tester Knowledge: The tester has partial knowledge of the internal structure, code, or implementation details of the system.
What is the difference between ethical and unethical hackers?
-penetration testers, with proper authorization of the company, help improve the security of the company.
-unethical hackers, personal gain through extortion or other devious methods, profit, revenge, fame, etc. No authorization to conduct the attacks
•Ethical vs unethical hacking, penetration testers: obtain the authorization from the organization whose systems they plan to attack unethical hackers: attack without authorization.
Know the stages of penetration testing and the importance of following a structured ap-
proach.

Planning and Reconnaissance:
Planning: Define the scope and goals of the test, including the systems to be tested and the testing methods.
Reconnaissance: Gather information about the target, such as IP addresses, domain names, and network infrastructure, to understand how to approach the test.
Scanning:
Purpose: Identify potential entry points and vulnerabilities in the target system.
Methods: Use tools to scan for open ports, services running on those ports, and known vulnerabilities.
Gaining Access:
Purpose: Attempt to exploit identified vulnerabilities to gain unauthorized access to the system.
Techniques: Use techniques like password cracking, SQL injection, or exploiting software vulnerabilities.
Maintaining Access:
Planning and Reconnaissance:
Purpose: Ensure continued access to the compromised system to understand the potential impact of a prolonged attack.
Methods: Install backdoors or use other methods to maintain control over the system.
Analysis and Reporting:
Scanning
Purpose: Document the findings, including vulnerabilities discovered, methods used, and the level of access achieved.
Report: Provide a detailed report to the organization, highlighting the risks and recommending steps to mitigate the vulnerabilities.
Remediation:
Gaining Access
Purpose: Address and fix the identified vulnerabilities to improve the security of the system.
Action: Implement the recommended security measures from the report to protect against future attacks.
Retesting:
Maintaining Access
Purpose: Verify that the vulnerabilities have been successfully remediated.
Process: Conduct a follow-up test to ensure that the fixes are effective and no new issues have been introduced.
Importance of Following a Structured Approach
Consistency: A structured approach ensures that each stage is systematically followed, making the testing thorough and reliable.
Comprehensiveness: Following each stage helps identify and address all potential vulnerabilities, leaving no gaps in the security assessment.
Documentation: A structured method produces detailed documentation, which is crucial for understanding the security posture and for future reference.
Effectiveness: It ensures that the penetration test effectively mimics real-world attack scenarios, providing valuable insights into how an actual attacker might exploit vulnerabilities.
Risk Management: By identifying and addressing vulnerabilities, organizations can proactively manage security risks and protect their assets from potential attacks.
Example:
What is the difference between the passive and active reconnaissance?

Passive Reconnaissance
Definition: Gathering information about the target without directly interacting with the target system or network. The aim is to collect data without alerting the target.
Methods:
Publicly Available Information: Searching for information that is freely available on the internet, such as social media profiles, company websites, and news articles.
DNS Queries: Looking up domain registration information (WHOIS data), DNS records, and IP address ranges.
Network Traffic Analysis: Capturing and analyzing network traffic without sending packets to the target (e.g., using tools like Wireshark in a non-intrusive manner).
Search Engines: Using search engines to find information about the target, such as employee names, email addresses, and technical details.
Advantages:
Low Risk: Minimizes the chance of detection by the target because no direct interaction occurs.
Stealth: Suitable for the early stages of reconnaissance when the goal is to remain undetected.
Disadvantages:
Limited Information: May not provide as much detailed or specific information about vulnerabilities or configurations as active reconnaissance.
Active Reconnaissance
Definition: Actively engaging with the target system or network to gather information. This involves direct interaction, such as sending packets or probing the target.
Methods:
Network Scanning: Using tools like Nmap to scan for open ports, running services, and network topology.
Vulnerability Scanning: Running vulnerability scanners (e.g., Nessus, OpenVAS) to identify known weaknesses in the target systems.
Social Engineering: Directly interacting with individuals (e.g., phishing attacks) to gather information.
Probing and Enumerating: Sending specific queries or packets to the target to elicit responses that reveal information about the system (e.g., banner grabbing).
Advantages:
Detailed Information: Provides more detailed and specific information about the target's vulnerabilities, configurations, and active services.
Identification of Weaknesses: More effective in identifying exploitable vulnerabilities that can be used in subsequent attack phases.
Disadvantages:
Higher Risk: Increases the risk of detection by the target, which could alert them to the reconnaissance activity.
Potential Legal Issues: Unauthorized active reconnaissance can lead to legal repercussions if done without permission.
Summary
Passive Reconnaissance: Involves gathering information without direct interaction with the target, resulting in lower risk of detection but potentially less detailed information.
Active Reconnaissance: Involves direct interaction with the target to gather detailed information, but carries a higher risk of detection and potential legal consequences.
Both types of reconnaissance are essential in penetration testing to understand the target's environment and identify potential vulnerabilities while balancing the need for stealth and detailed information.
Be able to use the penetration testing tools discussed in class
nmap 192.168.1.1
nmap -sS -sV -O -A 192.168.1.1-sS: Perform a stealth SYN scan.
-sV: Detect service versions.
-O: Detect operating system.
-A: Perform aggressive scan (includes OS detection, version detection, script scanning, and traceroute).
submitted by HarryPudding to u/HarryPudding [link] [comments]


2024.05.16 23:34 tonyhasareddit General Electric Building - NYC

General Electric Building - NYC
I hope this isn’t posted on here all the time, but I personally haven’t seen it brought up nearly as often as more well known NYC skyscrapers like ESB and the Chrysler Building. I was just walking by it today after lunch and stopped to marvel at it’s wild, unique details, and was inspired to make this post.
This is the General Electric Building in New York City, once also known as the RCA Victor Building, located at 570 Lexington Ave. it was built in an art deco style with some really interesting highlights that reflect the symbolism of GE, including the electric bolts around the crown and in various other areas of the building.
I thought it was also somewhat unique in that it is a brick skyscraper, and more specifically, it was designed to match the nearby St. Bartholomew’s Church on Park Ave, which sort of fades into it’s profile from certain angles. It’s such a unique building, and pictures barely do it justice. I especially love the intricate faces in the design, the aforementioned lightning bolts, and the GE clock located over the side entrance. The adjacent subway entrance even has a one of a kind art deco design, which really stands out compared to the typical, generic green entrances you mostly see in Midtown Manhattan.
It has a gorgeous lobby as well, which continues with the overall theme of the building, and the main level is currently an Urbanspace food court. I’ve walked by so many times and didn’t give it the attention it deserves, but I’m glad I finally slowed down to appreciate it’s creative design.
What does everyone think of it? What do you folks like/dislike about it’s design?
submitted by tonyhasareddit to skyscrapers [link] [comments]


2024.05.16 23:28 justhangingoutlolz Not letting it "get to me" and staying confident

Hello. Been on HRT 6 years, full face of hair. Stealth. Terminally low self esteem. I stand at 5'3 with "small hands". It feels like theres been a massive uptick in transphobia where I live currently within the past year. To the point where most days when I go out, or am at work interacting with the general public, I am clocked, harrassed, and/or spark up public debate regarding my existence. Never really used to happen this frequently. Its been hard to stand tall in the face of all this. Ive never been one of those "out and proud" types. At first I thought I was just getting a bit lax with it all, having been solid in my identity for a good while. But I havent really changed anything in how I present and move through the world. How do you guys cope with things like this, the scrutiny and hatred and distain, and continue to love yourself and the life you live, and hold your head up high? Looking for any advice.
submitted by justhangingoutlolz to ftm [link] [comments]


2024.05.16 23:12 fanofhistory2029 The Platonic Ideal Life Path

I've recently been reflecting on my efforts at being more productive and started writing some longer form content to help structure my thoughts.
I wrote up the below in the past few days and wanted to share. Perhaps some of you have also found yourself hindered by an ongoing search for the ideal life path vs. just enjoy the journey.
Hope you find this helpful!
Despite your inflated sense of yourself, you are not, amongst all other humans, impervious to being brainwashed. This is a hardwired feature of your mind and a circuit that is operating at all times, if you allow it to do so. You aren’t being brainwashed in the cartoonish mode of being made to act like a chicken or empty your wallet. However, you are being brainwashed nonetheless.
Replace the word “brainwashed” with “influenced” and you may start to see my point. If you read me, you are not a fan of the influencers for stupid people (a la Andrew Tate) but perhaps you have more refined taste (Huberman, Attia, Ferriss, Jocko, Peterson, Newport). If there are any such personalities you are a fan of, I assure you that in your efforts to live a more productive, successful, disciplined life… you have been brainwashed.
I want to focus on how quickly the messages that you hear from these sources transition into “shoulds” that run in the background of your daily self-talk. These sources are an unending stream of great ideas for how you should wake up, how you should work, how you should eat, how you should exercise, how you should have sex, how you should meditate, how you should partake in leisure and so on. Notice that they don’t always come in the form of a statement that says “you should do x.” They may come in the form of “my typical daily routine looks like y”. Either way, your mind is primed and ready to sponge it all up.
If you were but a simple peasant farming in Ye Olde England six hundred years ago, your life was governed by a very rigid set of “shoulds”. There was the Bible, there were social norms, the rules of the king, and so. However, these were still a relatively manageable list of rules that one could live by, and it was not unreasonable to assume that you could mostly stay on the Righteous Path. Fast forward to the algo-influencer age and all bets are off. Open up any platform and within minutes, you’ll be bombarded with more “shoulds” than you can possibly keep in mind at once. This observation comes with no value judgment on the quality of what we are being told, I am only commenting on the volume.
You are wrong if you tell me that you are effective at curating the good stuff that will improve your life from the algo-influencer-Youtube-podcast-x regime. I know you think you are because, as we noted, you are a fan of the high class, refined content. The good stuff. The science backed stuff. Here’s the thing, once a source of information finds some sort of “resonance” with your subconscious, you are going to suck it all right up. All the great stuff you hear will immediately seep into your subconscious and become a constant quiet voice in the back of your mind berating you with a litany of “shoulds.”
Alas, you object - it’s all good stuff. Huberman has me locked onto managing my dopamine levels, Attia has me optimizing my diet, Dr. Zoidberg has me keeping limber, and Cal Newport is showing me how to live a deep life. I want to point out three problems with what is going on here.
Problem #1 - Your mind is not actually asking what end purpose is being served by adopting the idea that you “should” be doing a given thing.
Let’s cue Jocko Willink on this one. I am someone who, for many years, felt it was important to wake up at 4:30am because of… discipline. Why? Well, I must get up early to be up before the enemy and for freedom. I note that discipline is the ultimate meta-”should”. Discipline means getting yourself to do all the “shoulds” on your list. Can anyone tell me what outcome I’m missing out on by not partaking in a daily cold plunge, heat plunge, ice bath, or looking at the sun within 15 minutes of waking up?
Problem #2 - Even if you have a desired end goal, your mind is not doing a rigorous job of assessing whether or not a given “should” will get you there.
Most of us would like more control of our daily schedule in order to have more freedom and flexibility. The grindset types on Youtube, or on X have a common solution for us. I am not likely taking a huge leap in that one “should” you have picked up is something to do with entrepreneurship. Ok, have you really considered whether starting your own business will give you more freedom? Maybe it will… I just suspect you picked up this idea without really looking at the pros and cons.
Problem #3 - Even if you’ve been bequeathed a fantastic, grade A, “should” from someone… you’ve got more than you can handle already.
If a “should” that you heard on Youtube or read in a book resonates for some reason, your mind will take it up and start beaming you subconscious messages to do that thing. Your mind will also happily send you 10 of these at once. Are they contradictory? Who cares? I “should” wake up at 4:30, and I should sleep at least 8 hours with no alarm clock. I should also consider being a night owl creative type, and stay up late to grind if life demands it. Some “shoulds” probably aren’t even really defined to any precision. I should be more driven, more mindful, more dynamic. I genuinely feel all those impulses and can’t even begin to tell you what it would like to actually do them. Mr. Brain has no problem with cognitive dissonance, and will dutifully tell me to live up to all of these.
Let’s now talk about Adam and Eve in the Garden of Eden (as an aside, yes I also feel a “should” to be more religious, spiritual, and penitent). Well, really I want to talk about The Promised Land. I know you… you are the hard driving, disciplined type. You like to punish yourself for not living up to your expectations. Alas, you are on the verge of getting there. If you could just get a few days in a row where you nail all your “shoulds,” it will all fall into place. One perfect day will lead to the next and the next. Then, I’ll have made it. I’ll be in the land of enlightenment (and oh so productive). Fellow pilgrim, I’m right there with you on the Righteous Path.
Wait a second, something feels off. Did I say above that our mind will happily adopt any set of “shoulds” no matter how contradictory or ill-defined they may be? And, did I also say that I’m striving to get to The Promised Land by doing “All the Shoulds”? If The Righteous Path is the road that leads to The Promised Land, I’ve got some bad news for you. You are permanently off The Righteous Path. This, my friend, is why you constantly feel like you are not living up to your expectations. They are impossible - you never had a chance. It’s ok though - Jesus died for your sins and there is still a path to salvation.
Oh, but, I’m not ready for salvation, I want to rock on. Here’s what we’d all prefer to do when faced with that sensation of being off the Path. It’s time to hunker down, and go to war, and GRIND. Don’t tell me I can’t do it all. When fate whispers, “You cannot Withstand The Storm,” the Warrior Whispers, “I am the Storm.” I’m feeling chills (no really, it’s a great quote). That’s how we roll. We man up and get that shit done. Well, I hate to be the one to break it to you, but if that worked you wouldn’t still be in the market for motivational content. You are still lost… no Youtube video is going to get out of the bottomless deep of the “should.”
Back to Jesus (gasp - you didn’t warn me this would be a borderline sacrilegious article). It’s okay, Jesus is fair game in the algo-world. This is that obnoxious pause point in a self help book where there’s a worksheet page and you are asked to write stuff down. Take 10 minutes and make yourself a list of all the “shoulds” that you are feeling at this point about your life. I’ll help you get going with some prompts: businesses to start, podcasts to create, books to read, daily rituals to adopt, food to eat/not eat, workout routine to start, races to run, people to call, projects to do. You get the idea.
More work for you. Now imagine your perfect day. I mean a day that checks all the boxes. I despise rap, but seek inspiration in imagining the productivity version of the Ice Cube hit, “It was a Good Day.” How would you spend your time? Think about it hour by hour, minute by minute. When do you wake up? What do you do after waking up? How much time do you spend working? What sort of work? What else do you do? Map it all out. Imagine this as a day where you fully control your schedule.
Are you still with me? Probably not. This is too many words for the internet and I’m asking too much of your lazy ass. You should be less lazy. See what I did there? Ok, next step. Map your perfect day onto reality. Take any of the days from the past week where you had real life commitments such as work meetings, errands, childcare and ask yourself how you would map this perfect day onto that reality. Where would the three hours of Cal Newport Deep Work fit? How would you wake up at 4:30am after being up late because your kid was sick or your friend from out of town was visiting?
My point is, of course, obvious. However, don’t underestimate what I am saying. I am not saying that you can’t always have your perfect day. I am saying you can never have the perfect day. You are imposing unrealistic expectations upon reality. This conflict has always existed and you had two choices: 1) Dig deeper and muscle through because you are failing as a person to be sufficiently disciplined, or 2) Accept that your “shoulds” were always impossible to fully satisfy, and try something different.
Here’s the last thing I want you to do for now. Go back to your “should” list from the first step and take a critical eye. I give you permission to cross out as many as you’d like. If you are unsure before you cross it out, ask yourself: Where did this idea come from? Does it help me lead a happier life? Do I even agree with the premise? When in doubt, cross it out and feel the freedom.
I’ll leave you with one last message - you are probably doing just fine. Are there improvements you can make in your life? Sure, we all can. However, you aren’t failing, you aren’t straying from The Righteous Path, and there is no Promised Land. There’s just the lower case p path, and that is alright.
submitted by fanofhistory2029 to productivity [link] [comments]


2024.05.16 23:11 Weathers_Writing They call Silicon Valley the tech capitol of the world. They're wrong

I won't disclose its actual location, so if that's why you're here, sorry to disappoint. It's not time for that yet. However, I do think it's time to start getting the word out. I've noticed an increase in what I'll call "Antennas" lately, or people who can detect cross-planar phase shifts. Without getting into all the math (some of which I don't even know), this is basically a phenomenon which refers to entropy seeping into our universe from other realms or universes or whatever you want to call it. Simply put, people think our universe is a closed system to entropy, meaning that the disorder of any variable in our universe can only increase or decrease in direct proportion to other variables in that same system (the universe). Under this precept, we can establish rules like the Laws of Thermodynamics, and for most people, they're effective. But not for Antennas.
Put another way, if you throw a bunch of bouncy balls into a box, there are a number of different configurations that the balls could take on, with different speeds and magnitudes. You can calculate all of those if you have the right numbers. Now let's say you throw in another set of balls that you don't consider in your calculations of the initial set. Well, then you're not going to get an accurate picture of what's happening. Most people only see the first set and calculate based on that, but some people can see two, three, four or more sets.
You'll understand the concept better when I tell you the story, but I wanted to give you a primer on an important concept that will help you understand why this place, which I'll call "Area X", exists, and what the goals of the people who work there are.
Also note that I'm going to be using the alias "Trent" moving forward. Please refer to me as such in any direct messages.
***
Eighteen years ago I started working as an independent Home Inspector. I dropped out of community college after my first semester (not because I didn't find some of the subjects interesting, but because deference to a man or woman has never been my style) and started working some odd jobs. I did construction work for a couple years, then plumbing. I even drove a garbage truck for six months. I've always found pleasure in using my hands, and getting dirty was never a problem for me. Still, having a boss really dragged ass, so I spent my free time working on creating my own business. It took a few years and lots of savings, but I finally managed to get basic set of Home Inspection equipment: Tyvek coveralls, a cheap half-face respirator, voltage & AFCI/GFCI testers, CO2 and radon monitors, an IR camera, and telescoping mirrors in addition to the boots, safety glasses, electric gloves, ladder, and toolkits I already had on hand.
My buddy at the time was in the business, but he was moving off to the coast, so he helped me get set up and even introduced me to some of his clients. Of course, by that time I had already gotten my State license, but I still was a bit apprehensive to work with insurance agencies. I thought I could make a living working independently, inspecting for mold or sizing up a house for a prospective buyer. Eventually, though, I realized I should probably take every job available to me.
Easing into the business went about as well as it could have. The clients my friend referred to me were very satisfied with my work, and I was able to retain them. Then, in order to increase my reach, I hired someone on Fiverr to build a website for my company which led to a marked increase in traffic and conversions. About six months through, I began to get on a first-name basis with the boys and girls down down at Allstate and Progressive, and they fed me some of the bigger cases. In fact, I got so booked by year's end that I had to hire someone to help manage my schedule and the Excel spreadsheet with all my finances. I capped off a successful year with a 5-star Google rating and a trip to Ireland to visit some family and friends and get piss drunk. When I got back, it was the grindstone all over again, until the summer when I discovered… well, you'll see.
First off, I want to say that I was never one to believe in the paranormal. I grew up watching the movies and hearing the ghost stories round the campfire like every other kid, but it never struck a chord with me. If I can't touch it or see it or hear it, does it really exist? Probably not. So don't go thinking this was a scared man seeing his own shadow. That being said, I had this sense that something was off about this house when I parked along the curb and looked through a large window, perhaps two times the size of my van, to a dingy, dark foyer.
The entire neighborhood was stacked with upper-middle class domiciles, though it seemed like only two thirds of them were occupied, mostly by professionals who commuted to the City every weekday, and the rest were empty. As a man who understands real estate, to say this was strange would be an understatement. Still, I had no problem appraising the mini-mansion for a couple of newlyweds looking to enter the community. I did some research on the property ahead of time, and it seems that it was owned by a couple of old timers who had gone off the grid some time ago. The water and electric bill were both unpaid dating back to 2004 (it was June of '06 now). The bank had repo'd the house (which only had about 100k left on it) and held it for a year and a half before putting it back on the market. I tried to find out more about the old couple who vanished, but there was nothing in the news.
I stepped out of the van in my coveralls and grabbed my suitcase which had my mask, gloves, and eye protection in it. I liked to do a preliminary survey first, running an eye test on the exterior then interior before bringing out the big guns (that way I could identify the areas where I think there could be problems instead of running a metal detector over the whole damn ocean seaboard). I was about to do just that when the window caught my eye again. It felt uncharacteristic of me to be so occupied with this window, but I detoured to the front porch and peeked inside anyway.
Most of the furniture had already been moved out, meaning all that was left was a single three-seater couch, a couple candlesticks on the fireplace mantle, a pristine chandelier overtop a dining room table, and the kitchenware: an oven, gas stovetop, marble countertops, and an island. I could see into the living room very clearly with the afternoon light, but the dining room was dim enough that there were a few structures I couldn't quite make out in the distance. One of them appeared to be some kind of china cabinet or bookshelf—I figured it was the former considering where it was located. The other shadow looked kind of like a grandfather clock. Or at least that's what I thought until it moved.
When I say it "moved", I don't mean to say that it picked up and walked away. If you're not familiar with the Necker Cube, I suggest you search it up, because that kind of illusion is the best way to describe what I saw. At first I was seeing the grandfather clock in a certain way—pushed into the corner of the room—and the next second my vision "corrected" and it was maybe five feet to the left of its former position. I shook my head and looked again and saw the grandfather clock in its second orientation, standing in the center of the room against the wall. I figured I was just seeing things, but even so I spent a little extra time dawdling around the Egress window, taking notes, and delaying the interior inspection.
When I finally grew a pair and went inside, I walked straight to the dining room. Sure enough, the grandfather clock was stowed away in the corner of the room. I spent a couple minutes watching it with my pencil and travel notebook out. I'm the kind of guy that likes to collect hard data when the chips are down. Unfortunately, the clock apparently already had enough fun and was content with sweating me. Oh, well.
I fitted my pencil behind my ear and pocketed my travel notebook, then flipped the rest of the first floor lights on and completed my prelim. I concluded that everything was pretty standard. If anything, the house was in better shape than I'd expect considering it presumably hasn't been lived in for a couple years. I say "presumably" because one can never count out squatters, even during those times. Mainly I was expecting more dust build up and cobwebs than there were. Perhaps someone from the department had come by recently. It's unlikely, but possible.
I did the same check upstairs and it came back mostly clean. There was a bit of staining near the attic I wanted to check for mold. Based on its color, it was probably just a minor case of Aspergillus, but better safe than sorry. Then I got to the basement, and, well, let's just count out the idea of anyone dropping by. I don't know what I was expecting, but it certainly wasn't what I found.
The first thing that caught my eye was the long, slender body of a birch tree lying pale and dead across a large portion of the even larger unfinished basement's cement flooring. I had to do a double take to make sure I wasn't dreaming, but, yep, there it was. Its crown was sealed up in the wall with only its trunk hanging out, which made me think of those medieval pillory devices which locked up people's heads and arms. Then confetti-scattered around the tree and all over the basement floor was a minefield of broken glass and ceramic tangled up with a set of random objects. And when I say random, I mean random. There was an unfurled Somali flag (the blue one with a single star in the center), some packaged drinks and condiments branded with all sorts of different languages (I could only make out Gaelic and Chinese or Japanese, I couldn't quite tell), a broken dome-shaped security camera, an otoscope (the thing the doc uses to check your ears), Hot Wheels cars (okay that one isn't so strange), and the list goes on.
At that moment, I wasn't freaked out or disgusted. I was more or less just confused. I started walking through the rubble, trying to avoid the sharp fragments but pretty confident that my steel toed boots would crush most the pieces anyway, when I heard a clink just up ahead. I was able to spot the coin in time, just before it jingled to a halt atop an old Life magazine. I picked it up and noted right away its oval shape and bronze color—clearly not American made. I tried reading it, but not only was the language not English, it appeared to be so old that most of the lettering had been filed down. I looked up at the ceiling to see if it dropped from a shelf, but there was nothing that could have been holding the coin. I considered for a moment, looking around at the other junk, and had the crazy idea that maybe all this stuff just appeared here. I popped the coin in my pocket and headed back to the van when I stopped by the tree and realized something. It wasn't a birch tree—it was a palm tree. I just didn't realize because of how ashy and decayed the bark was.
Now at this point you might think I've been acting a little nonchalant for such a strange occurrence, and I don't blame you, but if you're gonna stick around with me that's just something you're gonna have to get used to. I guess I was just born with a screw loose, but I really don't scare easily, and I tend to look at everything pragmatically. If you dig deep enough, you'll always find another plausible explanation. That being said, I do want to get to the part about Area X, so let me give you the rundown on what I learned about this basement.
I ended up trekking back to the van and picking up my gear. I was no longer running the routine inspection, obviously, but I figured I might as well throw 30 thousand dollars of scanning equipment at whatever the fuck anamoly existed in that basement. Most of it came back negative. There was a bit higher-than-usual EM interference as picked up on the voltmeters, but nothing that screamed danger close. Still, it was enough for me to set up my volt testers and IR camera while muddling through the rest of the junk. I won't bore you with another list of items, but I did find one thing of value: a diamond necklace. And not just any diamond necklace, it was one of those Queen-wearing, multi-row, big-jeweled necklaces like out of some Historical Fiction movie from the thirties. I almost didn't pocket it because I'm used to expensive items being owned by someone… someone who might want it back. But I figured if there was ever a place the finder's keeper's rule applied, it was probably in this Quantum graveyard.
7 O'clock rolled around and I hadn't eaten. I'm a pretty bulky guy, carrying my share of both muscle and fat, and most people think that means I need to eat a ton but that's really not the case. Mostly I just get dehydrated easily, especially in the summer. That said, I was bordering on famished territory and considered heading out for a bite when I heard another sound. The first thing I did was check my scanners, and sure enough the voltage needle was fully spun to the right side of the dial. EM interference. Then I went to see what had dropped. I was able to pick the object out pretty quickly since I had spent the last 6 hours staring at the mosaic of a basement floor. It was a silver briefcase, like one of those out of a crime novel, and it was cracked open.
I had this sense then that I was standing at a precipice, and if I opened the briefcase and looked inside, I wouldn't be able to stop whatever would come afterwards. Part of me deep down knew that I was just that type of guy that had to know, and maybe this was my Hamlet moment where it would be a trait gone a step too far. But then again I didn't really believe in any of that sentimental bullshit, so I opened the briefcase.
The gun surprised me a little, but not as much as the piece of paper laid atop a case file reading in large black font, "FIND ME". I expected the envelope to have some missing person file in it, but instead there were all these schematics and blueprints for some kind of device. Whatever it was, it was pretty massive. Some of the lengths were hundreds of meters long. And what's more strange is based on the blueprint's locale, it appeared to be underground. I looked back through the pages a couple times, then checked the note—nothing strange there. The gun appeared to be a simple glock. I was no gun expert, but I had been to the range pretty regularly with my construction buddies, so I got used to the feel of a pistol and rifle and some of the different names; however, I realized pretty quickly it wasn't your standard glock when I couldn't find mag-release. That's when I noticed how light the gun felt. I tried to chamber a round, but again, there was no hammer. What the hell kind of gun was this?
I ended up throwing everything back in the briefcase, including the necklace, coin, and a few Koozies I found that were branded with one of my favorite sports teams (never let an opportunity go to waste). I put up all my shit back in the van and spun over to a local burger joint, got my fill, and went home. I made sure to draft an email to the prospective buyers, telling them the house had several patches of black mold and a bit of a rat problem before drifting off to sleep. Although I really didn't do much of that.
When I woke up, I took a cold shower and downed a can of Reign, then commuted to my gym and got a lift and some sauna time in before making the trip back to the house. I brought some extra supplies with me for some experiments I cooked up while not sleeping the previous night.
First, I had two camcorders set up on a couple tripods in either corner of the basement. I wanted clear footage of these mystery objects spawning in. Then I set up a voltmeter in a similar fashion, but I had a wire extending out of it on a circuit which fed to an alarm that would blare when the reading was over 250 volts. Upstairs, I rearranged some of the furniture so that the small number of tables, chairs, clock, cabinets, and other little pillows or vases I could find were scattered across the living room, dining room, and kitchen. Then I pulled up a lawn chair to the front porch window and waited.
I didn't have to wait long though. In about a minute, I started to notice some of the objects moving. It was strange. When a few of them would shift simultaneously, it was like looking at a holographic card that would change shape depending on where your eyes were in relation to the image. Every time I saw a shift, I felt an awkward feeling in my eyes. They went blurry for a fraction of a second, then there was a twinge of pain, as if my brain couldn't handle the contradictory stimulus. It didn't get more crazy than that though—until the alarm went off.
I had cracked open the small rectangular window in the basement to the side of the house so I would hear it. It took four hours and several strange stares from passersby walking their dogs before it rang, so I was a bit lost in my thoughts, but when I heard the beep I perked up fast. It lasted for maybe 5 seconds total, but what I saw was truly miraculous. The best way I can describe it is a pool of silver or gray or translucent light emerging in the foreground between me and the objects in the different rooms. A series of twisting tentacles sprouted from the gray octopus-like head and spun in a way that reminded me of that little kids ride at the amusement parks. Then the objects started to "heat up" is the way I describe it. Their position became relative, meaning they were here one second, there another, then they popped out of existence entirely. Suddenly the rooms were all empty, then they were full of things I had never seen before. Then five seconds passed and the octopus vanished and it was back to the same old objects in their usual places.
It took a few minutes to process what I saw, and even then I wasn't sure I really saw it. I went inside and looked around at my distribution of the house's furnishings. They were all there, intact. Then I went downstairs to check the cams. I rewinded a couple minutes and played it back, but there was no flying object to be found. Instead, there was some gray static that lasted half a second and then the object, a kid's treasure chest toy, was there on the ground. But you want to know the really strange part? I rewinded the tape again, and when I watched the footage back, the treasure chest was always there.
I later came to understand that these poppings in-and-out of our reality are only conceivable to a conscious mind that can track the interference patterns—not rote computational instruments. In fact, even most people can't do it (although everyone has at least a slight awareness of it, even if only subconsciously). Plus, locations like the basement of this house are very rare and kept under tight lock. That became obvious to me two days later when, after my normal morning routine, I pulled up to a driveway and curbside filled with unmarked government vehicles. Either bravely or stupidly, I pulled up to a few officers (they were wearing suits in 85 degree weather, so I assumed…) who were idling by the large fence of crime scene tape and asked them what the score was.
"There was a crime," said the short man with a unibrow.
"Oh, is that right? Damn shame. Someone break in? I have a niece who lives nearby, so…"
The man looked at his two compatriots, both of whom were wearing sunglasses and a "get this civilian fuck out of here" expressions. "Oh, yeah," he started in a reassuring tone that was so condescending it would have annoyed anyone except me, "we found a body. We think it was a homicide. Best to keep your kids away from here for a while."
I thumbed the stubble on my chin, my other hand outstretched on the wheel, and considered moving on, but my mouth had other ideas. "That right? But uh, isn't this house vacant? I mean, I don't remember no one living in it."
The short man, now tall with temper, said, "Yeah, some squatters. We think there was a dispute over some drug money. Nothing for you to worry about though, we got it under control. Now if you wouldn't mind moving along, we have a lot of work to do."
Oh, I'm sure you do, I thought, but only said, "Of course, sir, sorry for keeping you from your job." Then I rolled up the window and cruised on, keeping my eyes on the house which slowly diminished in the side-view mirror.
Luckily I had been smart enough to break down my camp and lug home all my equipment each night, so I didn't leave anything incriminating. I didn't move the furniture back, so maybe that would come back to haunt me, but considering the kind of shit going down in that house, I didn't think they would notice.
For any of you wondering about the conclusion of the house story, I went back a couple weeks later after the suits had left and the tape was taken down and confirmed that not only was the basement entirely cleaned out, but it was no longer exhibiting any strange properties. I looked for a story related to the house, maybe a made up murder of some kind, but there was nothing. That bastard lied to me and didn't even bother to cover his story up.
Now, in the aftermath of an event such as this, I really only had one of two options. I could forget it, move on, continue living life. The necklace was surely worth a fortune. I could sell it and have enough to retire, or at least hire enough people and expand my business large enough to retire within ten or so years. Or I could take all that money and invest it in my own PI business with only a single objective: finding out what those people knew, and why they were hiding it.
I think you know me well enough by now to guess which line of reasoning appealed more to me.
***
For the sake of brevity, I'm going to omit most of my encounters along the journey to discovering Area X. There's a lot to tell, and if it appeals to you perhaps I'd be willing to share at a later date, but for now I want to get this part of the story, the more proximal part, out in the open.
Three years ago, I discovered the source of what I'll call "The Receiver". This is the device that was schematized in the documents that I found in the briefcase. What it does is a complex answer, and how it does it is pretty much all speculation, but here's what I've been able to find out: this universe we live in is a node in a network of many other spaces. These spaces exist in higher dimensions that we cannot directly perceive, but using a conceivable analogy, just think about a flower with petals. The petals are these other dimensions which bleed into our world, which is at the center. However, it's not that pretty. We see the physical world through the lens of spacetime: sizes, speeds, etc. These other dimensions don't necessarily have space or time. In fact, what actually exists there, I couldn't say. The only data I have on them is from two sources: correspondence information and server data from the secret agency (which I'll call "the Organization") that keeps this under wraps, and first-hand experience with realms from these other entities, either directly (I experience it) or through the eyes of someone else with the same or greater abilities than I possess.
I referred to these people with abilities earlier as "Antennas", and I will continue to use the term. Antennas really come in three flavors, marked by the strength of their ability: weak Antennas, like me, are able to observe spontaneous interactions between our universe and other dimensions (phase shifts) when there is a strong force of collision like existed in the basement; moderate Antennas may see phase shifts occur at any point, and they usually are able to retain memories from across the different transformations; strong Antennas, and I don't know if they exist yet, but they are able to consciously interact with these other realms and cause phase shifts to occur.
I mentioned that moderate Antennas are able to retain memories from before and after a phase shift. Technically, all Antennas have this ability, but it's about degree. I can recall only very specific instances and without much detail. Moderates are usually able to pick out much more nuanced minutiae. At the lower end of moderate scale, most of those details fade or get fuzzy over time, but for the very strong Antennas, they hold onto almost everything. One other property that scales with strength is interaction with other conscious entities. Only a small percentage of moderates are able to do this. What's interesting is that these entities can possess (yes, like ghosts) people who aren't even antennas, but no one is aware of such possession at this deep of a level. I have several companions now, and only two have had interactions with these otherworldly beings. Not all of them are malevolent, some of them are whimsical or kind, but there are a fair share of demons out there.
Getting back to the point, Area X started as a government funded project in the 70's. At that time, they were focused on a few subjects: Artificial Intelligence, DNA sequencing, and psychedelics. Yes, they were part of the infamous LSD experiments. But they looked at these subjects through a common lens—there was something that the burgeoning tech industry, fueled by the advent of a commercial computer market, was missing. As the tech giants rose in the early 2000's and began to collect mass amounts of data, this other agency was decades ahead in a different metric, although it was completely (and still is) hidden from the public. Their efforts to understand psychedelic experiences led to a formalized method of understanding interactions between multiple realities. They built certain scanning equipment to detect anomalies like the one I found in the basement; although their tools were much more sophisticated and didn't utilize voltage readings. Then they ran tests in these areas. One area in particular is a hot-bed of phase shift interactions. That's where Area X is located (and the Receiver).
The Receiver is a giant electromagnetic orb that has trapped the kind of multi-dimensional energy that causes the phase shifts; since the Organization seized control of the lab, it's effectively become a map of the Earth in relation to these other worlds. For the past twenty or so years, the Organization has been studying this map, using the data big Tech companies have collected to essentially develop a Rosetta Stone for interpreting the meaning of the fluctuations in their scanning equipment. Recently, the public, though going the long way round, was actually pretty close to a breakthrough in this same department until recently when ultra-powerful LLMs surfaced, and the whole world began going down what I'd argue is the wrong rabbit hole of language processing. But I digress.
Area X is essentially a private military base built for defending the most impactful piece of technology ever invented. With the Receiver, the Organization now has the power to essentially predict any and all future outcomes, the only thing holding them back is the limitations of their own scanning equipment which will get better with time. To put it into perspective, the Organization has access to a kind of data allocation tool which in one day can produce over ten thousand times that the Big Data companies combined would be able to filter through in the next decade. You might think, then, that the problem is merely asymmetric power, and that is certainly a concern, but it isn't the main concern. The main issue is that this organization is actively recruiting (and kidnapping) Antennas from around the world in an effort to find or make one of them into a strong Antenna. In other words, they want a subject who is able not only to see the future, but to manipulate it at will.
balance to the world. I've been working on amassing resources, capital, and building my own team, and now I'm ready. You might ask why I'm posting this here. Wouldn't it be better to keep all this secret? Well, yes, it would be. But that's the problem. Nothing is secret anymore. They know about me and the others, and if I don't make a move, they will. In a way, this is a letter directly to the organization that I know, and I'm coming.
In a different way, I wanted to release this information to the public. There are lots of people out there waking up and realizing that the world they experience is not the one others experience. If you think you might be an Antenna, don't be afraid—you have a special gift that can be controlled. If you want more details on how to control it, or if you're interested in my mission, don't be afraid to reach out. This hasn't always been my life's work, but it is now.
At least until I die.
submitted by Weathers_Writing to weatherswriting [link] [comments]


2024.05.16 23:10 Weathers_Writing They call Silicon Valley the tech capitol of the world. They're wrong

I won't disclose its actual location, so if that's why you're here, sorry to disappoint. It's not time for that yet. However, I do think it's time to start getting the word out. I've noticed an increase in what I'll call "Antennas" lately, or people who can detect cross-planar phase shifts. Without getting into all the math (some of which I don't even know), this is basically a phenomenon which refers to entropy seeping into our universe from other realms or universes or whatever you want to call it. Simply put, people think our universe is a closed system to entropy, meaning that the disorder of any variable in our universe can only increase or decrease in direct proportion to other variables in that same system (the universe). Under this precept, we can establish rules like the Laws of Thermodynamics, and for most people, they're effective. But not for Antennas.
Put another way, if you throw a bunch of bouncy balls into a box, there are a number of different configurations that the balls could take on, with different speeds and magnitudes. You can calculate all of those if you have the right numbers. Now let's say you throw in another set of balls that you don't consider in your calculations of the initial set. Well, then you're not going to get an accurate picture of what's happening. Most people only see the first set and calculate based on that, but some people can see two, three, four or more sets.
You'll understand the concept better when I tell you the story, but I wanted to give you a primer on an important concept that will help you understand why this place, which I'll call "Area X", exists, and what the goals of the people who work there are.
Also note that I'm going to be using the alias "Trent" moving forward. Please refer to me as such in any direct messages.
***
Eighteen years ago I started working as an independent Home Inspector. I dropped out of community college after my first semester (not because I didn't find some of the subjects interesting, but because deference to a man or woman has never been my style) and started working some odd jobs. I did construction work for a couple years, then plumbing. I even drove a garbage truck for six months. I've always found pleasure in using my hands, and getting dirty was never a problem for me. Still, having a boss really dragged ass, so I spent my free time working on creating my own business. It took a few years and lots of savings, but I finally managed to get basic set of Home Inspection equipment: Tyvek coveralls, a cheap half-face respirator, voltage & AFCI/GFCI testers, CO2 and radon monitors, an IR camera, and telescoping mirrors in addition to the boots, safety glasses, electric gloves, ladder, and toolkits I already had on hand.
My buddy at the time was in the business, but he was moving off to the coast, so he helped me get set up and even introduced me to some of his clients. Of course, by that time I had already gotten my State license, but I still was a bit apprehensive to work with insurance agencies. I thought I could make a living working independently, inspecting for mold or sizing up a house for a prospective buyer. Eventually, though, I realized I should probably take every job available to me.
Easing into the business went about as well as it could have. The clients my friend referred to me were very satisfied with my work, and I was able to retain them. Then, in order to increase my reach, I hired someone on Fiverr to build a website for my company which led to a marked increase in traffic and conversions. About six months through, I began to get on a first-name basis with the boys and girls down down at Allstate and Progressive, and they fed me some of the bigger cases. In fact, I got so booked by year's end that I had to hire someone to help manage my schedule and the Excel spreadsheet with all my finances. I capped off a successful year with a 5-star Google rating and a trip to Ireland to visit some family and friends and get piss drunk. When I got back, it was the grindstone all over again, until the summer when I discovered… well, you'll see.
First off, I want to say that I was never one to believe in the paranormal. I grew up watching the movies and hearing the ghost stories round the campfire like every other kid, but it never struck a chord with me. If I can't touch it or see it or hear it, does it really exist? Probably not. So don't go thinking this was a scared man seeing his own shadow. That being said, I had this sense that something was off about this house when I parked along the curb and looked through a large window, perhaps two times the size of my van, to a dingy, dark foyer.
The entire neighborhood was stacked with upper-middle class domiciles, though it seemed like only two thirds of them were occupied, mostly by professionals who commuted to the City every weekday, and the rest were empty. As a man who understands real estate, to say this was strange would be an understatement. Still, I had no problem appraising the mini-mansion for a couple of newlyweds looking to enter the community. I did some research on the property ahead of time, and it seems that it was owned by a couple of old timers who had gone off the grid some time ago. The water and electric bill were both unpaid dating back to 2004 (it was June of '06 now). The bank had repo'd the house (which only had about 100k left on it) and held it for a year and a half before putting it back on the market. I tried to find out more about the old couple who vanished, but there was nothing in the news.
I stepped out of the van in my coveralls and grabbed my suitcase which had my mask, gloves, and eye protection in it. I liked to do a preliminary survey first, running an eye test on the exterior then interior before bringing out the big guns (that way I could identify the areas where I think there could be problems instead of running a metal detector over the whole damn ocean seaboard). I was about to do just that when the window caught my eye again. It felt uncharacteristic of me to be so occupied with this window, but I detoured to the front porch and peeked inside anyway.
Most of the furniture had already been moved out, meaning all that was left was a single three-seater couch, a couple candlesticks on the fireplace mantle, a pristine chandelier overtop a dining room table, and the kitchenware: an oven, gas stovetop, marble countertops, and an island. I could see into the living room very clearly with the afternoon light, but the dining room was dim enough that there were a few structures I couldn't quite make out in the distance. One of them appeared to be some kind of china cabinet or bookshelf—I figured it was the former considering where it was located. The other shadow looked kind of like a grandfather clock. Or at least that's what I thought until it moved.
When I say it "moved", I don't mean to say that it picked up and walked away. If you're not familiar with the Necker Cube, I suggest you search it up, because that kind of illusion is the best way to describe what I saw. At first I was seeing the grandfather clock in a certain way—pushed into the corner of the room—and the next second my vision "corrected" and it was maybe five feet to the left of its former position. I shook my head and looked again and saw the grandfather clock in its second orientation, standing in the center of the room against the wall. I figured I was just seeing things, but even so I spent a little extra time dawdling around the Egress window, taking notes, and delaying the interior inspection.
When I finally grew a pair and went inside, I walked straight to the dining room. Sure enough, the grandfather clock was stowed away in the corner of the room. I spent a couple minutes watching it with my pencil and travel notebook out. I'm the kind of guy that likes to collect hard data when the chips are down. Unfortunately, the clock apparently already had enough fun and was content with sweating me. Oh, well.
I fitted my pencil behind my ear and pocketed my travel notebook, then flipped the rest of the first floor lights on and completed my prelim. I concluded that everything was pretty standard. If anything, the house was in better shape than I'd expect considering it presumably hasn't been lived in for a couple years. I say "presumably" because one can never count out squatters, even during those times. Mainly I was expecting more dust build up and cobwebs than there were. Perhaps someone from the department had come by recently. It's unlikely, but possible.
I did the same check upstairs and it came back mostly clean. There was a bit of staining near the attic I wanted to check for mold. Based on its color, it was probably just a minor case of Aspergillus, but better safe than sorry. Then I got to the basement, and, well, let's just count out the idea of anyone dropping by. I don't know what I was expecting, but it certainly wasn't what I found.
The first thing that caught my eye was the long, slender body of a birch tree lying pale and dead across a large portion of the even larger unfinished basement's cement flooring. I had to do a double take to make sure I wasn't dreaming, but, yep, there it was. Its crown was sealed up in the wall with only its trunk hanging out, which made me think of those medieval pillory devices which locked up people's heads and arms. Then confetti-scattered around the tree and all over the basement floor was a minefield of broken glass and ceramic tangled up with a set of random objects. And when I say random, I mean random. There was an unfurled Somali flag (the blue one with a single star in the center), some packaged drinks and condiments branded with all sorts of different languages (I could only make out Gaelic and Chinese or Japanese, I couldn't quite tell), a broken dome-shaped security camera, an otoscope (the thing the doc uses to check your ears), Hot Wheels cars (okay that one isn't so strange), and the list goes on.
At that moment, I wasn't freaked out or disgusted. I was more or less just confused. I started walking through the rubble, trying to avoid the sharp fragments but pretty confident that my steel toed boots would crush most the pieces anyway, when I heard a clink just up ahead. I was able to spot the coin in time, just before it jingled to a halt atop an old Life magazine. I picked it up and noted right away its oval shape and bronze color—clearly not American made. I tried reading it, but not only was the language not English, it appeared to be so old that most of the lettering had been filed down. I looked up at the ceiling to see if it dropped from a shelf, but there was nothing that could have been holding the coin. I considered for a moment, looking around at the other junk, and had the crazy idea that maybe all this stuff just appeared here. I popped the coin in my pocket and headed back to the van when I stopped by the tree and realized something. It wasn't a birch tree—it was a palm tree. I just didn't realize because of how ashy and decayed the bark was.
Now at this point you might think I've been acting a little nonchalant for such a strange occurrence, and I don't blame you, but if you're gonna stick around with me that's just something you're gonna have to get used to. I guess I was just born with a screw loose, but I really don't scare easily, and I tend to look at everything pragmatically. If you dig deep enough, you'll always find another plausible explanation. That being said, I do want to get to the part about Area X, so let me give you the rundown on what I learned about this basement.
I ended up trekking back to the van and picking up my gear. I was no longer running the routine inspection, obviously, but I figured I might as well throw 30 thousand dollars of scanning equipment at whatever the fuck anamoly existed in that basement. Most of it came back negative. There was a bit higher-than-usual EM interference as picked up on the voltmeters, but nothing that screamed danger close. Still, it was enough for me to set up my volt testers and IR camera while muddling through the rest of the junk. I won't bore you with another list of items, but I did find one thing of value: a diamond necklace. And not just any diamond necklace, it was one of those Queen-wearing, multi-row, big-jeweled necklaces like out of some Historical Fiction movie from the thirties. I almost didn't pocket it because I'm used to expensive items being owned by someone… someone who might want it back. But I figured if there was ever a place the finder's keeper's rule applied, it was probably in this Quantum graveyard.
7 O'clock rolled around and I hadn't eaten. I'm a pretty bulky guy, carrying my share of both muscle and fat, and most people think that means I need to eat a ton but that's really not the case. Mostly I just get dehydrated easily, especially in the summer. That said, I was bordering on famished territory and considered heading out for a bite when I heard another sound. The first thing I did was check my scanners, and sure enough the voltage needle was fully spun to the right side of the dial. EM interference. Then I went to see what had dropped. I was able to pick the object out pretty quickly since I had spent the last 6 hours staring at the mosaic of a basement floor. It was a silver briefcase, like one of those out of a crime novel, and it was cracked open.
I had this sense then that I was standing at a precipice, and if I opened the briefcase and looked inside, I wouldn't be able to stop whatever would come afterwards. Part of me deep down knew that I was just that type of guy that had to know, and maybe this was my Hamlet moment where it would be a trait gone a step too far. But then again I didn't really believe in any of that sentimental bullshit, so I opened the briefcase.
The gun surprised me a little, but not as much as the piece of paper laid atop a case file reading in large black font, "FIND ME". I expected the envelope to have some missing person file in it, but instead there were all these schematics and blueprints for some kind of device. Whatever it was, it was pretty massive. Some of the lengths were hundreds of meters long. And what's more strange is based on the blueprint's locale, it appeared to be underground. I looked back through the pages a couple times, then checked the note—nothing strange there. The gun appeared to be a simple glock. I was no gun expert, but I had been to the range pretty regularly with my construction buddies, so I got used to the feel of a pistol and rifle and some of the different names; however, I realized pretty quickly it wasn't your standard glock when I couldn't find mag-release. That's when I noticed how light the gun felt. I tried to chamber a round, but again, there was no hammer. What the hell kind of gun was this?
I ended up throwing everything back in the briefcase, including the necklace, coin, and a few Koozies I found that were branded with one of my favorite sports teams (never let an opportunity go to waste). I put up all my shit back in the van and spun over to a local burger joint, got my fill, and went home. I made sure to draft an email to the prospective buyers, telling them the house had several patches of black mold and a bit of a rat problem before drifting off to sleep. Although I really didn't do much of that.
When I woke up, I took a cold shower and downed a can of Reign, then commuted to my gym and got a lift and some sauna time in before making the trip back to the house. I brought some extra supplies with me for some experiments I cooked up while not sleeping the previous night.
First, I had two camcorders set up on a couple tripods in either corner of the basement. I wanted clear footage of these mystery objects spawning in. Then I set up a voltmeter in a similar fashion, but I had a wire extending out of it on a circuit which fed to an alarm that would blare when the reading was over 250 volts. Upstairs, I rearranged some of the furniture so that the small number of tables, chairs, clock, cabinets, and other little pillows or vases I could find were scattered across the living room, dining room, and kitchen. Then I pulled up a lawn chair to the front porch window and waited.
I didn't have to wait long though. In about a minute, I started to notice some of the objects moving. It was strange. When a few of them would shift simultaneously, it was like looking at a holographic card that would change shape depending on where your eyes were in relation to the image. Every time I saw a shift, I felt an awkward feeling in my eyes. They went blurry for a fraction of a second, then there was a twinge of pain, as if my brain couldn't handle the contradictory stimulus. It didn't get more crazy than that though—until the alarm went off.
I had cracked open the small rectangular window in the basement to the side of the house so I would hear it. It took four hours and several strange stares from passersby walking their dogs before it rang, so I was a bit lost in my thoughts, but when I heard the beep I perked up fast. It lasted for maybe 5 seconds total, but what I saw was truly miraculous. The best way I can describe it is a pool of silver or gray or translucent light emerging in the foreground between me and the objects in the different rooms. A series of twisting tentacles sprouted from the gray octopus-like head and spun in a way that reminded me of that little kids ride at the amusement parks. Then the objects started to "heat up" is the way I describe it. Their position became relative, meaning they were here one second, there another, then they popped out of existence entirely. Suddenly the rooms were all empty, then they were full of things I had never seen before. Then five seconds passed and the octopus vanished and it was back to the same old objects in their usual places.
It took a few minutes to process what I saw, and even then I wasn't sure I really saw it. I went inside and looked around at my distribution of the house's furnishings. They were all there, intact. Then I went downstairs to check the cams. I rewinded a couple minutes and played it back, but there was no flying object to be found. Instead, there was some gray static that lasted half a second and then the object, a kid's treasure chest toy, was there on the ground. But you want to know the really strange part? I rewinded the tape again, and when I watched the footage back, the treasure chest was always there.
I later came to understand that these poppings in-and-out of our reality are only conceivable to a conscious mind that can track the interference patterns—not rote computational instruments. In fact, even most people can't do it (although everyone has at least a slight awareness of it, even if only subconsciously). Plus, locations like the basement of this house are very rare and kept under tight lock. That became obvious to me two days later when, after my normal morning routine, I pulled up to a driveway and curbside filled with unmarked government vehicles. Either bravely or stupidly, I pulled up to a few officers (they were wearing suits in 85 degree weather, so I assumed…) who were idling by the large fence of crime scene tape and asked them what the score was.
"There was a crime," said the short man with a unibrow.
"Oh, is that right? Damn shame. Someone break in? I have a niece who lives nearby, so…"
The man looked at his two compatriots, both of whom were wearing sunglasses and a "get this civilian fuck out of here" expressions. "Oh, yeah," he started in a reassuring tone that was so condescending it would have annoyed anyone except me, "we found a body. We think it was a homicide. Best to keep your kids away from here for a while."
I thumbed the stubble on my chin, my other hand outstretched on the wheel, and considered moving on, but my mouth had other ideas. "That right? But uh, isn't this house vacant? I mean, I don't remember no one living in it."
The short man, now tall with temper, said, "Yeah, some squatters. We think there was a dispute over some drug money. Nothing for you to worry about though, we got it under control. Now if you wouldn't mind moving along, we have a lot of work to do."
Oh, I'm sure you do, I thought, but only said, "Of course, sir, sorry for keeping you from your job." Then I rolled up the window and cruised on, keeping my eyes on the house which slowly diminished in the side-view mirror.
Luckily I had been smart enough to break down my camp and lug home all my equipment each night, so I didn't leave anything incriminating. I didn't move the furniture back, so maybe that would come back to haunt me, but considering the kind of shit going down in that house, I didn't think they would notice.
For any of you wondering about the conclusion of the house story, I went back a couple weeks later after the suits had left and the tape was taken down and confirmed that not only was the basement entirely cleaned out, but it was no longer exhibiting any strange properties. I looked for a story related to the house, maybe a made up murder of some kind, but there was nothing. That bastard lied to me and didn't even bother to cover his story up.
Now, in the aftermath of an event such as this, I really only had one of two options. I could forget it, move on, continue living life. The necklace was surely worth a fortune. I could sell it and have enough to retire, or at least hire enough people and expand my business large enough to retire within ten or so years. Or I could take all that money and invest it in my own PI business with only a single objective: finding out what those people knew, and why they were hiding it.
I think you know me well enough by now to guess which line of reasoning appealed more to me.
***
For the sake of brevity, I'm going to omit most of my encounters along the journey to discovering Area X. There's a lot to tell, and if it appeals to you perhaps I'd be willing to share at a later date, but for now I want to get this part of the story, the more proximal part, out in the open.
Three years ago, I discovered the source of what I'll call "The Receiver". This is the device that was schematized in the documents that I found in the briefcase. What it does is a complex answer, and how it does it is pretty much all speculation, but here's what I've been able to find out: this universe we live in is a node in a network of many other spaces. These spaces exist in higher dimensions that we cannot directly perceive, but using a conceivable analogy, just think about a flower with petals. The petals are these other dimensions which bleed into our world, which is at the center. However, it's not that pretty. We see the physical world through the lens of spacetime: sizes, speeds, etc. These other dimensions don't necessarily have space or time. In fact, what actually exists there, I couldn't say. The only data I have on them is from two sources: correspondence information and server data from the secret agency (which I'll call "the Organization") that keeps this under wraps, and first-hand experience with realms from these other entities, either directly (I experience it) or through the eyes of someone else with the same or greater abilities than I possess.
I referred to these people with abilities earlier as "Antennas", and I will continue to use the term. Antennas really come in three flavors, marked by the strength of their ability: weak Antennas, like me, are able to observe spontaneous interactions between our universe and other dimensions (phase shifts) when there is a strong force of collision like existed in the basement; moderate Antennas may see phase shifts occur at any point, and they usually are able to retain memories from across the different transformations; strong Antennas, and I don't know if they exist yet, but they are able to consciously interact with these other realms and cause phase shifts to occur.
I mentioned that moderate Antennas are able to retain memories from before and after a phase shift. Technically, all Antennas have this ability, but it's about degree. I can recall only very specific instances and without much detail. Moderates are usually able to pick out much more nuanced minutiae. At the lower end of moderate scale, most of those details fade or get fuzzy over time, but for the very strong Antennas, they hold onto almost everything. One other property that scales with strength is interaction with other conscious entities. Only a small percentage of moderates are able to do this. What's interesting is that these entities can possess (yes, like ghosts) people who aren't even antennas, but no one is aware of such possession at this deep of a level. I have several companions now, and only two have had interactions with these otherworldly beings. Not all of them are malevolent, some of them are whimsical or kind, but there are a fair share of demons out there.
Getting back to the point, Area X started as a government funded project in the 70's. At that time, they were focused on a few subjects: Artificial Intelligence, DNA sequencing, and psychedelics. Yes, they were part of the infamous LSD experiments. But they looked at these subjects through a common lens—there was something that the burgeoning tech industry, fueled by the advent of a commercial computer market, was missing. As the tech giants rose in the early 2000's and began to collect mass amounts of data, this other agency was decades ahead in a different metric, although it was completely (and still is) hidden from the public. Their efforts to understand psychedelic experiences led to a formalized method of understanding interactions between multiple realities. They built certain scanning equipment to detect anomalies like the one I found in the basement; although their tools were much more sophisticated and didn't utilize voltage readings. Then they ran tests in these areas. One area in particular is a hot-bed of phase shift interactions. That's where Area X is located (and the Receiver).
The Receiver is a giant electromagnetic orb that has trapped the kind of multi-dimensional energy that causes the phase shifts; since the Organization seized control of the lab, it's effectively become a map of the Earth in relation to these other worlds. For the past twenty or so years, the Organization has been studying this map, using the data big Tech companies have collected to essentially develop a Rosetta Stone for interpreting the meaning of the fluctuations in their scanning equipment. Recently, the public, though going the long way round, was actually pretty close to a breakthrough in this same department until recently when ultra-powerful LLMs surfaced, and the whole world began going down what I'd argue is the wrong rabbit hole of language processing. But I digress.
Area X is essentially a private military base built for defending the most impactful piece of technology ever invented. With the Receiver, the Organization now has the power to essentially predict any and all future outcomes, the only thing holding them back is the limitations of their own scanning equipment which will get better with time. To put it into perspective, the Organization has access to a kind of data allocation tool which in one day can produce over ten thousand times that the Big Data companies combined would be able to filter through in the next decade. You might think, then, that the problem is merely asymmetric power, and that is certainly a concern, but it isn't the main concern. The main issue is that this organization is actively recruiting (and kidnapping) Antennas from around the world in an effort to find or make one of them into a strong Antenna. In other words, they want a subject who is able not only to see the future, but to manipulate it at will.
balance to the world. I've been working on amassing resources, capital, and building my own team, and now I'm ready. You might ask why I'm posting this here. Wouldn't it be better to keep all this secret? Well, yes, it would be. But that's the problem. Nothing is secret anymore. They know about me and the others, and if I don't make a move, they will. In a way, this is a letter directly to the organization that I know, and I'm coming.
In a different way, I wanted to release this information to the public. There are lots of people out there waking up and realizing that the world they experience is not the one others experience. If you think you might be an Antenna, don't be afraid—you have a special gift that can be controlled. If you want more details on how to control it, or if you're interested in my mission, don't be afraid to reach out. This hasn't always been my life's work, but it is now.
At least until I die.
submitted by Weathers_Writing to nosleep [link] [comments]


2024.05.16 23:00 Proof_Let4967 Abortion is always wrong, no exceptions, it is wrong even in cases where mother's life is in danger.

"For some women, the sorrow that often comes with having an abortion can last a lifetime. Many have a lingering sense of loss and a desire to turn back the clock. Others suffer silently for years before finally sharing their stories as compassionate cautionary tales for others. Here are just a few of their stories
Leslie’s Story Leslie got pregnant during her senior year of college, and again a year and a half later. Both times, she chose to have an abortion. “I gave up my two babies early on for a career, and then I was so depressed and the impact it had on my life, I couldn’t do my career.” “[I] got my dream job hosting a morning talk show. But a little bit before then, I’d learned I was pregnant and I just knew there was no way that I could do a TV show. My job would be gone if they found out I was pregnant.” “I went and got rid of that ‘inconvenience’ and went on and did this show.” After the abortions, Leslie became depressed and turned to drinking and drugs. She quit her job and returned to living with her parents. “After that, I was pretty much done. I was hollowed out, but I didn’t understand why.” “That’s why I speak out, in hopes that other people that are suffering in silence break that silence.
Michelle’s Story Michelle got pregnant at age 35. Her long-term partner, who had children from a previous relationship, had made it clear he didn’t want more children. Although Michelle initially saw the pregnancy as a kind of blessing, her partner still wouldn’t accept having another child, so she gave in. “I was torn because I felt like this was a weird twist of fate that I had wanted, but I couldn’t rationalize having a baby that wasn’t wanted by their father, plus I was suffering from intense fatigue and morning sickness, along with fear, isolation, and shame. Because I didn’t have much time before it was too late for a medical abortion, I made the decision to terminate less than a couple weeks after finding out I was pregnant. I immediately regretted it. I cried for days. It’s been 2 weeks since; I will have moments of a regular day, and out of nowhere I will feel like a ghost of a person… intense sadness followed by emptiness. I don’t know what to do moving forward. I hear it gets easier, but I feel so lost right now.”
Monica’s Story Monica was a teen in high school when she got pregnant. Although she had a supportive partner, they decided together to get an abortion, largely out of fear of what others would think. “I was so afraid of my dad being disappointed and angry with me. I was afraid of people judging me and thinking I was a failure. I was afraid my dad would blame my boyfriend for it.” “We secretly went to a clinic to get an abortion.” “After the procedure, I felt relief. I thought life would resume as normal, and it did for a while. I didn’t count on years later, looking at the three children I have since carried and thinking of our baby that we selfishly aborted out of fear of facing our family. Who would they be now? Words can’t express my regrets. Very few people know, and I carry shame for the mistake I made to mask what I thought was a mistake. I only hope that God has our child and I hope one day I will know who they were.”
Elizabeth’s Story Elizabeth got pregnant at 17, and while that was 34 years ago, she remembers every detail, including the grief she felt then and still works to overcome today. “When I realized I was pregnant, I had some very complex emotions. I was simultaneously so happy and terribly sad at the same time.” “When (my parents) found out I was pregnant, I don’t remember any discussion about options. I do remember a lot of talk about how irresponsible I was and how this could wreck my life, and the ‘obvious solution.’ I was dead and numb. My mom took me to the clinic. I paid for (the abortion) myself. It was awful.” “I was going against something my heart knew was wrong.” In the years that followed, Elizabeth drank alcohol regularly, found herself in abusive relationships, and had several more pregnancies. “I’ve had seven pregnancies. One was the abortion, four miscarriages, and two beautiful daughters. I have had a lot of female issues which eventually lead to a hysterectomy. I often wondered if any of it was related to the abortion.” “Through the years, I have struggled with alcoholism (I don’t drink anymore), depression, anxiety, workaholism… and many behaviors I used to keep myself busy.” “On the other side of my story is joy and love. I’m finally getting there, crawling out from under the debris of guilt, sadness, shame, depression, insecurity, and grief.
Chandra’s Story Chandra chose the abortion pill as the means to abort her child. Like many women, she presumably believed this approach might be easier to deal with than undergoing an actual in-office medical procedure. Chandra found out, however, that the emotional pain can be just the same. “It took me a week to decide to have an abortion, one hour to convince myself to swallow the pill and another week to realize I shouldn’t have done it. It may not have been the right time. I might not have had a house or a job, or been at the right stage in my relationship, but I had the support of friends and family. We could have done it. I had so much love I could have offered, but I chose convenience, and now I wish I’d chosen hard work and motherhood.”"
https://siragainesville.com/abortion-regrets-stories-from-real-women/
submitted by Proof_Let4967 to Abortiondebate [link] [comments]


2024.05.16 22:11 Inorai [Menagerie of Dreams] Ch. 18: Your Customer Service Sucks pt 1

[Menagerie of Dreams] Ch. 18: Your Customer Service Sucks pt 1
https://preview.redd.it/z7xbdxeniu0d1.jpg?width=1024&format=pjpg&auto=webp&s=d3a4b6ffa80a972f422be4809ce3e721f5b9e7c6
Cover Art First Chapter Playlist Character sheets
The Story:
Keeping her store on Earth was supposed to keep her out of trouble, but when a human walks through her wards like they weren't there, Aloe finds herself with a mystery on her hands. Unfortunately for the human, her people love mysteries - and if she doesn't intervene, no one will. With old enemies sniffing around after her new charge, the clock is ticking to find their answers.
Hey, Miss Kanna.
Aloe showed me how to do this letterbox thing a little bit ago. Hopefully this gets to you. Otherwise, I mean, I guess you’ll never read this?
Rowen grimaced down at the page. Get to the point. Stop faffing about.
Anyway. We’ve been traveling, so I didn’t get a chance to write earlier. Thanks for all your help with the magic kit stuff, again. We still haven’t found an actual answer. We found out I can open the Heartgates, though. That seems pretty big. Just going to assume you know about all that stuff. Aloe doesn’t think it’ll be enough, but
He hesitated, pen hovering over the page. Was he just being naive? He didn’t doubt that Aloe was right, it just…seemed cruel. Surely the whole world couldn’t operate like that.
but I don’t know. It feels like it’d be pretty hard to wave something like that off? Are the Children of Ora or whatever really that single-minded about themselves?
We’re in Emerald Hills now, with that Lord Dilmat guy Aloe knows. If I can be honest a sec? I really don’t know how much I buy that he’ll help me. The lord guy seemed pretty disinterested once Aloe said he couldn’t keep me. Is staying here really a good idea? I do trust Aloe, but I don’t know. I don’t have that much time left. This feels like a gamble.
Not much time at all, now that they’d blown a few days traveling and getting set up. His all-too-short deadline was staring him down every time he closed his eyes. Could he really risk hanging around with some dude who visibly didn’t give even a single shit?
But what else could he do?
I guess it’s whatever, he wrote, shaking his head. I’m going to try and work the shop a little more. People here seem to speak English, but it’s not their go-to. It’s getting a little weird. They keep giving me looks. I need to find some sort of language textbook for Ereliit, but I’m a little worried. If there’s never been a human with magic before, you guys have probably never tried to teach a human before either. Right? So do I even have a chance in hell of learning? Would there even be anything in English?
He took a long, shaky breath. Just a worry. Do you have any ideas? I just don’t know what’s out there. But I’d like to try learning.
There. He’d talked about where they were, and he’d talked about Eswit, and he’d talked about his language battles. That just left…
His lips tightened. That just left the bit he really, really didn’t want to get into. But there was no getting around it.
I’m worried about Aloe. When we were heading into the Deeproads she started having this weird…attack. Glowy eyes, spouting nonsense, wouldn’t respond. She told me it’s because of her magic poisoning her, and she said it was a one-off thing from some kind of magic shock from coming back down here, but then it happened again last night.
She’s fine. I don’t mean to scare you or anything. She’s got that nightsbane stuff, and now that I know this is going to keep happening I can try and watch for it more. Or something like that. But she’s always a bit weird after she takes those potions. I just don’t really know what to do with all this. I just want someone else to know. Getting a little nervous.
Rowen took a shaky breath, closing his eyes for a moment. He hated tattling on her. If he was sick, the last thing he’d want was his friends spreading it around. But…someone needed to know. Someone that wasn’t him. What if last night happened again? What if she fell into another trance like at the aviary and he couldn’t wake her up?
No. Kanna needed to know.
The floor creaked overhead. “Rowen?” Aloe called. “Are you up?”
“I’m down here,” Rowen called back. Well. She was up early. The sky outside was still dark. He’d figured he had at least another half hour before she wandered out.
Quickly, he turned back to the paper laid out on the counter.
I’ve got to go. Aloe’s up and around, and I’ve got to get back to Emerald Hills for more testing. Lucky me. Fingers crossed they actually tell me something useful this time. It wouldn’t be down to luck. This time he’d make them listen. Thanks for listening, Kanna. Hopefully you actually get this.
He stood as the hallway above started to creak, hastily folding the letter up. She’d pointed everything out to him and run through a quick explanation. He just had to take this stamp, marked with a hastily-applied KANNA label, smack it onto the paper, and then put it in that wooden box. Close the lid, and-
Rowen jerked back as a flash of light erupted from beneath the so-recently-closed lid. Slowly he lifted the edge back up.
The box was empty.
“W-Well, that was easy,” Rowen said, grinning. Either the letter was on its way to Kanna, or he’d found a new handy-dandy trash can. All he could do was trust it was the former.
As he put the stamp back into the rack, though, his hand lingered on the wood.
He’d carried Aloe back to her room last night, was all. She’d been utterly passed out, and he wasn’t so frigid as to leave her out in the cold by herself. He’d felt weird about barging into her room unasked, yeah, but…well, he just hadn’t been able to come up with an alternative. She certainly wasn’t about to wake up.
Her bed had been rock-hard. He could remember it clearly, like someone had taken wooden planks and covered them in a few layers of comforter. He’d almost felt bad putting her down on it and walking away. Even the thought of it gave him a sore back.
As he’d turned, he’d caught a glimpse of a writing desk in her otherwise-barren room. There’d been a violin on it. And…a stamp, just like this. There hadn’t been a handy English label, so…he didn’t have a clue who it’d send a letter to. But there alongside it had been a pile of crumpled-up letters.
Someone Aloe wanted to write to, then—but couldn’t? But who? It would’ve been absurdly rude to pry further, so he’d just…walked away.
And now he found himself oddly curious.
The stairs creaked. Rowen glanced up, then gave a quick wave when he saw Aloe descending. “Morning. You’re up early.”
“Couldn’t sleep for shit,” Aloe mumbled. “Are you off?”
“Yeah.” Rowen grimaced. “Eswit wants me back bright and early. I’ve got to keep him happy for now.”
“Good kid.” Aloe gave him a quick smile, patting his shoulder as she passed. “Just stick with it. We’ll figure this out, I promise.”
He was sure she wanted them to figure this out. She might even believe that they’d do it. But belief in a thing didn’t make it reality. He needed to keep pushing. This was no time to sit back and take things easy. He smiled back, nodding, and stood. “I’m off, then.”
“Be safe,” Aloe murmured as he strode by.
He just kept walking, head held as high as he could, until he was out of the Dragon and alone again.
—--------------------
Aloe turned on her heel, giving the floor a long look. The sun was up and Rowen was off. The scholars would be able to help him. The question was, how fast? Would they be able to make a breakthrough soon?
She tried to keep her mind from scrolling through the calendar left to them. It wasn’t enough for them to solve Rowen’s mystery by the deadline—if they didn’t get back to Windscour in time to declare their progress to Envoy Jaian, she’d run a real risk of getting herself in trouble with the crown. She could defend herself, but…she didn’t want to give them any excuse to declare the deal null and void.
Which meant she really, really needed Eswit to get to work, fast.
Sighing, she straightened. A trilling whistle slipped from her lips. All around the Dragon, candles ignited, turning the morning glow into a comfortable brightness. The shutters on the front windows flew open, and through them, she saw the sign out front drop into place.
Well, they were open for business. Overhead, the sunbirds raised their heads, starting to trill amongst themselves.
“Don’t make yourselves trouble,” she said, giving the big guy at the group’s center a warning look and a pointed finger.
He only chirped at her, hopping to the side. She heard one of the eaves windows creak open, followed by the flapping of wings. Several of the others followed suit, vanishing into the outside world.
“Fine,” Aloe muttered, shaking her head. “Come back in time for dinner or you’re not getting any.” It didn’t worry her too much. Most of the dens had access to an exit if they wanted it, and all of them knew the signal for when she was packing up. There shouldn’t be too much danger toward them in a deeproads town like this.
She was just reaching her chair behind the counter when the door swung open again. “Forget something?” she said, turning back.
Her eyes widened at the sight of a woman striding through, short and sturdy with thick, curly red hair and a wide-brimmed hat whose colors had been bleached with too many hours in the sunlight. Pouches ringed the belt on her waist, hanging down almost to her knees.
“Pardon me,” the new woman said, her voice gruff. “Had a lad all but pounding down my door ‘bout some new shop in town.” She leaned her head back, fixing a look on Aloe from beneath the brim of her hat, and grinned. “Thinkin’ it’s ‘round the time I should see the place for myself.”
Just as she’d thought, then—this was Lanioch’s apothecary. Exactly the sort who might be interested in the goods she sold. Aloe smiled right back, bowing with careful, deliberate respect.
“Madam Healer, I believe I have exactly what you need,” she said. “Whatever that is.”
“We’ll see about that,” the apothecary said, turning toward the Dragon’s shelves with a brisk step.
Aloe’s grin only widened. She wasn’t put off by the woman’s air and attitude, no. She’d expected this. The bargaining was the best part—and out of everyone in the town, this was likely to be her primary customer.
The game had just begun.
—--------------------
It was early enough in the morning for there to still be dew on the grass when he crossed over into Emerald Hills, but the lab was already bustling. The secretary Aloe had talked to before perked up at the sight of him, beckoning him over. She didn’t try to speak to him, though. Maybe she was too busy. Maybe he was just the human and didn’t rate a little morning chitchat. Hell, maybe she didn’t even speak English.
He let her usher him into the same lab room he’d been in before. It was just like he remembered it—but this time, there’d been a huge magic circle like something out of Fullmetal Alchemist scrawled all over the floor. There were tiny detailed elements throughout it that looked like someone had painted in with a tiny, hair-thin brush. “Paint, hopefully,” he whispered, giving the thing a contemplative tap with his foot as the secretary walked across the room atop it. If he messed up all their hard work they just might kill him after all.
The circle didn’t budge. With one last shrug, Rowen steeled himself and followed after.
Note-Taker and Box-Holder were there, he saw with a grimace. Both lit up at the sight of him—but as they hurried toward him, he saw Note-Taker pull something from his pocket. A vial, filled with clear liquid.
“No,” Rowen said, taking a step back as the pair charged him. The rest of the researchers scattered around the lab looked up at the firmness in his voice, but he refused to let himself back down. “I’m not going to drug myself. It’s not necessary.”
“You must hold still,” Note-Taker said. “It will…” He scowled, chewing on his lips. “Difficult,” he said at last—and held the vial out again. “Take.”
“I’ll hold still,” Rowen said, shoving his hands resolutely in the pockets of his jeans. God, he felt out of place here dressed like a normal person when they were all wearing their fantasy getups. “I’m not taking it.”
Note-Taker grimaced. He glanced to Box-holder, who shrugged.
Rowen stiffened as the two started talking in Ereliit. “And you can’t keep everything secret from me this time,” he said. “You have to tell me what you’re figuring out about me. That was the deal.”
The two erelin men looked back to him, and now the disdain in Note-Taker’s expression was clear. “No time,” he said. “We will handle. Sit.”
“Yes, there damn well is time,” Rowen snapped. “Look, you’ve got two choices here. You can either tell me what you’re learning or I’m not going to cooperate. Okay?”
He watched Note-Taker’s nostrils flare. The man was positively glaring down the length of his nose at Rowen now. “You are not-”
“We had a deal,” Rowen said. “With your boss. D’you think that Lord Eswit guy is going to like it if you drive me and Aloe away?” He jerked his chin higher, matching the asshole glare for glare. “All I’m asking is for you to talk to me.”
Box-Holder muttered something under his breath, still in that stupid language of theirs. But before Rowen could launch into them again, Note-Taker let out a groan. “Agreed,” he said, sounding like he didn’t agree at all.
He’d at least said the word, though. And he did still need their help to get some answers. So Rowen just nodded, letting the two men guide him to the center of the magic circle, and steeled himself for what came next.
—--------------
By the end of it, Rowen understood why Note-Taker had wanted to drug him.
He didn’t have a clue what they were doing. He’d tried to watch and pay attention, but there was only so much he could do. He was plunked down cross-legged at the very center of the whole arrangement, with Eswit’s mages around the outer ring with their wands and staves. Every time they raised their implements, the circle under his ass started to glow with a frankly-worrying intensity.
And then the deluge would begin. Fireballs. Lightning bolts. Whirlwinds that whipped around him and blew his hair all astray. Bits of free energy, and shrieking rips of pure noise, and gouts of water that drenched his sweatshirt. He tried to stay still through all of it, gripping the insides of his sweatshirt pocket and closing his eyes against the worst of the onslaught. He’d promised Note-Taker he could manage.
But Christ it was hard. Sweat drenched his undershirt, and however strong his resolve had been at the start, he was mortified to find he was starting to shake a little.
All of the fear vanished when, with one last crackle of energy, the latest barrage faded—and the mages all turned away from him. “Is that it?” Rowen whispered.
Note-Taker was in the back of the room, scrawling away madly on a clipboard. The other mages were starting to encircle him, Rowen saw. And they looked excited. Bingo.
Legs still quivering beneath him, Rowen stood, banging his fists into his thighs until the tingling went away. “What is it? What did you find?”
The scholar closest to him glanced over, but turned back to the others just as quickly. None of the rest even bothered to look.
Note-Taker was beaming, though, and Box-Holder’s eyes damn near sparkled. Rowen’s anger deepened. They’d found something.
“Hey,” he snapped, striding closer. “What’d you-”
Note-Taker raised a hand, gesturing dismissively in his direction. A pair of the scholars turned, moving to block his way, but Rowen had expected that. Darting to the side, he ducked between a pair of Orran women—and snatched the clipboard out of Note-Taker’s hands.
You’d think the guy had never been bullied in school. He was slow to react, hands closing around open air for a second before he lunged. “Fucking-”
“Oh, so you do know some actual words,” Rowen said. He kept backstepping, circling the room until the exit was square behind him. “Look. You told me you’d talk. That’s all I want here.”
Note-Taker’s face contorted with anger. “Give it-”
“No,” Rowen said, holding the clipboard up and away from the Orran’s reach. “Just tell me what you guys found out, and I’ll give it back.”
“You’ll-”
Otherwise,” Rowen said, taking another step backward, “I’m going to take this back to Aloe to see what it says. And I won’t be coming back tomorrow.”
He waited, counting the seconds. The scholars had all frozen somewhere in the middle of his escapade, glancing at each other with worried eyes.
This was all a risk. He knew that. He needed these guys as much as they needed him—but maybe a little reminder that he could just pick up and go if they refused to play ball would do the trick. So he waited, eyes glued to Note-Taker’s face and nerves twitching for the slightest sign of counterattack.
Finally, the man scowled, letting out an irritated grunt. “Testing passive resonance,” he said gruffly.
“And?” Rowen said. “What’d you find?”
“Response value of five,” Note-Taker said. He spat the words out, then thrust his hand toward Rowen. “Give.”
“What’s that mean?” Rowen said. “Passive resonance. What is that? And what’s it mean that-”
“Did not promise tutoring,” the man hissed. He jabbed his hand forward again. “Give.
“Okay,” Rowen said. “Fine.” He’d gotten the important bits. Passive resonance, and it spat back a five. Passive resonance, five. Passive resonance, five. As long as he could get that back to Aloe, she’d be able to translate.
He slapped the clipboard down into Note-Taker’s outstretched hand. “Here. That’s all I wanted. Are we done for the day?”
The pair of head researchers glared at him, lips tight, but turned almost immediately back to their own work. One by one heads around the room swiveled away from him.
Guess that was his answer. Rowen shook his head, grumbling a little to himself, but made for the door.
Time to figure out what all the fuss was about.
submitted by Inorai to redditserials [link] [comments]


2024.05.16 22:02 Electronic-Purple489 aitah for being angry abt my partners habits pt 2

I confront him as he’s asleep in bed. I urge him to wake up but he refuses to get up until my tone changes and once he’s up, i throw the vape at him and i ask him what it was and he claimed that it wasn’t his and that he swore up and down that it wasn’t his. i already knew he was fucking lying bc the dots were connecting and he tried to shift blame onto others who live in the home. (my mother and 3yr old sister live w me. my other siblings come over on their visitation weekend.) he deadass asked “are you sure it’s not anyone else’s?” and i almost wanted to rock him in his face right then and there because he is insinuating that either my mother started smoking again or my preteen brothers were to blame. and i immediately felt so disrespected because my mother struggled with quitting cigarettes for years and as for my siblings(13,11,11,3) they’re not the type of children to do that. i would know because i’ve practically raised them. I kept asking him over, and over, and over again till he admitted it. and i was lashing out crying and telling him to pack up everything. and i was crying on the rug on the floor. i just couldn’t hold in any tears. as he was packing i had asked him “is it genuinely not yours?” and he said “im telling you it’s not mine.” i asked him to then sit on the rug with me and i looked him straight in the eyes and said “i’ve given you multiple chances to come clean. i need you to come clean and i’ll even get you professional help if you want to seek it. i’m not gonna force someone whose gonna relapse again.” and he finally came clean. the amount of utter disrespect just came over me and i never in my life felt so defeated. i feel like this is constantly going to be the narrative because i genuinely don’t believe in him anymore. not one ounce in my body has any hope for him and i feel myself mentally clocking out already but i don’t want to. i don’t know anymore guys.
submitted by Electronic-Purple489 to u/Electronic-Purple489 [link] [comments]


2024.05.16 21:59 ConferenceOne449 Had an extremely upsetting encounter now worried I’m going to get HPV or worse

I was on Grindr I had a date set up for 7 and this was the first hookup I was feeling positive about since my breakup that was emotionally and mentally damaging right before my dad passed from cancer.
I’ve had hookups since the break up but I can never cum nothing works at all ever. This time I was looking forward to it, but being 31, mornings tend to be my “best time”.
So this dude who’s been asking me to top him is online I message him, his pfp is artwork so I ask for a face pic, it’s blurry, I can tell he’s older, but I say fuck it I’m horny but not horny enough to not use condoms.
Well when I get there first sign I should leave it’s a disaster, then I see baggies and pipes for crystal and I’m in recovery, not for that but fuck. I think I was just so desperate to get over my ex that when he started blowing me I kinda let him despite telling myself only sex with condoms.
Well he flips over and his ass and around his balls are covered in HPV warts my dick was already in him so I tried to keep my shirt on and cover surface area that may touch but I just couldn’t think anything but “get the fuck out”.
Also not to shame the dude but his ass was blown out like an outie belly button.
I was emotionally traumatized before and swore I’d never date again and even my sketchiest stories don’t add up to this. I never want to have sex again and I know there’s no test for HPV so im just going to have to wait around? Idk
Im just so sick of being lied to, he didn’t even look like his blurry pfp I feel nauseous.
submitted by ConferenceOne449 to askgaybros [link] [comments]


2024.05.16 21:56 mgkmagic mgk's interview with Marvin magazine issue 13

mgk's interview with Marvin magazine issue 13
mgk aka machine gun kelly on genre:sadboy, his exoskeleton, rap album, rock album, Lana Del Rey, Trippie Redd, bands, etc. The full interview below is from Marvin magazine issue 13, which can be purchased on Marvin's official website.
https://preview.redd.it/u473mtirdu0d1.jpg?width=3534&format=pjpg&auto=webp&s=50893fb3c30f8af1ae3d8ffed42610db0c26fe7b
https://preview.redd.it/lkbwttvtdu0d1.jpg?width=6189&format=pjpg&auto=webp&s=09a7b4cdfb4c5b8c76cf86d5c4bb89da03164c13
https://preview.redd.it/cmb2qsvtdu0d1.jpg?width=6952&format=pjpg&auto=webp&s=78141443a2a4d739fed290fffcf1956067d82389
https://preview.redd.it/5phd1ttwdu0d1.jpg?width=7068&format=pjpg&auto=webp&s=c072faa58cca727625e349a2170de9c76dbd07f0
It Has Always Been About the Music for mgk
The Artist Recently Teamed up With Trippie Redd for Their Collaborative Ep ‘Genre : Sadboy.’ Now, He’s Truer to Himself Than Ever Before.
mgk has topped the Billboard 200 chart with his 2022 pop-punk entry, ‘mainstream sellout.’ He has been nominated for GRAMMY Awards, won Billboard Music Awards and earned hundreds of millions of Spotify streams. Today, mgk is the main attraction at Dust Studios in Los Angeles.
A fresh coat of ink covers the rapper’s arms and chest, mimicking the rain clouds he loves so much back in his hometown of Cleveland. “It was supposed to be spread out over the course of a year, just because of the amount of ink,” he reveals. “But I did mine in a month.”
When people ask if he’d been sedated for the process, mgk says he’s shocked. “My eyes started opening to this phenomenon, which is essentially opting out of the point of what a tattoo is, which is cathartic pain.”
mgk soon references his lyrics, which — particularly on his latest project, an extended collaborative EP with rapper and fellow Ohio native Trippie Redd — tend to be expressions of isolation, roller coaster relationships, shifting between self-medication and sobriety, and the purgatorial aspects of extreme fame.
“I’ll call out for help in my lyrics, and not one fucking person will give two shits,” he says, reasoning that his public bluster and occasional hot temper must indicate stoicism.
“Essentially, I think they believe the exoskeleton of confidence that I had to put on because I was being fucked with by the outside world. That’s even from down to idols that I had growing up,” he continues.
“Like, they all turned on me, you know what I mean? And I’m like, ‘Guys, what? What am I supposed to do? Because I can’t just be a turtle and go into my shell. I have to come out. I have to bite back.’”
https://preview.redd.it/pmphrbd4eu0d1.jpg?width=6147&format=pjpg&auto=webp&s=8edf543a0d1ddb1b94150544edbd752081e8bcd3
Most recently, mgk has poured his innermost thoughts into his aforementioned project with Redd, ‘genre : sadboy,’ a spare, ruminative collection of tracks that gently dovetail between trap, hip-hop and acoustic pop. “I can’t quiet my thoughts/ Don’t let them out this Pandora’s box/ I ruined my wedding, now I wish I had a rope/ So, I could still tie the knot,” mgk spits on the sorrowful closer “summer’s gone,” which, at face value, appears to reference his broken engagement to Megan Fox.
His ongoing friendship with Redd, who appeared on 2019 single “Candy” and on 2020’s “all I know,” has been important to him both personally and professionally.
“Growing up in Ohio, everyone kind of knows about everyone,” mgk says. “I fell in love with how much of an art piece he was. I related in so many ways — how easily misunderstood he could be. Because I was rapping in the early 2010s, but I was wearing studded denim jackets, punk patches, ripped jeans and things that weren’t really aesthetically hip-hop.”
When the pair return to Ohio, which they do often, mgk and Trippie usually attempt to meet up and record. During one session, which mgk calls a “special night,” they began recording music, which kicked off their path to making what would become ‘genre : sadboy.’ “We felt really good about these records because they didn’t feel like some of the other records we had made. [In the past], we had experimented with pitching our voices really high, or doing stuff that felt like 2017, 2018 rager music. Stuff that if we didn’t put it out now, then it wouldn’t make sense to put it out later.”
Around the time they teamed up to create ‘genre : sadboy,’ mgk says, “life started to kick both of our asses simultaneously.” He and Redd would spend hours on FaceTime, talking about everything from each other’s psyches to “magic,” “family” and “why certain things are or are not happening for us personally [and] career-wise. … It’s nice to have somebody you can find solace in.”
The idea of feeling misunderstood comes up frequently in mgk’s lyrics. Active since the mid-2000s, mgk grabbed the baton from Y2K nu-metal upstarts like Limp Bizkit and Linkin Park and spent the next two decades merging rap and rock as it suited his mood and creative expression.
As for the EP title ‘genre : sadboy,’ mgk points out the symbolism behind its artwork. “On the cover, ‘genre’ is over my body because that’s one of the big arguments behind mgk: ‘What genre is he? Why is he allowed to do this genre? I don’t like that he does this genre.’ And then ‘sadboy’ is over Trippie’s body because the argument with Trippie is that fans love his ‘sad boy music,’ and they’re mad that he released [2023’s] ‘Mansion Musik,’ which is rager songs. They wanted the ‘sad Trippie’ back.”
Ultimately, neither mgk nor Redd were interested in winning over critics or new audiences with their latest collaboration. This one’s for the existing fans — and, of course — for themselves. “I wanted to just give it away right away,” mgk says of the short time leading to the EP’s release. “Like, yeah, this is a niche project. We’re not doing this for numbers. We’re not doing this to try and get the masses on our side. This is for people who are just sad and want to put this on. Individually, I don’t think that [Trippie and I are] allowed to make those albums. Because people want a roller coaster.
https://preview.redd.it/ggdofo29eu0d1.jpg?width=7068&format=pjpg&auto=webp&s=c35f767f6fb86ba2672dc9b55d021b5a97181b75
We’re associated with hype shit. Our concerts are hype. I envy people like Lana [Del Rey] because they’re allowed to just make these mood albums. I wanted to have an excuse to make my own, and this seemed like the perfect place to do it.” Though he’d always hinted at having an expanded music palate, rolling through hip-hop to trap to metal, hard rock and pop, in 2020 mgk fully embraced the guitar, releasing the pop-punk-inspired “tickets to my downfall,” which featured drums and production by Travis Barker, who was swiftly turning into a genre godfather, appearing on WILLOW’s howling “t r a n s p a r e n t s o u l” and Avril Lavigne’s sneering pop-punk reentry “Love Sux.”
“He’s someone whose front door was always open to me plenty of times during ‘Tickets To My Downfall’ and ‘mainstream sellout,’” mgk says of Barker, who also produced the singer’s 2022 album. That album featured WILLOW on “emo girl” and Bring Me The Horizon’s Oli Sykes on the thrashing “maybe.”
Despite being credited with the 2020s pop-punk revival, raking in awards for ‘Tickets To My Downfall’ and hitting No. 1 on the Billboard 200 with ‘mainstream sellout’ — not to mention nabbing high-profile TV and film roles (2018’s “Bird Box” and portraying Mötley Crüe drummer Tommy Lee in 2019’s “The Dirt”) and earning over $30 million at the box office on the ‘mainstream sellout’ tour — mgk cannot help but feel underappreciated.
Sure, the numbers speak for themselves. But for someone as vulnerable as he is, mgk is quick to note that you can have the biggest and best house on the block — and it can still be empty when you get home.
Reflecting back on the last decade-plus of his life and career, mgk is blunt about the reality of his lived experience.
“I still haven’t found a home, because I didn’t grow up with one,” he says. “I also think a lot of people just skip my background. They just bury that whole thing and act like my life started when I was like 28 and started getting some real success. What about the 10 years I spent underground? What about those years on Warped Tour? When I did the pop-punk album, every band acted like I was brand new. And I was like, ‘But you guys were with me on those stages when I was opening for you at 1 p.m.’”
"So many people walk up to me and they’re like, ‘Dude, what you did, what you did,’ and I’m like, ‘Why is that narrative never told?’"
“I’ve never been a critic favorite,” mgk continues. “I never really looked to them [for] praise. I look to see if they have any valid points that maybe I could soak in and utilize for the next project. Which is why my next solo project will not be a rock album. But when I do decide to do a rock album, I’ve taken in so many of the critics’ opinions, which are actually valued and understood, that [it] will be a really, really intelligent, powerful rock album.”
So there it is: mgk’s next studio release will not be a rock album. “I think it’s always smart to give people what they want,” he ruminates. “And right now it feels like they want a rap album.” But does mgk want to do a rap album? “I do,” he says. “I’ve learned to drop every chip on my shoulder...
https://preview.redd.it/1qszmlddeu0d1.jpg?width=7068&format=pjpg&auto=webp&s=b56d6598668f802b815a4f2e0bf7269e010063f1
https://preview.redd.it/6krbctadeu0d1.jpg?width=7068&format=pjpg&auto=webp&s=5d898dd64ea03e32c55fc0510f739670d41e2913
There is one part of my stomach that just cannot be filled by any other genre other than doing a great rap album.”
When mgk looks back at his favorite artists from earlier generations, ones that were deemed sellouts or not taken seriously, he holds a spark of hope. Maybe some years in the future, his critical success will catch up with those Spotify streams. “I remember blink-182 in middle school, and everyone said, ‘That’s such a poser band.’ Now, all those kids grew up, their egos dropped, they had families and now they’re all like, ‘Dude, I can’t wait to go see blink-182 at the When We Were Young festival.’ I pray that the same thing comes [for me]. Honestly, I don’t know. If it does, great; if it doesn’t, fuck it.
As soon as that redemption arc theory leaves his mouth, mgk changes his mind. “Actually, I don’t care. I do what I do because I love it. I’ve never been a money guy. I’ve never once looked at my bank account in my life. I am strictly here because there’s a hunger inside me that can’t be satiated. No matter how many records are sold, no matter how many concerts are sold out, I just am in love with music and in love with art.”
Written by: Rachel Brodsky Photography by: Jimmy Fontaine
STYLIST: MALEEKA MOSS STYLIST ASSITANTS: MARISSA ANDREA, DARIE TUROVA
LOOK 1 HARNESS - NEW BEDSTUY VINTAGE TEE - FNK STUDIOS SHORTS - DESTROYER OF WORLDS EARRINGS - BALENCIAGA NECKLACES - AI STUDIOS (TOP NECKLACE), VITALLY (BOTTOM NECKLACE) SHOES - BALENCIAGA
LOOK 2 TRENCH COAT - LUU’DAN SHIRT - VIVIENNE WESTWOOD ARCHIVE FROM WILD WEST SOCIAL FISHNET HOODIE - RAF SIMONS ARCHIVE FROM WILD WEST SOCIAL PANTS - SEKRIT SAINTS EARRINGS - BALENCIAGA,BOND HARDWARE NECKLACE -METAL HEART WEAR RINGS - BOND HARDWEAR SHOES - BALENCIAGA
LOOK 3 BLAZER - LEFTHAND LA PANTS - KIDILL SHOES - SAINT LAURENT ARCHIVE FROM WILD WEST SOCIAL EARRINGS - HANNAH JEWETT NECKLACES - BOND HARDWARE (TOP NECKLACE), VITALLY (MIDDLE NECKLACE), AI STUDIOS (PENDANT NECKLACED) RINGS - BOND HARDWEAR
LOOK 4 SUIT - LUU’DAN EARRINGS -TBD NECKLACES - BOND HARDWARE RINGS - TBD SHOES - ALEXANDER HURLEY
LOOK 5 COAT - WALTER VAN BEIRENDONCK TOP - MAISIE WILEN PANTS - YOSSI SHOES - SAINT LAURENT ARCHIVE FROM WILD WEST SOCIAL SUNGLASSES - BALENCIAGA EARRINGS - HANNAH JEWETT NECKLACES - VITALLY RINGS - BOND HARDWARE SHOES - ALEXANDER HURLEY
https://preview.redd.it/rvhyoklpeu0d1.png?width=3886&format=png&auto=webp&s=95d854c324db2a8f72c24eac434d4987409b1512
https://preview.redd.it/flnjozhafu0d1.png?width=1125&format=png&auto=webp&s=d8b3510f253c836dc9a4546922d7b2a35c45a165
https://preview.redd.it/w5ckbbjqfu0d1.png?width=1137&format=png&auto=webp&s=a2d0edf04d0d98db456068203b60e796bef5c547
submitted by mgkmagic to MachineGunKelly [link] [comments]


2024.05.16 21:30 dlschindler Humans Crush Bugs, Don't Cry Little Alien

Conner sat listening to music while the history class droned on endlessly. What is the point of learning history? War never changes, right? It seemed tedious. What does history have to do with how powerful and cool a mech is, or how sweet it is to be a mech knight?
"When the darkness came from outside, only the humans knew what was happening. It was war, war from outside the peaceful galaxy. War that had started when the Milky Way first showed the twinkling signs of life. One insane intelligence, old as time, would not tolerate another living galaxy. Each must be consumed by its own weight, and only death may prevail.
Humans instinctively knew this, as the chosen ones, the T-Cells of the galaxy. When their alien friends started getting ravaged and marauded by the scouts of the Dark Beings, humans responded, retaliating with unbridled ferocity and driving the otherwise unstoppable enemies back into the darkness.
It was a frightening time, and it only got worse when the massive cloud of shade was identified as the locust fleet that had sailed for billions of years, the Silent Empty Eternal Darkness Sailors, as they called themselves. They were nothing but dormant hives, sleeping forever, ready to wake and kill and self-destruct, make the galaxy dead. They could have done so, but humans stood in their way, an unpredictable enemy, capable of war.
That is why human worlds were directly targeted by their commandos. Massive singular monsters of ungodly visage were deployed to human worlds, spawning armies of miniature satraps of the horrors, to pillage and assault human worlds, turning them into hellscapes of death and destruction. The alien friends of the humans did not sit entirely idle, they helped by selling powerful new weapons and armor to the humans who kept retaliating against the Dark Beings with ever more powerful and vengeful mech."
Conner perked up at the part about the mech. Various famous chassis flashed across the screen in cool paint and poses with alien worlds in their backdrop and accounting for their neatly colored camouflage plates. He paid attention to the famous battles, where humans had defeated the Dark Beings in honorable combat.
"Conner, do you know what made your clan's father and mother such great mech knights?" his teacher asked.
"They learned from their mistakes." Conner sighed.
"They learned from other people's mistakes. They studied all of our defeats, all the times the Dark Beings annihilated entire battalions or overwhelmed our defenses. It is a much heavier volume. We learn little from victory except that now the enemy will try to better themselves again. When they win, they use the same tactics again - that's when we win. We don't use the same tactics again, for they will be ready when we try. We conceptualize and learn their thoughts, through their actions. They do not understand us. It is our only advantage, for each progression of our tech is met by another evolution of their monsters. Someday we will not be able to make a stronger bullet to match their stronger armor. We must anticipate a limit to this war, and fight accordingly."
"I can only anticipate getting into a mech and fighting bugs!" Conner had said. His teacher had given him that look. Nobody else got that look. Conner got it everywhere. He thought back to those days, he'd really thought he'd see action, in a mech, fighting bugs.
The rest of his class went on to become mech knights. All of them had seen action. Of course, none of them were left alive, and few of their mech were salvaged. Except, Pharlie.
Her mech was the third in a row of ones hit by a single plasma beam of the enemy. While the first two were instantly blown to atomic dust, her mech was only knocked over and set on fire. The ejection seat in the cockpit had the one and a half seconds needed to egress the mech knight safely.
She'd spent some time in relieved-of-duty status on Maranda Beach before she insisted they give her something to do. They quickly evaluated her and decided she wasn't fit for duty in a mech. Something about 'shutting down the Berserker Program' and 'protocols preventing reinstating anyone who qualifies to pilot a Berserker Mech'. Not happening under Admiral Khaspa.
"How's getting into a mech and fighting bugs, Conner? Still anticipating it?" Pharlie asked her old classmate.
"You are under my command. Watch your tone, I run a cruel shift." Conner grumbled.
"Aye, Skipper." Pharlie cringed, realizing the bureaucrat Conner had no sense of humor anymore. She decided to make it her personal mission to work on that. Conner with no humor didn't sound fun.
That scene in the classroom was a long time ago, but it was with Conner like it just happened. He hated Pharlie, because she stood for his humiliation, and wanted to humiliate her, but then he hated himself for feeling that way. He resolved to leave her be because he didn't want to feed his own calloused resentments.
"We've got work to do. We are reassigned to military surplus salvage. This job just keeps getting better. I used to think I would somehow be tested on a battlefield to save the galaxy, but out here I just get tested by boredom. I don't even feel the shame of these janitorial jobs anymore, I'm numb to it." Conner said to Pharlie, the next time they spoke. Pharlie realized he was trying to be nice to her and asked him:
"You'd rather be dead, or be me?" She wondered.
"Yeah. You don't know what it is like flying around delivering stuff and counting crap. I hate it. I could've made an actual difference." Conner complained personally.
Pharlie smiled and said: "You'd have made no more difference than the rest of us did. You don't know what a victory against the bugs costs, do you? You think you just have to stand there bravely shooting back and if you die, oh well, otherwise it's all glory. It's never like that. It hurts, it hurts a lot, because you don't die. Everyone else does. And for what? We just play the same game again next weekend, and it never changes."
"That's war." Conner nodded. "What am I doing? I bring supplies to remote outposts. It's pointless."
"Not anymore, they reassigned us to go pick up supplies, remember?" Pharlie pointed out.
"Oh yeah - don't remind me, just when I though my life couldn't be more tedious or pointless." Conner fell silent, realizing he sounded weak and small, complaining so much. He wished he was stoic, but he had a chance to confide in Pharlie, and he had taken it. Pharlie said:
"You're right. But let's make the most of it." And she smiled, so Conner decided that letting someone know just how miserable he was wasn't entirely a bad thing. He just wished he could somehow just be good with it, without having to use drugs or somesuch. He really felt like his combat skills were going to waste, sitting on a ship for long years, asleep and going around picking up supplies. As Pharlie had pointed out, they weren't even delivering them anymore, new mission, go get all that stuff the aliens made over the centuries for the war effort.
Rhema loomed in the distance. "We are picking up artwork on this world. Are you kidding me? The manifest shows it is categorized as artwork. So this community of variety-hour aliens have compiled some kind of treasure trove of fine art. This is asinine." Pharlie offered.
"That's enough of that." Conner chastised her formally on the deck, but he was smiling as he said it. He loved having her there stating his real feelings. "The mission is to acquire this propaganda, it is deemed useful to the war effort."
The world was like melted orange-cream covered in brown fog, a desolate radiated landscape below testified to the destructive power of the Unknown. The same Dark Beings had taken shots from the darkness with precise aim and killed some of the older aliens, such as the Frendsikeel. Long ago the peaceful otter people had lived happily on Rhema, inviting trade via broadcast.
After meeting an assortment of artist-aliens wearing shimmering dark-colored robes and cowls, the human delegate collecting military surplus accepted the crates of fine art, packed for their shipping across the stars, trusted to nobody except the human military to safely transport it.
"Conner." A call came in from Supply Command Unk Gheldin, Conner's commander. "You just earned me a promotion. The patrons of Rhema have instituted a check as a downpayment on our services. It's enough to build an entire warship. These aliens are loaded and just became our daddy. You're doing good work out there, the war effort thanks you!"
"I'll be sure and handle with care." Conner saluted diligently.
The next world was Arienta, populated by what was left of aliens who looked like huge anthropomorphic tarantulas.
"We've perfected a drug that can induce Star Sleep in humans. They said it was not possible for such belligerent minds to Star Sleep, but our colony of volunteers have allowed us to test every kind of euphoria and pleasure-inducing drug we could on them. Most species wouldn't have such a supply of volunteers, but humans come from far and wide to live as our guests, accepting our hospitality for their entire lives, saying they don't ever want to leave." The high priestess of the Blue Light Watchers, Rhoxa Billi, explained the doped humans lounging around everywhere.
"They look like slackers, sir." Pharlie said loudly.
"That's enough of that." Conner admonished her, but was smiling, glad she said what he was thinking. He faced the high priestess formally and said:
"We'll take this drug, and thank you for your hard work." Conner waved his fingers in the spiritual way to show he knew the sacred gratitude of the Blue Light Watchers. He'd studied how to do it on the way over, practicing it for days until he was confident he could do it right.
The next stop was Basilik, an industrialized wasteland where the Sunder had hundreds of thousands of giant humanoid machines, in loincloths, working tirelessly to drag massive monolithic super metal beams across rollers, up ramps to assemble indestructible mech chassis to sell to the humans.
"Sir, we take shipments from here all the time. What are we here for?" Pharlie asked.
"Not a what, a whom." Conner said.
The casket of the revered Exalted Inquisitor Eshka Layenna was loaded on board, but it was not made by Sunder. No, it was tech from some other society, preserving her eternally in a state of dormancy, a kind of molecular stasis.
"We're taking her back to the ones who put her in there. They have a gift for us. She is our gift for them. The Sunder have agreed to this, in the name of the war effort."
The Desperado star sailed to the nearby Kriesene system where an old gravity cloud that looked like a planet had hundreds of planet-sized moons dancing around it like an insane ballroom.
"The shoals around their world will make this somewhat dangerous to traverse. We have a map, given to us by the Sunder, so we should be fine." Conner told Pharlie.
"Danger, eh? Kinda like it, don't you?" Pharlie teased.
"That's enough of that." Conner said without any real command in it, smiling.
The Skiesene had a moon-sized space station named Thoughtfulness where they conducted much of their trade with each other. They looked like dark-shelled nightmare creatures, some kind of H.R. Giger prophecy had remembered these creatures long before humans had met them.
Conner witnessed their massed warriors, in stasis, embroidered stole draped over them, crouched motionless atop pedestals with twenty-yard tall tapestries depicting their many victories in bloody combat. They sat there in a great hall in their various forms and armors, but always hideous monsters, reminding him of the Dark Beings vaguely, except devoid of insectoid features.
The Skiesene were delighted by the delivery of their goddess, Eshka Layenna. A time without bloodshed was declared, and the Skiesene offered a shipment of their finest warriors, in egg form.
The Skiesene Khan grinned with uncannily human-looking teeth, but in its grin was a sharpened beak that could pierce the solid dome that was their head, with no eyes or ears, at least not in one place, for they had sensory all over their bodies.
"Uh, thanks. We could always use some special, uh, special forces." Conner accepted the eggs, as he was under orders to do. They were preserved until called, using a key to deactivate the stasis they were in. Then they would serve the orders in their minds, to obey their human commanders.
"I hope they don't have to facehug us and chest burst us." Pharlie chuckled.
"That's enough of that." Conner told her, smiling.
The last stop was the world of the Beebee, aliens who looked like cats wearing incredibly fancy clothing.
"We've tailored new uniforms for the human armies. You'll like them." The Master of Design, top official of the Beebee, told Conner, purring as he went.
Conner put one hand on his elbow and one holding his chin, trying to keep a straight face, when he saw the uniforms.
"They are a little small, don't you think?" Conner looked at the feline models in the uniforms meant for human soldiers.
"And kinda derpy with all those frills and colors?" Pharlie offered further criticism.
The Master of Design seemed to think the uniforms were being complimented, anticipating no other response. It took a moment to sink in that the humans were mocking all their hard work.
"All of the specifications for armored clothing were met. These uniforms will preserve your body temperature in very extreme conditions and will slow ballistic projectiles so that they cannot penetrate the cloth, but instead have their kinetics splattered outward and also the colors shift to the mood of the wearer. You can make it camouflage if you like. We worried that human sizes made dispensing millions of these uniforms impractical compared to making an adjustable size. Try one on." The Master of Design was not offended, but stood his ground, his hair puffing up making him look sophisticated and official. His whiskers twitched handsomely at the end and he gave a prolonged blink.
"They still look silly, why so many frills?" Pharlie chuckled.
"That's enough of that." Conner sighed.
The humans were about to leave and board their ship when Conner spotted an ancient mech standing next to the star port.
"What's that?" he asked.
"The tomb of Drastic Conner Mcfarley, the mech knight who defended our world, surprising a lone scout of the Dark Beings and engaging it in single one-on-one combat, saving our world. Drastic Conner Mcfarley died in his mech during the battle. The scout retreated and left us unharmed." The Master of Design said.
"Why'd it leave?" Conner asked, but recalled what his clan father had done. He awaited the answer he knew:
"Drastic Conner Mcfarley disarmed it, but left its capacity to retreat intact. It is believed he deliberately used this measure of engagement, in order to ensure the enemy would not retaliate by bombarding our world. When one of them dies, the world they die on gets destroyed. He might have survived the battle if he'd just killed it when he had the chance. We know this. He sacrificed himself to save us."
"That's right." Conner nodded. He and Pharlie felt solemn, realizing how far their journey had taken them, all the way to where it had began for them. "We're him, and we won't let you down."
submitted by dlschindler to HFY [link] [comments]


2024.05.16 21:17 badchriss This clock having a mirrored and flipped face

This clock having a mirrored and flipped face submitted by badchriss to mildlyinteresting [link] [comments]


2024.05.16 21:10 SparkyNest [H] Recent Bundles +150 Steam Games [W] Want List or Paypal (from 0.80$ each)

    REP
Steam profile
IGSRep +118 trades confirmed
SGS Flair +237 trades confirmed
GameTradeREP +24 trades confirmed
       
Payment through Paypal (USD) using Good & Services option. Not accepting other type of payment (bitcoin, Venmo, etc). If you want to pay using F&F option fees are on your own (I'm from EU).
     
Press Ctrl + F to search games in the list
   
  Want List
  • Huntdown
  • We Were Here Forever
  • THE DARK PICTURES ANTHOLOGY: LITTLE HOPE
 
   
   
SPECIAL PACK This 15 games for 1$
  • Western Press Mk Cans II Character DLC
  • Western Press
  • Kholat
  • 140
  • MirrorMoon EP
  • Contraption Maker
  • Air Guardians
  • Gentlemen!
  • Gravity Badgers
  • Ignite
  • Tank Operations - European Campaign
  • McGuffin Curse
  • Age of Steel: Recharge
  • Combat Wings: Battle of Britain
  • Battlesloths 2025: The Great Pizza Wars
5$ * Earth Defense Force 4.1 The Shadow of New Despair + a ton of DLC * DLC list here
   
10$
Game deslisted from Steam
   
0.80$ each one
OFFER Buy 5 games of the this list for 3$
OFFER Buy 10 games of the this list for 4$
   
   
1.75$
OFFER Buy 3 games of this second list for 4$
   
submitted by SparkyNest to SteamGameSwap [link] [comments]


2024.05.16 21:10 SparkyNest [H] Recent Bundles +150 Steam Games [W] Want List or Paypal (from 0.80$ each)

    REP
Steam profile
IGSRep +118 trades confirmed
SGS Flair +237 trades confirmed
GameTradeREP +24 trades confirmed
       
Payment through Paypal (USD) using Good & Services option. Not accepting other type of payment (bitcoin, Venmo, etc). If you want to pay using F&F option fees are on your own (I'm from EU).
     
Press Ctrl + F to search games in the list
   
  Want List
  • Huntdown
  • We Were Here Forever
  • THE DARK PICTURES ANTHOLOGY: LITTLE HOPE
 
   
   
SPECIAL PACK This 15 games for 1$
  • Western Press Mk Cans II Character DLC
  • Western Press
  • Kholat
  • 140
  • MirrorMoon EP
  • Contraption Maker
  • Air Guardians
  • Gentlemen!
  • Gravity Badgers
  • Ignite
  • Tank Operations - European Campaign
  • McGuffin Curse
  • Age of Steel: Recharge
  • Combat Wings: Battle of Britain
  • Battlesloths 2025: The Great Pizza Wars
5$ * Earth Defense Force 4.1 The Shadow of New Despair + a ton of DLC * DLC list here
   
10$
Game deslisted from Steam
   
0.80$ each one
OFFER Buy 5 games of the this list for 3$
OFFER Buy 10 games of the this list for 4$
   
   
1.75$
OFFER Buy 3 games of this second list for 4$
   
submitted by SparkyNest to indiegameswap [link] [comments]


2024.05.16 20:56 RanaKozu Revolutionizing DeFi with Omnia Protocol: Security, Interoperability, and Innovation

In the dynamic and ever-changing world of decentralized finance (DeFi), the Omnia Protocol stands out as a beacon of reliability and security. As innovation accelerates and security becomes increasingly crucial, Omnia Protocol provides traders, developers, and applications with a robust toolkit that offers seamless connectivity and unwavering support around the clock.
Omnia's core functionality revolves around its revolutionary ability to securely bridge diverse blockchains. In an era where interoperability is key, Omnia excels by giving users access to a vast network of over 40 blockchains. This access allows wallets and applications to communicate effortlessly, collaborate on projects, and execute transactions with confidence. Importantly, users maintain full control over their connections, enabling them to navigate the decentralized ecosystem with autonomy and peace of mind.
One of Omnia's most impressive features is its innovative approach to combating the threat of sandwich bots in the public mempool—a significant concern for traders who want to protect their strategies and assets. Omnia implements sophisticated safeguards to ensure that decentralized exchange (DEX) transactions remain protected from malicious actors, thereby preserving the integrity of the trading process and boosting user trust.
Omnia's impact goes beyond individual transactions; it strengthens the entire DeFi landscape. By providing a reliable toolkit, Omnia fortifies the foundations of decentralized finance, creating an environment where innovation can thrive and opportunities are abundant. Its unwavering commitment to availability and support acts as a shield against instability, ensuring that the DeFi ecosystem remains robust and adaptable in the face of evolving challenges.
In essence, Omnia Protocol is a cornerstone of the DeFi ecosystem, offering unparalleled security and connectivity to users worldwide. Its robust architecture not only highlights the transformative potential of blockchain technology but also signifies a paradigm shift in how financial transactions are conducted. For traders who prioritize security and efficiency, Omnia is an indispensable ally, embodying the spirit of decentralization while driving the DeFi movement forward into a new era of potential and prosperity. With Omnia, the future of decentralized finance is not just promising—it's secure, interconnected, and full of possibilities.
Website: Omnia Protocol
submitted by RanaKozu to cryptogames [link] [comments]


2024.05.16 20:02 Flagg1991 Children of the Night (End)

The pain was the worst thing`Dominick Mason had ever known…and he knew what it felt like to die. It felt like his brain was in a blender, being chopped to liquid for a Jeffery Dahmer smoothie and though it seemed melodramatic, he imagined he could feel himself losing brain cells by the minute. The sun, Merrick told him, would not burn him, but it would decay him faster, so sleep or rest during the day. With the sick, throbbing agony in the center of his brain, however, that was impossible. He spent most of the day curled up on his side, hugging his knees, and moaning. He had flashbacks to dying in his apartment, and that made things even worse. The room became too small, too close, the air too stale. His heart, filled with the blood of last night’s meal, pounded in his chest, and he went from slightly chilly to hot and feverish as blood was forced through his circulatory system. It mixed with the embalming fluid and left him feeling full and constipated. He didn’t want to get up, but he also didn’t want to go on lying there. He was the definition of miserable.
Before long, the pain became too great and he got up to pace, pressing his hands to the sides of his head and gritting his teeth. Merrick, who slept very little if at all, sat in his chair and watched, trying his best to talk him through it. “It’ll be over soon,” Merrick said. “The pain receptors in your brain are the first to go. When they burn out, you won’t feel anything.”
“When?” Dom asked, his voice raising with the tide of pain.
“A couple days?”
“A couple days???”
“The pain will lessen gradually,” Merrick said, “this is the worst of it.”
Dom believed that this was, indeed, the worst of it, but he doubted it would lessen gradually. For the rest of the day, the pain got worse and worse until every light blinded him, every sound turned his stomach, and the smell of anything made his gorge rise. The cloying smell of the embalming fluid, the light but unmistakable odor of dead flesh, and the scent of stale blood sitting in decomposing stomachs made him want to vomit, but he was afraid to. He didn’t think he could handle the sight of blood rushing from his mouth and splattering the floor. He still possessed enough of his facilities, he believed, to go insane.
Pain has a way of darkening one’s mood, and by the time the sun began to set, Dom was in the most sour mood possible. Even Merrick’s calm, fatherly voice was beginning to get on his nerves. When he took the oath to him the day before (or was it the day before that?), he turned his faith and trust over to Merrick entirely. He was finally accepted, included, finally had the love and fellowship that, in the pit of his soul, he had always wanted. Merrick understood him, Merrick was kind to him.
But deep down, Dom realized that he didn’t fully trust him. He said that his brain didn’t rot because he was “lucky.” That sounded like some bullshit to Dom. Why wasn’t Joe a blithering idiot too? Was he lucky as well? Did lightning strike in the same place twice? In life, people had done nothing but hurt and lie to Dom. Why would death be any different? He thought back to the strange liquid that always seemed to leak from Merrick’s nose, and Joe’s. He thought it was embalming fluid, but it never leaked from his own nose, or from anyone else’s. He tried to tell himself that it was far too soon to judge, but once he began to doubt something, his mind raced away. He felt a twinge of guilt, as Merrick had done absolutely nothing to deserve his doubt, but goddamn it, his head was on fire and he wanted it to stop. Anything to make it stop.
Just after sundown, the music began as Club Vlad opened for the night. It throbbed in the center of Dom’s head and made him want to claw his eyes out. When it became too much for him, he slipped away and stumbled into the sultry summer night. He came out in the alley running behind the club, clutching his head and breathing through bared teeth. He staggered, bumped into a metal trash can, and roared at the top of his lungs, as if he could purge himself of the pain by screaming.. His voice echoed and came back to him, making the pain worse.
Merrick was lying. He knew it. People always lied to him. His brain was rotting and PEOPLE WERE LYING! Flashing with anger, he slammed his fist into the brick wall of a Chinese restaurant. He barely felt anything so he did it again and again until his hand was lumpy and shaking. He sat heavily on the ground and pressed his hands to his head. It felt like maggots were burrowing into his brain, and he was suddenly terrified that they really were. He needed to stop this awful pain, but how?
An idea came to him.
The funeral home.
Maybe there was something there.
He was on his feet and lumbering there before the thought had even finished reverberating through his mind. It was a long shot, but he was desperate. On the way there, he stuck to the shadows, staying out of the light cast by the streetlamps and avoiding people. When he passed them, he kept his head down. When he reached the funeral home, he went to the back door where he and Jessie had gone the other day. He tried it, and it opened.
Inside, he bounced off the walls like a pinball, knocking over an end table and tearing at the flesh of his head, pulling it away in long, gray strips. He panted like a wild animal, his body a raging tempest of emotions. It was reaching a crescendo, he thought, his brain was about to go supernova. The world dimmed, things got really echoy. The young man he’d picked the embalming fluid up from was there, looking scared.
Flashing, Dom grabbed him by his shirt and slammed him against the wall, knocking a painting of a flowery field to the carpet. Everything seemed to go in slow mo. “How does Merrick keep his brain from rotting?” Dom heard himself demanding from far away. “How does he keep the pain away?”
The man trembled. “I-I-”
Dom slammed him again. “Tell me or I’ll make you like me.”
“No!” the man wailed. He shook his head from side to side, his eyes wet with fear.
“How?”
“He-He uses a solution,” the man stammered. “Some kind of special thing. It preserves his brain. That’s all I know.”
An idea occurred to Dom.
Holding the man by the back of his neck, Dom dragged him into the embalming room and pushed him against the table. His head felt like it was swelling. Hot, screaming, getting ready to explode. He looked around, found the embalming machine, and grabbed the hose. There was a sharp tip on it so that you could jam it into a body. He held it in his hand, hesitating for just a moment before pressing it to his temple. The man watched in horror as Dom slowly shoved the tip into his head. It tore his flesh, broke through his skull, and sank into his brain. He felt no pain, only pressure, but cried out anyway. His eyes rolled up into his head and a shudder went through his body.
“Turn it on!” he yelled.
“That’s not what he -”
“TURN IT ON!”
Starting, the man turned the machine on. Cold embalming fluid squirted directly into Dom’s brain. Almost at once, the pain began to ebb away, replaced only by a fuzzy sense of numbness. His knees buckled and he sank to the floor, looking for all the world like an addict taking a hit of his favorite substance after a long and trying day. Fluid leaked from his nose, ears, and eyes and dripped down the back of his throat.
The man waited for a long time, then turned the machine off.
The pain was gone.
At least for now.
“Tell me again,” Dom said.
The man did. Merrick used a special preserving agent to keep his brain intact. Joe, the man suspected, got it as well. So Merrick had lied to him.
Dom felt betrayed.
And angry.
Leaving the man (Dom realized that he didn’t even know his name), he walked back to Club Vlad, his hands fisted in his pockets. All his life, he had been hurt, lied to, and ignored. All his life, people had done wrong to him. And all those years, he just took it.
He resolved not to be so accepting in death.
At last, he was going to stop being a sniveling little bitch and stand up for himself.
When he reached Club Vlad, he slammed through the back door and took the stairs two at a time. At the top, he called out Merrick’s name. The old man was sitting in his chair, being attended to by Jessie and Matt. He looked startled when Dom came in. “You lied to me,” Dom said, stalking over to his benefactor.
“What are you talking about?” Merrick asked, doing his best to sound innocent.
“You lied to me!” Dom screamed. He bent over and got so close to Merrick’s face that he could have kissed him. “You told me there was no way to save my brain, but that’s not true. You’re pumping your head full of shit and letting the rest of us rot.”
A dark shadow flickered across Merrick’s face. “Watch your tone when you talk to me,” he said. His voice was low, menacing.
“Fuck you,” Dom said. “I should k -”
Suddenly, Dom was being grabbed from behind and yanked back, an arm around his neck. He cried out in alarm as Joe swung him around and slammed him face first into the wall. He heard his nose crunch, felt his teeth shatter. Next, Joe wrestled him to the glitter-sprinkled floor and wedged his knee between his shoulder blades.
Merrick watched with a sneer of disgust, his hands gripping the arms of his chair. He wheeled himself over, Jessie holding his IV stand steady and following behind. “Listen, you son of a bitch,” Merrick said, “you’re lucky to be a part of this family.”
Cold fear filled the pit of Dom’s stomach, yet he wouldn’t back down, couldn’t back down. He had lived his entire life like a mouse in a burrow, he wasn’t about to live his entire death the same way.
“Fuck your family,” he said defiantly. “And fuck you.”
Merrick’s face darkened and he sat back in his chair. He looked at Jessie and nodded. She went away and came back a moment later holding something in her hand. Dom’s eyes widened when he saw what it was.
A wooden stake, one end honed to a razor point.
Why they had one of those lying around, Dom didn’t know; it’d be like Superman keeping a piece of kryptonite on the mantle over the fireplace. Merrick directed Max and Matt to hold Dom’s arms down/ Joe pivoted, kneeling on his head now so that Dom’s back was exposed. Dom’s heart slammed with terror and tremors raced through his body.
“Is this what you want, Dominick?” Merrick asked. “To die? To truly die?”
Dom swallowed hard. No, it wasn’t what he wanted. He wanted to live, to love, to have a family one day. He wanted a happy, normal life, the life TV and social media had been promising him since he was a little boy.
But all of that went out the window the night he died in his little apartment. There was no life anymore, just a grotesque parody of life. What was there for him other than death? Clinging desperately onto life for decades like Merrick? Stuffing himself full of embalming fluid and moth balls? Grinding for one more minute just so he could sit hooked up to a machine?
Dom spoke.
“What?” Merrick asked, not having heard.
Dom licked his lips. “Just fucking do it.”
For a moment, nothing happened. Expectation hung in the air. Finally, breaking the tension, Merrick nodded to Jessie. Kneeling down, she brought the stake up, and Dom closed his eyes.
This was it.
He braced himself for death.
Jessie brought the stake down just as a shot rang out, deafening in the small space. Her head whipped back, embalming fluid, skull fragments, and gray, sickly pieces of brain showering from the back of her head. She flopped back and landed on the floor with a sickening thud.
A woman cop, her black uniform in stark contrast to the burning white light, stood in the doorway to the hall, her gun drawn. Everyone did, indeed, freeze, more out of surprise than respect for authority. They all looked at her, their dead mouths agape, resembling children who’d been caught doing something wrong.
“Everyone on the ground!” she barked.
No one knew what to do. They hadn’t expected to be raided by the police so had not prepared. She jerked her gun and everyone instinctively flinched. “On the ground!” she repeated. To Max: “You too, bone boy.”
The first one to react was Joe. He sprang at her like a big, undead frog. She brought the gun around and fired, but he was already crashing into her. The shot went wild and struck the IV bag next to Merrick; he ducked and let out a sound of fear. The others rushed her, and Dom got quickly to his feet. Jessie lay on the floor, her mouth open in a silent scream and her bony fingers frantically examining the ragged hole in the center of her forehead. For a moment, he was frozen; everything was happening too fast. Then, when Merrick saw him and cried, “Stop him!, he came alive. Jessie tried to grab at his leg, but he kicked her hand away and stomped on it like it was a giant spider. On the other side of the room, Matt, Joe, and Max had forced the cop to the ground. Perhaps excited by all the action, perhaps just hungry, they began to tear her apart. She howled in pain, and the last thing Dom saw before he fled was her open, blood-filled mouth. Her eyes were filled with pain…with terror.
After that, Dom ran.
***
When the interloper was dead, Merrick directed Joe and Matt to dispose of the body. “Get rid of it,” he said wearily and rubbed his temples, “make sure it isn’t found.”
They rolled her into a carpet from the office, and the way her feet stuck out may have been comical under other circumstances.
Goddamn it, this was bad. Merrick’s entire philosophy rested on avoiding detection. He had done well in that regard. Whereas other vampires had attacked their villages and gotten themselves dug from the ground and staked, he had made it four decades. He never shat where he ate, and there is no bigger turd than killing a cop. They might dawdle on all the boys who’d gone missing - taken because their blood was stronger and more robust than the blood of girls - but they would not take a cop dying lightly at all.
Merrick owned various businesses around the country. He and the others would simply move on. Tomorrow night, they would disappear into the night. They had done it before and they would likely do it again. Once things were settled at their new base of operations, he would have Joe killed for all the trouble he’d caused.
And Dom?
Let him go.
The little rat wouldn’t last a month on his own.
“Jessie?”
Jessie sat against the wall, gazing into space.
“Jessi…start packing. We’re leaving tomorrow.”
She didn’t move, didn’t seem to hear. The shot had all but lobotomized her.
Damn it.
Joe backed the van up to the back door of Club Vlad, and then helped Matt carry the carpet-rolled body down the stairs. They loaded it in and closed the back doors. Together, they drove around looking for a place to dump it. Merrick wanted it to go unfound, but Joe doubted there was anywhere isolated enough in the city. On a whim, he drove to Washington Park, a vast expanse of green trees and shadows. There was a large pond there. It seemed the best option. They were leaving tomorrow anyway, so did it really matter?
Joe backed the van to a railing overlooking the dark water and put it in park. He and Matt got out, fetched the body, and carried it to the railing. They lifted and heaved it over. It splashed. Thus, they rid themselves of Vanessa Rodregiez.
***
Bruce sat anxiously up in his easy chair and waited for his cell to ring.
Parked in front of the TV by warm lamplight, a beer wedged between his legs, he’d been watching the 11’o’clock news when the phone rang. He picked it up and it was Vanessa. “Hey,” she said, “I think I found our body?”
“Which one?” Bruce asked and took a drink. “We have a lot of those these days.”
“Dominick Mason.”
Bruce sat forward in his chair. “Dead Dom? Where?”
“He just came out of a funeral home, ironically enough.”
“That sounds about right,” Bruce said. “Where are you now?”
“I’m following him east on Central.”
“Are you sure it’s him?” Bruce asked.
“I think so, but I’m not sure. I’ll call you back when I’m done.”
Bruce sat the phone aside and waited.
And waited.
And waited.
At some point, he fell asleep sitting up, his head lulled to one side and his mouth open. He snorted himself awake, rubbed his eyes, and sat up. He checked his phone and was perturbed to see that it was past 2am.
Vanessa hadn’t called.
He dialed her number and let the phone ring until it went to voicemail. Sighing, he ended the call, then waited a few minutes and called again.
Still no answer.
It was possible she had forgotten. Maybe the guy turned out to not be Dead Dom after all. She followed some random guy around, realized it, and that was that. Hell, she was probably too embarrassed to call and tell him about it.
Something told him that wasn’t right, however.
There was something else going on here.
Something…darker.
Just before 3am, his phone rang. He snatched it off the end table next to the chair and answered it. It was Burt, the night sargent. “Rodriguez is missing,” he said simply.
Bruce’s heart sank. “Missing?”
“Yeah, she hasn’t checked in for hours and she isn’t answering calls.”
“I’m on my way,”
Bruce tore through the house, pulling on his uniform, socks, and shoes in less time than it took a Daytona 500 pit crew to service a car. In ten minutes he was speeding down 787, the Albany skyline rising in the distance. As he hurried to the station, he thought back to his last conversation with Vanessa. She’d found Dom the Dead Man, the “corpse” who’d scared Ed Harris out of a 20 year career. Despite all their talk about vampires and the living dead, Bruce didn’t believe it, not really. Even so, he was sure that Dominick Mason had done something to Vanessa.
He checked in at the station before doing anything else. They had triangulated Vanessa’s last known location via cell towers. Cops were already out searching the streets for her. Bruce went out as well, intending to start from her last known position and work his way east on Central. The closest funeral home was Tebbutt and Frederick on Central. There was also Lasak & Gigliotti on North Allen Street. Bruce didn’t know which one Vanessa had seen Dom come out of, so he checked both.
Both were deserted at this hour.
Undeterred, Bruce drove up and down Central Ave. At one point, he noticed a shape in an alleyway that looked human. He hit the brakes, jumped out, and pointed his gun at it. “Freeze!”
An old wino stepped out of the darkness. “Alright, you got me,” he said, hands up. “I started COVID. It was an accident, I swear.”
Bruce sighed and put his gun away.
For two more hours, Bruce searched the streets of Albany for Vanessa. At 4am, he spotted a squad car abandoned in the rear parking lot of an abandoned gas station on lower Lark Street. He called it in and the desk sergeant confirmed that it was the one Vanessa had signed out that night.
Still there was no sign of Vanessa herself.
Just after dawn, as the city came alive and CDTA buses began lumbering up and down the streets, Bruce got a call on his cell. “A jogger found a body in Washington Park.”
Bruce was in his personal car. He had no bubble light, no siren. Even so, he sped through the streets like he did, blowing through red lights and stop signs with little care to himself or anyone else. When he got to Washington Park, he found an army cops by the pond, the scene cordoned off with yellow crime scene tape. He slammed on the brakes, threw open the door, and jumped out without even turning off the engine.
The body was rolled up in a carpet and lying on the bank. Two beat cops unrolled it at Bruce’s direction. “We should wait for -” one of them started, but Bruce cut him off.
“Do it.”
They compiled, and at the carpet’s center, like a rotten cream filling, was the body of Vanessa Rodregiuez. Her head was tilted to one side, her eyes wide and staring. Her throat had been mangled and ripped away, her head nearly severed. Even in the black and red mess, Bruce could make out the teeth marks and puncture wounds. They may have looked like something else to anyone else who saw them, but he knew, in that moment, what they were dealing with.
A sharp pang of horror sliced through him, and his knees went weak.
“Jesus Christ,” one of the beat cops drew.
Bruce fell to, rather than knelt on, one knee. He bent over the body, a mixture of horror and grief welling his throat. He wanted to reach out, to comfort her in death, but he stayed his hand. Instead, he visually examined the body. She had bruises on her face, defensive wounds on her hands, and her gun was gone. Whoever had attacked her, she put up a fight.
Something glinted on her pants.
“What’s that?” one of the cops asked.
“I dunno,” the other replied, “but it’s all over the carpet.”
Indeed, there were glinty little specks all over it, winking like mocking eyes. Nice work, eh? We really fucked her up, didn’t we? Wink wink.
“It looks like…”
The other cop cut him off. “Glitter.”
Bruce flashed back to his visit to Club Vlad the other day.
There had been glitter everywhere.
Bruce stood up.
He had work to do.
***
Instead of going back to the station to start his shift, Bruce went to Lowes. There, he bought a mallet, a gas can, and a dozen sticks of wood. An employee in a blue vest used a machine to sharpen them to a wicked point and he took his purchases to the car. Next, he drove over to the Mobil station and filled the gas can. He was so hellbent on revenge that he sprang for premium, the good stuff. No expense shall be spared.
His final stop was at a Catholic church. He filled a canteen with holy water from the marble font by the door, then swiped a crucifix from the wall. He stopped by the station, went inside, and grabbed a black duffle bag with POLICE written across the front in yellow. He opened the gun cabinet in his office, took out a shotgun, and loaded it with shells. He grabbed a handful from the box and stuffed them into his pocket.
He was just finishing up when Bertha came in. “There you are,” she spat, “I’ve waited long enough for you to do something. I demand -”
Bruce shoved the duffle bag into her arms. “Make yourself useful.”
“What?” she demanded.
“We’re going to get your granddaughter,” Bruice lied. Kind of.
Bertha’s demeanor changed. “Good. It’s about time. I was starting to think you were a complete incompetent.”
Bruce didn’t answer. Outside, he plucked the bag out of Bertha’s hands and tossed it into the backseat. He slipped behind the wheel and Bertha sat in the passenger seat. “Where are we going?” she asked.
“Club Vlad,” Bruce said and started the engine.
“I want all of them arrested.”
“Yes, ma’am,” Bruce said.
She barked orders the entire way there. Bruce was so deep in his thoughts that he barely heard her. The image of Vanessa’s ruined throat and terror-twisted face haunted him, and he felt a lump forming in his throat. Hot tears filled his eyes but he blinked them back and forced himself to calm down.
I’ll cry when I’m done killing, he thought.
A few minutes later, he pulled to the curb in front of Club Vlad. It was a hot and sunny day and the place seemed even more ominous because of it. The windows were black, the front cast in perpetual shadows by the old marquee from when it used to be a theater. The place was surely closed, but Bruce could hear music still playing from inside, some techno dance bullshit. “Alright,” he said, “let’s go.”
Getting out, he slung the dufflebag over his shoulder and carried the shotgun, the canteen full of holy water clasped to his belt. Bertha carried the gas can, looking confused. “Why do we need this?” she asked.
“We’re burning the place down.”
Bertha blinked in surprise…then an evil grin carved across her face. “That’ll show the bastards.”
Unlike last time, the door was locked. Bruce used the butt of the shotgun to break the glass, then reached inside and unlocked the door, being careful not to cut himself. This was the point of no return. What he had in mind would probably get him kicked off the force or even thrown in jail - and we all know how tough jail can be for a former barnaclehead. The memory of Vanessa’s contorted face pushed him on, however.
He’d suffer any consequences he needed to just so long as he got the sons of bitches who did this to her.
Inside, the club was cool and cave-like. Strobe lights flashed, on and off, black and white, dazzling Bruce’s eyes. The bartender was at his station, cleaning up from the night before. When he saw Bruce and Bertha come in, he started. Bruce pointed the shotgun at him. “Don’t fucking move,” he commanded.
The bartender hesitated, then reached for something under the bar.
The shotgun kicked in Bruce’s hands, and the bartender flew back, turning as he crashed into the barback. Bottles, glasses, and mugs crashed to the floor along with the bartender. Bruce racked the gun, and the shell flew out. He moved low and fast now, expecting to be swarmed by vampires, living thugs who worked for vampires, or vampire thugs who worked for themselves.
Though the shot had been like thunder, no one came.
Bruce had no idea where to go, but he imagined that vampires were naturally gravitate to the lowest part of the building. Was there a basement? Shit, he should have looked up the building plans at city hall. Damn, this is what happens when you go off half-cocked. He searched around a bit, opening doors and sweeping the rooms beyond with the shotgun. He found no basement, only stairs leading up. “Stay close,” he said to Bertha.
In the lead, Bruce crept up the stairs, the flashlight on the shotgun providing a cone of clean, white light. At the top of the stairs, he went right, and came to an office and a store room. Backtracking, and bumping into a bungling Bertha, he went into the next room. It was large and open with a vaulted ceiling, almost like a ballroom. Here the same strobe lights throbbed on and off, making him dizzy. Was this to dazzle prospective vampire hunters?
Either way, this was the place. Bodies lay strewn across the floor, some curled up on their sides and others in the classic vampire pose: Flat on their backs with their hands laced over their chests. In the center, like the sun to the planets, Merrick Garvis lay slumped back in his wheelchair, his neck exposed for any potential assassin to come and cut. Not that it would kill him. At least Bruce didn’t think it would.
“They’re all dead,” Bertha whispered. She looked around and gasped. “There’s Jessie.”
Jessie lay on her back, her hands folded on her chest. She had a ragged bullet hole in the center of her forehead. “Oh, God,” Bertha wavered, “someone shot her.”
He hoped it was Vanessa. And he hoped it fucking hurt.
Looking around, Bruce couldn’t find Dominick Mason. Was he the one who killed Vanessa? Was it a group effort? He wanted the little son of a bitch bad, but it looked like he’d have to go on without him. They didn’t have much time.
Unshouldering the duffle bag, he knelt down and rummaged around. “Start splashing that gas on the bodies,” he said.
“But -”
“Just do it,” he snapped.
There must have been a harder edge in his voice than normal, because Bertha jumped and did as she was told. She upended the can and began to splash gasoline onto the sleeping forms, the smell of it acrid and strong.
Taking out a stake and the mallet, Bruce went over to Merrick and knelt down. He gripped the stake in one hand and placed it firmly against Merrick’s chest. He brought the mallet up and hesitated, the gravity of what he was doing finally reaching him. What if he was wrong? What if -
Merrick’s head whipped up and their eyes locked.
Too late.
Bruce brought the mallet down as hard as he could. The stake drove deep into Merrick’s heart, and the vampire let out a howling screech that rang through the chamber like the cry of a banshee. His bony fingers clawed at the stake and his head whipped from side to side, his back arching and his robe coming open. In the quick strobe pattern, Bruce was shocked to see that his body was little more than a wood frame, chicken wire, and cotton balls. His blacked heart was hidden behind a screen of mesh that the stake had easily torn through. It throbbed, seemingly in time with the strobe lights, and Merrick let out another wail.
Bertha screamed, and Bruce jumped to his feet.
The vampires, drawn by their master’s cries of distress, were rising to their feet. Two, four, six of them, pale and ethereal like ghosts in a gothic mansion. They came toward Merrick, and Bruice fell back a step. The old man had gone still and lay slumped to one side, his eyes open and his mouth slack, embalming fluid leaking from the corner of his lips. Jessie bent over him and touched his face. Though she moved like a zombie, with no human emotion, Bruce was crazily sure that it was a touch of tenderness and love. Merrick didn’t stir.
He was dead.
Jessie looked at him. Yellow liquid leaked from her eyes like tears. Instead of attacking him, she turned on her grandmother and slammed her against the wall. Bertha screamed and dropped the can. It landed on its side, its contents sloshing out onto the floor. A man that resembled the pictures Bruce had seen of Joe Rossi only deader rushed him, slamming into him and knocking the shotgun aside. It hit the floor and skidded away. Joe grabbed Bruce around the throat and squeezed. Still the lights flashed, off and on, off and on. The walls thrummed with the mechanized beat of dance music, pierced only by Bertha’s screams as Jessie ripped out her throat.
Joe leaned in, his fangs wicked and glowing in the light. Bruce clawed at the monster’s face, tearing away strips of dead flesh. Joe turned his head to the side, and Bruce kneed him in the groin. Even dead, getting kicked in the balls hurt like hell, apparently. Joe’s grip loosened and Bruce was able to shove him off. Bruce unclasped the canteen and frantically screwed the cap off as Joe recovered. Joe sprang at him again, and Bruce splashed him in the face.
A sound like sizzling meat filled the air, and Joe screamed at the top of his lungs. He pressed his hands to his face and danced around the room, his skin liquifying and oozing between his fingers. The others were coming now, led by a terrible skeletal thing. Bruce scooped the shotgun off the floor, brought it around, and fired. The blast hit the thing dead center, tearing it literally in half. The top half flew back, an all too human look of surprise on its face, and the bottom half fell over with a wet thud. Another vampire came at, and Bruce slammed it across the face with the butt of the gun. He heard its jaw crack, saw teeth flying.
Bertha lay dead on the floor, Jessie bent over her. The smell of Bertha’s blood attracted the others, who seemed to forget about Bruce, Merrick, and everything else. Joe was on his knees, wailing in pain, and the skeletal thing was pulling itself toward Bertha. A feeding frenzy broke out as vampires fought to get a piece of her the way piglets might fight over their mother’s teat. Bruce watched in a mixture of horror and fascination, but recovered himself. He grabbed the gas can from the floor and dumped the rest of its contents on Merrick’s body, the feeding vampires’ backs, and the floor, using the last of it to make a little trail to the door. He tossed the can aside, bent down, and stuck a match.
A huge, fiery whump filled the room, and fire streaked along the trail. The vampires all went up in a huge ball of flames, and fire shot up Merrick’s body, catching his robe, his hair, and the wooden frame that had kept him semi upright for God knows how long. Letting out inhuman screams, the vampires broke from Bertha’s corpse. One stumbled around, bounced off the wall, and fell; another toddled toward Bruce before falling to its knees. The half skeleton kept drinking from Bertha’s neck even as it burned.
The heat was enormous, baking. Bruce backed away, and the last thing he saw before smoke obscured his vision was Merrick Garvis.
He was literally melting.
***
Dominick Mason tried to go home, but he no longer had a home. All of his worldly possessions sat on the sidewalk in front of his building, discarded coldly as easily. His key didn’t work in his door and there was a FOR RENT sign on it. Why would it be any other way? He was dead. Sooner or later, everyone forgets you when you’re dead, and all the things you held so dear wind up in the trash. It was a hard pill to swallow, but most people aren’t around to see it after they die.
He was.
From his building, he walked east toward Washington Park. In the distance, thick, black smoke billowed into the air, and sirens rose. He barely noticed and wouldn’t have cared even if he did. No more rubbernecking for him. That was for the living.
The pain that had plagued him so the previous day came back, only less this time. Maybe he was imagining it, but it was getting harder to think. Not that he cared, really. What was there to think about anyway? How he had no one to mourn or miss him? How he died and not one single person, except for maybe his mother, cared, or even noticed? How he had done nothing with his life? Even to the women he’d slept with, what was he? Just another dating app hookup. They probably didn’t even remember his name.
Merrick had been right about one thing. Death was easy. It was life that was hard…life that hurt.
With that in mind, Dominick made his way to Washington Park. It was a vast and deep place with many small caves and thickets. Kids played on the playground, their cries of laughter scenting the still air. It had grown cloudy and began to rain. Still, smoke poured into the sky in the direction of Club Vlad. Dom didn’t wish ill on Merrick and the others, didn’t hope it was them burning. He didn’t care anymore. Not about them, not about anyone. For better or worse (and he would argue it was worse), his life was over. His time came days ago, he just missed the boat.
Picking out an isolated little area, Dom sat against a tree with his legs splayed out in front of him. He titled his head back and closed his eyes. Yes, thinking was hard now. His mind felt sluggish, cold. He was thirsty…so, so thirsty, but he ignored it.
Slowly, the bugs found him. Flies buzzed around him and laid their eggs in his skin. Beetles scuttled over him, followed by worms.
Next, it was the birds. They ate out his eyes and nibbled at his blue, bloated skin.
The animals came last.
Their appetites were bigger.
And they left little remaining of poor, outcast Dominick Mason.
***
That night, Bruce sat alone in his little trailer, a bottle of whiskey wedged between his legs and unshed tears in his eyes. He stared at his reflection in the darkened TV set and took long swallows from the bottle. He planned to drink until he forgot or passed out, whichever came first. He tried to not think about Vanessa, but in his addled state, he couldn’t control himself, and began to cry. When that storm passed, like the others before it, he chugged from the bottle.
As distant church bells clanged the hour - midnight - a feeble knock came at the door. Bruce took another drink and it came again. Getting up, he stumbled, nearly fell, and gripped the bottle tightly. He didn’t want to lose one precious drop.
Again, the knock.
“I’m coming,” Bruce slurred. He staggered to the door and fought with the lock. He was dizzy and seeing double.
When he got it, he opened the door.
The bottle dropped from his hand and clanked onto the floor.
Vanessa, clad in a puke green hospital gown, stood on the step, her hands pressed to her chest and a look of anguish on her milk white face. Her head tilted to one side, the wounds on her neck cleaned but open, gaping. Her dark eyes shone with tears. “I’m dead,” she said.
Breaking down in tears, she collapsed against him and they sank to the floor. She was cold and smelled. Bruce wrapped his arms around her and held her to his chest anyway. “Shhh, it’s alright,” he said drunkenly. “Hey, it’s alright.
“I’m dead,” she repeated, and her voice broke. “I don’t want to die.”
Bruce held her close, trying to warm her icy skin. He didn’t know what to say, so he cried with her.
“You’re safe now,” he said, “it’s going to be okay.”
“I want blood,” she said and sobbed harder, “I want to hurt people.”
“Shhh,” Bruce said again. “It’s okay.”
Reaching into his pocket, he pulled out a utility knife. He flicked the blade across his wrist and searing pain shot up his arm. “Here,” he said and offered her his blood, “drink this.”
He did this without care and without thought. She needed him, and one barnaclehead always backs up another.
Vanessa hesitated, looking from his face to the oozing blood, unsure.
“Go ahead,” he told her.
Vanessa brought his wrist to her mouth.
And began to drink.
submitted by Flagg1991 to LetsReadOfficial [link] [comments]


2024.05.16 20:00 Spartawolf Galactic High (Chapter 122)

First/Previous
"Watch out!" Jack yelled out to the crowd as the now-glowing overhead turrets, long dormant and forgotten, suddenly whirred to life with a mechanical hum, tracking his movements as he ran, shoving past a group of unsuspecting Xarak to the side as he moved to dodge the torrent of rapid fire aimed right at him, kicking up smoke as the superheated plasma churned the ground underneath him, before the sound of gunfire abruptly stopped.
"Fucking overheating shittubes!" the voice on the speakers cursed. "The Outsider is by the two broken pillars!"
"I see him!" a voice replied from out of the crowd as Jack got his bearings, spotting a group of three uniformed soldiers rushing towards him. As the leader moved to stab him with a nasty-looking barbed shortspear, Jack quickly juked the direction he intended to dodge, dipping to the right as he smashed the avian in the stomach with a vicious kick, shuffling back as he caught the blade of the second soldier with his bracer before throwing them off balance, lashing back at the first with his elbow as he did.
He moved to check the third that was moving to take a swing at him with a bat, but before Jack could do so the soldier was suddenly yanked back as a long, coiled leather whip snapped around them. Following along, Jack spotted an older grey-skinned ganger in black leathers with a coarse, black beard to match his scraggly hair sat down with his back to a wall, casually drinking a beer as he observed the chaos with a mischievous smirk.
As the soldier pulled back his bat to strike the interloper, the ganger grinned and looked down where his legs were already spread wide, revealing a strange metal crotch plate. Suddenly making a jerking motion with one of his legs, the plate flipped up to reveal the barrel of a huge codpiece gun that flipped up to point directly at the soldier, before it fired once, catching the solder completely by surprise as the top of their body was utterly obliterated by a bolt of powerful plasma energy. Smirking, the ganger gave Jack a wink, chugging down the rest of his drink, before charging into the brawl.
Hearing an almighty roar, Jack turned around only to be knocked back yet again as a broken, avian body was roughly lobbed at him, staggering him backwards as the Redeemer turned to the last of the bird-like gangsters, picking him up with immense strength and smashing them to the ground before advancing towards the human more cautiously this time, shoving drunken brawlers out of the way.
“I have long waited for this moment, Outsider. With your death, my King shall grant you redemption!” The Redeemer snarled. Now having a good look at him, Jack couldn’t see any visible weapons on him, which was strange. Last time, he’d brought a gunship and was taking potshots at him with some kind of high-powered rifle. Then again, considering what happened last time, maybe The Redeemer wanted the satisfaction of using his bare hands to beat him to death.
It wouldn’t be a terrible plan considering everything the Ogar had pulled off so far…
While sports on Earth were often separated by gender, despite some resistance from the more liberal-minded, due to biological differences between men and women, combat sports were a whole different game, with mixed martial arts organisations having very specific weight classes for fair competition between athletes, with two fighters of similar size and weight less likely to cause serious injury to each other.
But if you placed an experienced lightweight against even a novice heavyweight? That would introduce major problems for the smaller fighter, who would need to contend with the extra size, reach and power of their larger opponent. Not an impossible fight, but a tough one.
And Jack very much felt like a lightweight here.
Though of course, he had faced larger opponents before. Even an Ogar, though they had defeated the Laird with a cunning trap. However, he didn’t know how well matched he and The Redeemer were in a fair close-range fight outside of the opening moments of the ambush.
Still, he had little choice but to find out. He didn’t have an easy way to escape, and he didn’t know what the status of the others was. If he ran while they were still here then The Redeemer and the Regulators would simply go after them instead to get to him…
No. He couldn’t allow those thoughts to shake him. His friends knew what the hell they were doing, and they could handle themselves just fine. He had to worry about himself right now.
He couldn’t run, so he had to fight.
With a speed he didn’t expect from The Redeemer, they grabbed a nearby chair and lobbed it right at Jack in one smooth motion before following through with another charge.
‘Aegis!’ Jack yelled as he brought his forearm up, as his new and improved shield eagerly sprung up to take the hit from the chair, before a fist smacked into the side of his head as The Redeemer used the chair as a distraction to change his angle of attack.
Spinning with the blow, Jack fought in his mind to stay in the fight as his vision blurred, with the powerful strike threatening to knock him out then and there, before another fist caught him in the stomach, with his battleskin dispersing a hit that would have otherwise easily taken the air out of his lungs.
Retracting his shield, Jack ducked another punch that threatened to decapitate him as he skidded under the blow, parrying a backfist with his forearm that tingled painfully as he ate the blow, before clocking the Redeemer with a punch to the jaw, his gauntlet extending to cover his knuckles with a well-forged plate of metal to add their power to the strike, before the Redeemer threw out a punch that caught him on the shoulder, sending the deathworlder reeling back.
Jack grit his teeth as he fought through the pain, adrenaline rushing through him. He wasn’t out of the fight yet, but he knew he’d gotten the worst of that engagement.
The Redeemer clearly understood this as well, as the zealot strode towards the human with a confident, wicked grin.
But this time, Jack was ready.
‘Caltrops’ Jack whispered the command word, as his gauntlets gave him a good handful of them, subtly tossing them in front of him with an underhand throw, which had gone unnoticed by the Redeemer as they stared at the human with hatred.
Suddenly dashing forward to quickly close the remaining distance between them, the Redeemer roared as he charged Jack again, suddenly grunting in pain and stumbling as his full, heavy mass sent a sharp, painful spike straight through his armoured boot, causing him to lose focus as he looked down at his foot for just a moment to see what had happened.
A moment of distraction that Jack used to its fullest, as he quickly swung his axe down right at The Redeemer’s head.
However, the Ogar reacted with surprising dexterity as he used his forward momentum to avoid the full force of the axeblade, his metal helmet taking a glancing blow as he shoved Jack off balance, causing him to stumble. Quickly predicting what would come next, Jack dropped his axe on purpose as he prepared for a takedown attempt, dropping low and widening his stance as the Redeemer tackled him around the waist to try and bring him to the ground for a quick finish.
“There will be no salvation for you, human!” The Ogar growled through his pain as Jack was forced back by the Redeemer’s superior strength.
“Aww, did you miss me?” Jack taunted, holding on and walking back with the ever increasing momentum The Redeemer was building as he was pushed back along the dancefloor. “I saw your tantrum on the TV afterwards, didn’t know you were a bitch too!”
‘That’s it, asshole.’ Jack thought to himself as he felt his axe clip back onto his back. ‘Get mad. You showed me last time that you like to talk too much. I need to time this right…'
“Your blasphemy ends here Outsider! I shall smite you in the name of my King!” The insane zealot roared out in an enraged challenge.
With a roar the Redeemer pushed with much greater strength, forcing Jack to change his slow backpedalling into a full on sprint as he scrambled to stay on his feet, fighting to keep his grip above that of the Redeemer’s to maintain his control of the grapple for as long as he could as he was gradually being put off-balance, almost being lifted upwards.
‘I’ve got to hold on until the last possible moment…’ Jack thought to himself, as tables, chairs and people alike were battered to the side.
‘Now!’
As the wooden pillar supporting the balcony passed them in a blur, Jack shifted his weight to the left and relinquished the grapple, using the Redeemer’s momentum against him as he shoved the Redeemer off balance, as they smashed into the crumbling brick wall head first with an almighty crash.
As they stumbled back, yanking their head back out through the newly formed hole, Jack growled as grabbed the Redeemer around the top of one of his legs, yelling with effort as he was only just able to lift the Redeemer up and over him, slamming the Ogar down on the top of his head as hard as he could in a vicious suplex that gave a satisfying crack.
Growling with effort, the Redeemer pushed himself back into a crouch and looked up just in time as Jack’s foot smacked into the side of his head in a savage kick that cracked his metal helmet and dislodged one of his fangs. Roaring in rage and pain, the Redeemer got to his feet only to meet a flying knee that shattered his nose as his helmet cracked and dented with the heavy impacts.
“Redeem that you ugly cunt!” Jack growled, moving in for another strike as the Redeemer shoved him away, showing no signs of faltering as he slowly got to his feet, even after the devastating blows he just took. The Redeemer simply gave Jack a wicked grin of satisfaction, before it fell slightly upon seeing something to Jack’s side.
As Jack’s Ring of the Berserker vibrated again, he spun around to spot a large, lanky Vivren with several piercings in overt heavy armour grinning at him with malicious intent as she pointed a wand at him and cast a word of power.
Before he had any time to react, Jack’s entire body erupted in a wave of agony unlike anything he had ever felt before…
*****
“Fuck! Alora! Sephy? Chiyo? Dante?” Nika coughed as she got up from where the balcony had collapsed from under them.
Looking around, she could see even more patrons fighting around them, revelling in the chaos of the brawl, but she couldn’t spot any of her friends in the immediate aftermath, as thick dust plumed out from the wreckage below her.
‘At least the crew of the ship we’re meant to be travelling on are probably out by now.’ The Kizun thought to herself. ‘Can’t go back, the CorvMart crew will have moved on by now, so sticking to the original plan is probably the best move, unless we can steal a vehicle one of us knows how to pilot.’
Assessing the situation before her, Nika went for her bo staff, though made sure that her shotgun was well within easy reach. Though many of the people fighting around her looked rough, they weren’t attacking her or her friends, and until that changed they could make good allies of convenience, or for a smokescreen to give their enemies the slip if they had to run.
Though slaying as many of their attackers as they could would be preferable.
‘Best way to do that is link up with the others, we’re better as a unit.’ She reasoned, hearing an almighty crash. ‘Well, that’s probably Jack.’
Dodging a thrown bottle as a Squarri ganger missed their intended target - a pissed-off looking quadrupedal furry species that Nika didn’t recognise - before dodging a swing of a bat from a Xarak that saw her as an easy target. Quickly raising her staff she parried the backswing before cracking the other end of the staff across the reptilian’s face, knocking the rough-looking thug out as he collapsed to the ground.
Yet before Nika could think to move on from the conflict, she had to dodge out of the way using her tail as a large Balnath with some kind of cleaver-like sword took a swing at her. Recognising the sigil of the Regulator group Chiyo had told them to watch out for - a stern-looking demonic rune surrounded by a neon-red triangle - Nika parried the next sword swipe from the figure.
“Let me guesth, you want to get to the Outthider?” The Balnath sneered at the Kizun with a lisp so thick that in any other situation she’d have to stop herself from laughing. “I’m stho thorry, but we can’t let you have sthilly ideas like that!”
“Are you for fucking real?” Nika asked as she dodged to the side and put some space between them before quickly switching to her shotgun, letting loose a powerful blast that the Balnath was able to raise his shield up to block.
‘Skill like that? Probably the leader or an officer of some kind.’ The Kizun noted to herself. ‘No choice. I’ve got to kill him.’
“Yeah, I know that you’re finking! You fink my teef make me sound sthupid?” The Balnath growled, with a few experimental chomps. “Well these teef like to gnaw and gnasth on Kizun flesth!”
“Come and try it!” Nika snarled as she twirled her staff around her in a well-practised flourish, eagerly accepting the challenge.
The Balnath charged forward with lightning speed as it came at Nika with a series of feints, before swiping at her with a brutal overhand chop, using both hands. The Kizun was able to deftly parry with her staff, the kinetic modules battering her opponent’s grip to the side, though she felt the strength behind the blow and knew that the Balnath was stronger.
Still, she knew she could take him.
Ever since she was little she had roughhoused with her brothers and the local boys in fights around their ranch, and had learned the hard way from an early age that her gender and short build worked against her when facing her peers, so she had trained to be the strongest she could be, and learned to be quick and tactical to make the best use of that.
She had eventually kept up with the neighbourhood boys, using holds and precise strikes until her elders found out what she was doing when she was meant to be working on the ranch to help the family scrape by, and quickly put a stop to the shenanigans.
When she moved to the city, she only got better from there.
The tip of her staff thundered against the Balnath’s shield like the striking of a gong, forcing the larger being back as Nika could tell he was already tiring. Though she wanted to finish this fight quickly and get to her friends, she knew she couldn’t allow herself to give her opponent an opening, even as she sought to exploit an opening of her own. She had to be patient.
Her staff rattled against the shield again and again, as she felt her opponent’s defence get weaker and weaker, with the powerful force of her kinetic module focusing the strength of her strikes into a single point. Eventually something would break, his shield of his arm. Once his defences were finally down, she would go in swiftly for the kill.
Her opponent’s frustration won out as his shield shattered and fell to the floor, forcing him to attack Nika with a vicious two handed swipe. She blocked the strike handily, before the Balnath grabbed her staff, locking them in a clinch.
“Giff me sthome help over ‘ere!” The Balnath called out, as Nika reached for a knife, forcing the Balnath to adjust his stance as she stabbed blindly, glancing off armoured plates before finding purchase somewhere, causing her attacker to grunt with pain as he shoved her back, holding her up against a wall.
‘Shit.’ She cursed in her mind. ‘He’s stronger than me, but all I need is a moment to take him by surprise and I can break away and kill him!’
She held strong with her arms, holding the Balnath back as his jaws snapped shut barely an inch away from her neck. He tried again, and she pushed back harder, the jaws snapping shut around nothing, but much closer this time.
He tried again, bringing his vicious maw even closer still…
‘Gotcha!’ Nika thought to herself, as she jerked her head forward in a headbutt, catching the Balnath by surprise and giving the Kizun the space she needed to bring her knees up to her chin, before kicking out as hard as she could into the face of the Balnath, knocking him back with a roar of pain, before he leapt forward with a side swipe that Nika used her tail to quickly dodge, before in the same motion she brought the tip of her staff round and smacked the Balnath as hard as she could, right in the face, the powerful strike shattering its lower jaw completely.
“My fathce!” the attacker got out, clutching what little remained of his lower jaw, before looking up in the next moment as they stared down the barrel of Nika’s shotgun.
“Plea-” They got out, before their head was obliterated in an explosion of dark, blackish blood as their body clattered uselessly to the ground.
“Fuck you.” The Kizun retorted. Using her tail to quickly clip the sword to the magnets of her armour, Nika could see more Regulators in the crowd heading towards the DJ booth. Quickly checking her weapons, she headed right into the brawl!
*****
“You don’t belong here, girlie!” the thug cackled as their cybernetic arm crackled with electric discharge.
“Replacto!” Alora snarled as she swiped her wand out, blasting her attacker with a sudden flash of light that sent him stumbling back, clutching at his eyes.
“Anyone else?” Alora asked, trying her best to channel Nika’s cool, calm demeanour, crossed with Jack’s intimidating presence as the cluster of gangers and mercenaries all looked around at each other for just a moment, before deciding that the Eladrie wasn’t actually that intimidating, as one tried to rush her with a broken chair.
‘Oh by the Mother Tree! How do those two do it?’ Alora cursed in her mind as she summoned her spiritual weapon - a spear of light - that she quickly stabbed at the fish-like Osi, gutting them in the stomach which quickly made them drop the chair, while Alora wisely moved to the side to get out of the vicious melee happening all around her. Where were the others?
‘I have to make sure they’re all right.’ the Eladrie determinedly told herself as she began casting another, more complicated spell…
“Attention all idiots!” The voice over the speakers sneered out over the ever-changing music that the DJ didn’t seem to have any control over. “We discussed this. Though the Outsider is a priority, you target the spellcasters first if you can! Must I do everything myself?”
Thrumming with sudden power, the turrets above them finally opened fire, shooting almost indiscriminately at the crowd below, cutting several of the brawling patrons down before they even knew what hit them.
Chanting and waving her hands around as quickly as she dared, Alora maintained her concentration of her spell, completing it just in time as the turrets finally tracked her as she summoned a great holy aura of light to cover herself that would give her the protection she needed, the Armour of Faith deflecting the lights of the laser turrets harmlessly aside.
A loud bark sounded out, and knowing Dante’s warning for what it was, Alora spun around to see two Regulators, who were both Vulstas fighting through the brawl to get to her. Unlike Rena, these two were males, both carrying plasma shotguns but unable to get effective shots off through the crowd. Not that something like that stopped them from trying…
“Stevarin!” she yelled out, pointing her wand at one of the two who was about to open fire on a downed ganger, as with a flash of yellow light their movements slowed, quickly freezing stiff as a board as they failed to resist the Holding spell, their eyes widening in sheer terror as the gang-mates of their would-be-victim set upon them in a fury with fists and clubs, before a spell cast from the rafters sent all of them clattering to the ground clutching at their minds.
‘One of the enemy mages providing overwatch.’ Alora noted as she quickly looked up for any sign of them, but not seeing them. ‘Under a veil of invisibility no doubt.’
Feeling the dull impact of a shotgun blast dissipate harmlessly against her magical armour, Alora spun round to the other Regulator, cursing her moment of hesitation as the Vulsta drew a long knife with which to get in close with.
Remembering her fight with Izadora all those weeks ago, Alora waved her arms around quickly to summon a bubble of light to engulf her, before quickly following it up with an explosive flash that thundered all around her like a flashbang grenade, while leaving her unharmed.
As the light dissipated, she deftly avoided the blind lunge from the temporarily blinded Regulator, before jamming her spear into his stomach, using her reach advantage to dodge the desperate swipes he sent her way.
“Garrash!” Alora spoke a quick cantrip, using her affinity with life magic to channel poison through the top of her spear. Her already-weakened attacker quickly slumped to the ground as the debilitating effects took hold, but before Alora could pull her spear back, she was hit by a spell that came from above, disrupting her magic and causing her magical spear and armour to disappear.
‘Damn! It’s that mage above me!’ Alora cursed to herself as she quickly ran underneath one of the balconies, as the turrets chased after her with gunfire. ‘You want to hide in the shadows like a coward? I’ve got something to fix that!’
Quickly making sure there weren’t any immediate threats around, Alora quickly rummaged through her pockets for a wand of white crystal she had prepared about a year ago that still had a few charges. Casting quickly, she levelled it towards the ceiling and prayed to all the gods that she was aiming it at where the enemy mage was hiding,
“Glitasha!”
A spray of shining, sparkling particles of light shot out of her wand, puffing out to cover a good half of the ceiling, and as they began to fall to the floor and latch on to the people below, Alora spotted a huddled form by one of the rafters.
‘Got you!’ She thought with satisfaction.
“Ilthax! Get out of there!” The voice over the speakers warned, presumably the name of her target, but it was too late…
“Solaris!” Alora yelled, throwing her palms out in a thrust as a great javelin of light shot out of her palms. The enemy mage had barely moved before it impaled their centre of mass, sending what must have been a fireball spell way off target which blasted apart a huge, gaping hole in the back wall.
The invisible form of the glitterdust-covered mage slowly began to materialise as the blue-furred, ape-like Regulator clutched at their chest in pain, with wide eyes of disbelief at the spear of hard light that had gone right through their torso. As their flight spell dissipated, their lifeless body fell three stories from the rafters to slam down on the ground floor below.
“Nice one Alora!” the Eladrie heard the voice call from behind her as Nika came up next to her, the Kizun bleeding from a cut on her face. “Where are the others?”
“I don’t know. But we need to find them now!” Alora frantically told them as she took in the sheer state of chaos around them. Many broken bodies lay amongst the carnage, and though the Eladrie knew some would likely be still alive at the end of the night, she knew that many would not.
“You don’t need to tell me twice!” Nika agreed with a grim expression.
*****
First/Previous
Looks like Jack, Nika and Alora are holding on for now! But how long can they keep it up?
Don't forget to check out The Galactic High Info Sheet! If you want to remind yourself of certain characters and factions. One new chapter a week can seem like a while! Don't forget! You all have the ability to leave comments and notes to the entries, which I encourage you to do!
I am now on Royal Road! I would appreciate your support in getting myself off the ground there with your lovely comments, reviews and likes!
If you're impatient for the next chapter, why not check out my previous series?
As always I love to see the comments on what you guys think!
Don't forget to join the discussion with us on Discord, and consider checking me out on Youtube if you haven't already! Until next week, it's goodbye for now!
submitted by Spartawolf to HFY [link] [comments]


2024.05.16 19:54 Tight_Philosophy8244 Am I wrong for apparently making my friend's girlfriend suicidal by asking for basic fairness?

The people involved (names are changed):
Jake – me
Tom – my flatmate
Kath – Tom’s girlfriend
Emily – Kath’s flatmate
TLDR (but context is very important for how the situation develops):
· Me and Emily get with each other at a party.
· It turns out Kath had forbidden Emily from getting with me. Since Emily went and did it anyway, Kath falls out with her.
· Kath ends her friendship with Emily. Me and Emily continue seeing each other.
· When I plan to go to see Emily at their apartment, Tom tells me that Kath is in a really dark place mentally, and the thought of me and Emily being there together while Kath’s there is triggering her anxiety, so he asks me not to go over.
· Me and Emily follow these instructions for months, all whilst Tom and Kath continue coming and going to either of our apartments as they please.
· Emily eventually gets in touch with Kath to try and understand exactly why me coming over is an issue, since Kath has no problem coming to my place. Kath has a meltdown due to this and it makes her suicidal.
· Tom falls out with me because I knew about the messages that caused his girlfriend to feel suicidal.
(Skip to 'Late April' if you want to go straight to the crux of this post, but I do think it's quite an entertaining read).
Background Context
Me and Tom (both mid-twenties) have lived together in our apartment since I moved to the city last year. I’ve known him for several years and would put him in my inner circle of closest friends, so living with him was all just good chill vibes as expected - or at least it was for the first six months.
I met Tom’s girlfriend of several months, Kath, for the first time pretty soon after moving in. Although she was kind of shy, I thought she seemed nice enough. I noticed that Kath would seem to lean on Tom a fair amount when it came to support for her mental health (she had been diagnosed with anxiety), which of course is normal as her boyfriend. On one occasion, she had a particularly bad anxious episode during a group hangout, with Tom consoling her about it afterwards. Following this, Tom seemed exhausted, saying to me “I’m not a professional, I’m not equipped to deal with all this mental health stuff. She needs help from someone who can adequately help her deal with these thoughts. When she blows things out of proportion and she stresses out to me about her anxiety, it just ends up making my own anxiety worse”. He also said that he had even offered to pay for therapy for Kath, but she didn’t want to accept it.
I just felt bad for Tom, especially since I had some understanding of what he was going through. I had previously had a girlfriend who had anxiety/depression/BPD and put all her mental health issues on me. That girlfriend was also very manipulative and would mention suicidal thoughts any time she started feeling like she was losing control over me (just to be clear, there was no indication that Kath was acting in a manipulative way towards Tom at that point). In my experience, when you end up in a situation where you’re essentially acting as someone’s full-time personal mental health counsellor, it hardly ever ends well.
At some point in January, I met Kath’s “bestie” flatmate, Emily. I remember thinking she was cute, seemed nice and easy to talk to. We all hung out as a group a few times that month and I thought there may have been a little bit of a vibe between me and Emily.
So as you do, I slid into Emily’s DMs and basically let her know I was interested. I messaged her a week or two before our party that her and Kath were coming to, but her response was lukewarm so I just thought she probably wasn’t interested.
For context, I had recently broken up with my girlfriend in January, who had just got back from travelling for the last 6 months. Things in that relationship weren’t great before she even went travelling, and during the months she was away I had come to terms with the fact that it was best to end it. I waited until she was back to say it in person, as I didn’t want to drop that on her while she was travelling and ruin that once in a lifetime experience. However, deep down I knew I had wanted talk to other girls and explore new connections for the last few months, but obviously I didn’t want talk to anyone until it was cleanly over. Me messaging Emily was only a few days after breaking up with her, which I guess isn’t great, but in my head I had been ready to move on for a while, I saw no point in putting an arbitrary time limit on myself. I made sure to explain this context when I messaged Emily so that she was aware of my recent circumstances.
The Party (End of January)
So me and Emily end up getting with each other at the party. Initially, when I brought up me messaging her, she said “I think you’re cute, but I think it’s best we just be friends for the next couple months, since you just recently got out of a relationship, and we can see what happens afterwards”. But as the night went on, I guess Emily changed her mind, because as we kept talking it got increasingly flirty and we ended up getting together. Perfect end to the night, right? Not exactly.
At one point when Emily goes to the bathroom, she comes back into my bedroom saying “Kath is furious at me”. I ask why, and she says that Kath had basically forbidden her from getting with me.
Back when I first messaged Emily, she had of course shown Kath the messages straight away. It turns out Kath for some reason had a really intense reaction to this and was like “I can’t believe he has the audacity to hit on my best friend right after breaking up with his girlfriend! It’s so disrespectful using you as a rebound, it’s disrespectful to his ex and it’s disrespectful to me for hitting on my best friend like this! He was the only one of Tom’s friends that I actually liked but he’s ruined that too now!”.
Apparently, Kath had been used as a rebound before and this was triggering for her, so she didn’t want her best friend to be used as a rebound. She said “you can’t get with him, Emily, that’s my boundary.” Emily was a bit taken aback by the intensity of this reaction and was just a bit like “umm okay…?”. She tried a few times before the party to understand a bit more about why Kath had such a problem with it but didn’t get much further explanation than that.
Now, I agree that Emily was in the wrong for saying to Kath that she wouldn’t get with me and then went and did it anyway, and Emily also acknowledges this. Emily should have said from the start she wasn’t okay with this weird “boundary” Kath had set. It was a bit cowardly. Although given how intensely Kath overreacts to things, I can understand why Emily initially just agreed to whatever she was saying to calm her down. I can also understand how when you’re at a party having fun, drinking and realise that you do actually have a good vibe with the person, in the moment you might change your mind and be like “actually fuck that, who the fuck is she to tell me who I can and can’t get with?”.
Kath saw this as Emily having no respect for their friendship, by choosing some guy she’d just met over her. From Emily’s perspective she was choosing herself, choosing not to follow these nonsensical rules that had been imposed on her, and she was just tired of Kath overreacting to everything and trying to control her.
In my opinion, being this controlling for no good reason is pretty disrespectful in itself. Given that Kath’s reason for telling Emily not to get with me was because she didn’t want her to be used as a rebound…well that’s Emily’s risk to take, isn’t it? I can see how from Emily’s perspective, she knew Kath might not be happy about it, but it’s also not some deep betrayal, since based on the reason Kath gave, the consequence would only be on Emily herself. Emily had the exact same knowledge about my recent relationship status as Kath did, so why did Kath think she can tell her what to do?
As we get to further into this post and the real reason why Kath set this “boundary” is revealed, you will see why I actually think any argument Kath has against Emily for getting with me at the party is automatically void, but we will learn these details as they come.
Start of February
After the events of the party, Kath didn’t want to talk to Emily the next day when she tried to initiate communication via message (Kath tends to avoid in-person confrontation). Fair enough, Emily gave her space. Me and Emily spend the next day together just talking and getting to know each other more, and it’s clear that we vibe together and both feel very comfortable with each other, which is pretty rare for both of us.
I don’t see Tom for the first few days after the party, as he had been staying at Kath’s. When I do, I’m a bit surprised that he didn’t think much of Kath’s reaction at the party. He says “yeah I probably should have warned you about this beforehand”. We both agree that Emily was in the wrong for going back on what she said, but also that Kath shouldn’t have tried to control her like that. He did say “sorry I know this put you in an awkward position”.
A few days after the party, Emily again tries to get in touch with Kath via message.
Emily’s message essentially apologised for her actions, saying she was in the wrong for going back on what she said, and that she should have said from the start that she wasn’t happy with this “boundary”. She also said that Kath shouldn’t have tried to dictate her life and tell her what to do, especially when it’s something that’s none of her business, and that she is going to continue seeing me, taking the risk of being a “rebound”.
Kath’s response essentially said the whole incident at the party was only a small part of why she exploded so intensely, this was just the last in a long line of things Emily had done in the past which she had not forgiven her for. This was just the last straw for Kath because “it hit so close to home, so close to the love of my life”. She wanted things to be civil between them until the end of their tenancy, but this was essentially the end of their friendship.
Okay good, Kath flipping out so badly now finally made a bit more sense to me. Obviously, I wanted to know what Emily had done that was so bad to cause this, as any indicators of bad character would inform whether I choose to keep talking to her.
Emily went through these, explaining that these were incidents from their past that they had discussed at the time, dealt with and moved on from. I have cut these out for the word limit as they don’t add much to this post, but it was the most minor, nonsensical things (I can explain in the comments if anyone wants details).
In any case, I wasn’t particularly interested in what mistakes Emily might have made months or years ago, I was more interested in what her character was like now and going forward.
Early/Mid February
So here’s where the main situation we’re in now starts. For context, Kath and Emily’s apartment is in the city center, close to where both mine and Tom’s offices are, so it would make sense to go over in the evening and go into work from theirs the next morning, as Tom has been doing once or twice a week for the last few months.
It's worth noting that ever since the party right up to the present moment, Emily and Kath have not been interacting at all, avoiding each other in their apartment, only messaging for things like bill payments.
The first time I planned to go stay round Emily’s place was early/mid-February. When I mention this to Tom, he tells me that Kath has been having a really bad time mentally since the party, and the thought of me and Emily being there together triggers her anxiety. He asks me not to go over to their apartment for the next couple of weeks or so while she’s in this particularly bad phase. I don’t really understand what me going over and seeing Emily has to do with Kath’s anxiety (and Tom says he doesn't really understand it either himself), but I say okay fine it’s not that big of deal, I won’t go over for the time being.
Now, a valid question for myself is why I decided to keep seeing Emily, despite knowing that Kath had fallen out with her and therefore knowing it could potentially cause fiction between me and Tom. I don’t think I did anything wrong for several reasons:
· I suppose there’s the general visceral reaction against being told what to do. Like mind your own business, it’s not my fault Kath decided to get involved in my business. Why should she get what she wants when she’s the one being unreasonable? Why should we deny ourselves the opportunity of getting to know someone we seem to vibe with just because Tom’s girlfriend doesn’t like it?
· Before I even knew there was any issue at all, it was already too late; I had already gotten with Emily, they had already fallen out, and Kath already thought I was a dickhead. So what good would it do now to not see each other? Kath already didn’t like me (and she had also previously told me that once she doesn’t like someone, there’s no going back, they’re finished in her mind).
· In the initial first few days after the party, both me and Tom were kind of expecting that Kath’s reaction would blow over in a few days after she had cooled down. How could I have predicted that her reaction would instead continue getting increasingly intense as the situation went on?
· Frankly, I was annoyed at Tom at this point. He knew how Kath had reacted to me messaging Emily, so why did he just bend over and enable his girlfriends’ controlling, unreasonable behavior without question? If it was my girlfriend acting like this generally, I’d be like “why are you getting involved in their business, just let them do what they want?”, and especially so if it was directly affecting one of my close friends.
· Fundamentally, there’s no inherent reason why there had to be any issue at all? Okay Kath has ended her friendship with Emily and might not like that we’re seeing each other, but there’s no need for there to be any continued drama. Obviously we won’t all be hanging out as a four having fun like I had initially hoped, but that doesn’t mean we can’t just exist as adults and be civil? The only reason this continues to be an issue in the first place is because Kath is making it an issue for everyone else involved.
· Finally, I actually like Emily – from the first few days it was clear it wasn’t just going to be a FWB situation. If it felt like more of a superficial FWB situation, then yeah I probably would have just thought it’s not worth the drama, even though I thought Kath was the one in the wrong.
Late February
Over the month of February, me and Emily keep hanging out and getting closer. Whilst I was keeping a very close eye on her for any sign of character flaws (it was still possible that Kath could be in the right, even though her side of it didn’t make much sense to me), the more I got to know her, the more it seemed my initial judgment of her was accurate. I saw how she acted with her other friends, they all seemed to really value and appreciate her. I saw her helping out her friend in need of a fairly large amount of money without a second thought, I saw her going to accompany her friend for a medical scan they had, and generally she was really nice and thoughtful with me. Not exactly the behavior of an inconsiderate person.
Sometime in late February, Emily messages me completely baffled. She couldn’t believe that Kath had invited over a girl from their social circle, Dianne. The reason why this is a bit scandalous is because Kath is always talking shit about Dianne behind her back. And it’s not just “she can be a bit annoying sometimes”, it’s an explicit sentiment of how much she dislikes her, how much of a bad person she is and how much she wants her removed from her life. And she does this frequently, I barely speak to Kath and even I’ve heard her rant about how much she doesn’t like Dianne. So, she’s constantly saying this kind of stuff behind her back, and here she is now inviting her round for tea acting all friendly. I just found that so two-faced and this inevitably shaped my perception of Kath being deceptive.
Not long after I heard about this, Kath was round our place over the weekend. Me, Tom and Kath were heading off to our friend’s housewarming party later that day, with me driving us. At one point when the three of us are all in the kitchen, Kath speaks to me properly for the first time since the party, basically to clear the air. She says she doesn’t want there to be any bad blood between us and that her problem wasn’t with me, it was with Emily. I just say that I was cool with her, I don’t want her to feel uncomfortable with me or when coming over to our apartment, and that the situation between her and Emily was between them and not my business.
I wasn’t entirely convinced with her “clearing the air”, given that I had seen she apparently has no issue with being two-faced, but at the time I thought it was best to stay cool with her for the sake of me and Tom’s friendship and also I didn’t particularly fancy spending the rest of the day and a long car ride with awkward vibes.
End of February
At the end of February, Tom asks me how things are going with Emily and basically advises caution with her. He says that from what he’s seen she’s basically not a good person and she’s generally inconsiderate. I tell him I find that surprising from what I’ve seen of Emily, but I know it’s possible she could have just been putting on a front for the last month. I openly accept this, saying “I want to hear what you have to say, obviously you’re my friend and I respect your opinion”.
Essentially, he doesn’t bring up anything that I hadn’t already been told.
When I question Tom on why Kath thought she was a mind reader and assuming what my intentions were with Emily at the very start of this whole thing, Tom reveals he had since found out that the real reason Kath had forbidden Emily from getting with me in the first place actually wasn’t really to do with me recently breaking up with my girlfriend/using Emily as a rebound (Tom said this was a minor part of the reason, more of an excuse to base it on). It was more that Kath already knew beforehand that she wanted to end her friendship with Emily and was essentially trying to prevent her still being part of her life (i.e. by getting close to her boyfriend’s friend/flatmate).
Now it all made sense why Kath tried to “ban” her from getting with me in the first place. I’m not sure if Tom thought telling me this would make me more sympathetic to Kath’s side of it, but if anything, this deceptive behavior was even more of a red flag to me. As far as everyone (except for Kath) was concerned, her and Emily were best friends. Kath had even said to Emily a couple of weeks before the party that “she was like a sister to her”.
Tom didn’t seem to have much issue with this, saying something along the lines of “yeah I know she shouldn’t have kept all this stuff bottled up, but she doesn’t like confrontation, it makes her really anxious”.
After learning this, I think any argument for Emily being in the wrong for disobeying Kath’s instructions at the party is automatically void: Imagine having the audacity to be like “yeah I know I tried to control you by framing it as me being a protective friend looking out for you, but actually it was really because I wanted to end my friendship with you anyway teehee 😊”. In my view that is just so manipulative. No wonder the reason given to Emily for not getting with me made no sense to her.
When I revealed this to Emily, she said that she had been suspecting that was the case anyway, but it still really hurt to hear it confirmed.
Form her perspective it was like: “So was Kath holding all these grudges all the times I was consoling her for whatever mental health issue she was having at any given time?” (I wonder if Tom was thinking what a bad person Emily was when it was him and Emily staying up till stupid o’clock trying to console Kath who was crying about job applications a few weeks before all this kicked off). There are many other examples of things she had done for Kath in both the recent and more distant past.
Kath also knew that Emily’s best friend had killed herself a few years prior, and after going through the loss of her best friend, Emily had always said she was super hesitant to call anyone her “best friend”. Kath knew about this and still let Emily believe they were best friends, whilst she clearly didn’t really mean it, which I think is quite cruel of her.
Despite what I had seen of Emily so far, I still took what Tom said into account, and continued to watch her carefully.
Mid March
Another couple of weeks pass and given that my last interaction with Kath was her clearing the air with me, I thought everything was now cool between us. I mention to Tom at the start of the week that I’m planning to stay at their apartment later that week and he says “okay cool”. However, later that same evening, he once again asks me not to go over to their apartment. Apparently when he told Kath that I was going over, she started having a panic attack at the thought of me going there.
At this point I’m really started to get frustrated at this situation and again I try to understand exactly what the problem is, because this entire time Kath and Tom have been coming and going to either apartment as they please, so Kath clearly doesn’t have a problem coming to my apartment while I’m there. Tom again says that he doesn’t fully understand it himself, and that Kath doesn’t want to feel this way either, but she’s in a really bad place at the moment and me being there with Emily is really triggering her anxiety.
This makes no sense to me or Emily, because we obviously wouldn’t do anything to make Kath uncomfortable, and from our perspective this is just enabling her dysfunctional way of dealing with this situation.
Even though I still don’t understand what the fuck me seeing Emily has got to do with Kath’s mental health, I’m obviously not going to barge my way into someone’s home when I’m not welcome. So once again, I do as I’m told and say I won’t go over. But I do tell Tom that this situation isn’t going to continue going on like this indefinitely, and to me it feels to me like I’m being walked all over, in the sense of “oh yeah no worries, you two carry on going to either apartment as you please, I’ll just sit here like a dickhead and follow my instructions, don’t worry about it 😊”. He does say sorry and that he knows it’s inconvenient for us, but it's an even bigger inconvenience for Kath.
It’s worth bearing in mind that at this point, I could have responded to this situation by saying that if I’m not welcome at her apartment, Kath is not welcome here (or equally Emily could say to Kath “you can’t bring Tom round”). Whilst yes, it’s a bit petty, I think this would be a completely justified response to prevent a situation where we are being walked all over. Because what would be the alternative? They just carry on doing as they please indefinitely whilst Emily is told she isn’t allowed to have equal use of her own apartment? Now obviously telling your friend that his girlfriend isn’t allowed to come over is really a last resort and would definitely put a big dent in our friendship, and generally I have no desire to control what anyone else does, so of course I didn’t respond in this way.
Despite my frustration at this entire situation, I do feel bad for Tom because I can see how uncomfortable he seems during these conversations with me, he obviously doesn’t want to give me these unreasonable instructions. I can only assume he’s just trying to do whatever he can to keep his girlfriend afloat and prevent her next meltdown. I’ve been there myself dealing with a girlfriend with mental health issues, so I don’t want to actively make things worse for my friend either. However, I’m also worried that it’s likely to get worse for him the more he feeds into it and gets sucked into it.
At this point, the cynical side of me couldn’t help but wonder if Kath was being a bit manipulative and leaning into all the mental health stuff to maintain control of the situation.
· She seemingly is unable to give a reason for exactly why me and Emily being in her apartment makes her so uncomfortable. To me, this was completely indistinguishable from her just hating the fact that we’re together.
· All this reminds me of exactly the same kind of manipulative behavior I saw with that ex-girlfriend.
· She’s shown she has no problem with being intentionally deceptive – maybe if the entire basis of this situation hadn’t started off with Kath being manipulative she would have a bit more credibility in my eyes.
I know this kind of behavior is often not even intentional, and that it can be subconscious where the person doesn’t even realise they’re being manipulative.
(Still Mid March)
Now we get to the part that pisses me off the most in this whole situation. Only a few days after that conversation with Tom, for some reason Kath comes to stay in our apartment for the weekend while Tom was away at a house party. As in, it’s just me and Kath in my apartment.
Personally, I couldn’t imagine having the nerve to say to someone they aren’t welcome in my home because their presence triggers me, and then only a mere few days later actively choosing to go stay the weekend at their place while it’s just us two in the apartment. Like either my presence triggers you or it doesn’t?
Now to be fair, Tom had asked me a week or two beforehand if Kath could come to our apartment to hang out with someone from our friend group while he was away, and I said that was cool. Anyway, those plans fell through, but Kath still came over by herself.
But the main thing that pissed me off about this is that Tom, after knowing that I was already feeling like I was being taken for a mug in this situation, apparently didn’t even think it was worth bothering to check with me if it was still cool with me that Kath came round, given our conversation a few days prior.
If he’d at least checked in like, “I know it’s a bit weird that she’s coming to stay round by herself after having just said that your presence triggers her anxiety”, I still would’ve said okay, because I have no desire to control what anyone does. But it was just the fact he didn’t seem to care, saying “btw Kath is gonna stay here tonight” moments before leaving to his party.
To me it felt like he had spent the last month or so basically giving me instructions to make sure everyone caters to his girlfriend’s feelings, and yet didn’t give the slightest consideration to how this would make me feel. Part of me was thinking does he even see me as a friend or just as an inconvenience to his relationship at this point?
I spoke to Tom in the week following this, expressing how I had felt about Kath staying round. He did apologise and acknowledged he could’ve checked in with me, but he didn’t really seem to understand why her coming over like that was such a kick in the teeth for me. He said Kath doesn’t have a problem with me, it’s only a very specific situation that triggers her (i.e. me and Emily being in her apartment together).
Again I try to understand exactly why it’s a problem. Ever since the party, Emily’s presence in their apartment has consisted of her quietly staying in her room, quickly cooking her food and going straight back to her room. She doesn’t spend 2 hours in the kitchen making food like Kath and Tom sometimes do when he’s there.
Tom again says he doesn’t fully understand it himself. From what he understands, it’s triggering because her home is her safe space and if we’re both there it’s like there’s two hostile presences in that safe space. He reiterated that she is in a very dark place at the moment, and that she’s been having frequent panic attacks and suicidal thoughts.
Tom then says that Kath would be prepared to leave the apartment if me and Emily wanted to meet there, and Kath would basically get out of the way and come to me and Tom’s apartment instead. This did give me a bit more confidence that Kath wasn’t just purposefully making things difficult.
If Kath genuinely meant this, then of course that’s really appreciated, but I’m obviously not going to make her leave her own home and come all the way to ours to then have a 2 hour commute to her work. It’s so over the top and needless. I think that this clearly isn’t a functional solution going forward. What if one day when we want to meet up, Kath has had a long day at work and doesn’t feel like leaving her apartment (obviously, fair enough!), what if she’s got plans with friends in her apartment that evening? In any case, it’s still a situation where rules are being imposed on us, I can never just spontaneously decide to go see Emily one day after work or something. We still can’t come and go freely in the same way they have been doing for the past two months. It would be much better to understand why exactly it’s such a problem and see how we’re going to find a long-term solution, instead of Kath just running away from it.
The cynical side of me was wondering if Kath was just saying this knowing that neither me or Emily are realistically going to make her leave her own home, and if we do agree to it, then she can say “oh look how inconsiderate they are, making me leave my own home just so that they can be in the apartment”, ensuring that she keeps Tom firmly on her side.
Logically, I would’ve thought as time goes on, Kath would eventually get used to the situation and just accept it. Conversely, is it not quite understandable that the longer we have rules imposed on us, the more frustrated we become?
Once again say that I won’t go over and tell him that I won’t press this issue for the time being.
Late April
So now we get to the latest development in the situation, which is the crux of this post.
For the next month or so after that conversation with Tom, me and Emily have just been following our instructions and not pressed anything, whilst they continue coming and going as they please. One weekend we’re talking about the whole ‘Kath situation’ and we say “okay we’ve left it for a while now, it’s probably time to see how we’re going to move forward with this”.
In that next week, Emily sends Kath the following message:
“Hey, I appreciate this message might be uncomfortable but we need to discuss the fact that Jake can’t come here while you’re at home because I know that him and Tom have spoken about this but we’ve never addressed it with each other and I think it’s unfair that they’ve been largely absorbing this conflict this whole time. Can you please tell me what the exact problem would be and how we could make it work? At the end of the day we both pay equal rent here and I should be allowed to bring someone over, especially considering that Tom comes here whenever you want. We’re nothing more than just 2 housemates now and if you were living with a stranger from Spareroom such restrictions couldn’t have existed. I think I’ve let it slide and should have addressed it earlier, but it’s time we come up with a fair solution and I’d like to know if there’s anything reasonable we can do. I don’t want to go into other conversations about our fallout cause that’s done and dusted now, I want to strictly address this issue. Would you like some notice before he comes? I can’t always guarantee how far in advance I can let you know but I will do my best to give you enough time.”
Kath’s response:
“hey, I do not really appreciate this conversation being brought up 2 days before my birthday and I wish we can settle it today and not drag it on. And I do not appreciate you using Tom as a weapon to guilt trip me either. Please let me know if he is coming over tonight so that I can go somewhere else. As u probably already know I am in a really bad place at the moment and being in the apartment with both of you makes me feel very uncomfortable and unsafe. I’m already struggling to be there and I have been discussing with the agency about terminating the contract early, the terms have only been made clear to me today so I was going to message you about it. By paying a fee of £660 (£330 each) we can terminate the contract 12th of June and I wish u will consider this. I will be gone from the apartment for 2 weeks. I would really appreciate it if you do not bring him over in the next few days as I said it will be my birthday and I will be gone for 2 weeks after if you decide to do so after this, please let me know at least 2 days in advance so that I can leave (pack clothes and everything), but do not take advantage of this as it is extremely difficult for me to commute to work – it takes me 2 hours on the bus”
Emily’s response to this:
“I don’t appreciate you using your birthday as a “weapon” to paint me as an inconsiderate person once again as you’re saying you were going to message me anyway about terminating the contract. You always have Tom round without any notice, without ever considering if it was ever uncomfortable for me given what’s happened - but now you expect me to organise our schedule around you? We can’t ever do something spontaneous or simply make plans the day before? Jake won’t be coming tonight or in the next few days until you’re away. I was hoping we could talk about why exactly this makes you uncomfortable and unsafe as it’s quite clear we wouldn’t interact with you or do anything to purposely upset/annoy you. You also had no problem being in his apartment with him without Tom there, so clearly his presence must not be that big of a problem. I am going to get back to you about terminating the contract as I have to figure out where I would go, but I’d love nothing more than to leave this apartment as early as possible too.”
There was no response after Emily’s second message.
Tom comes back to our apartment the next day and ignores me all day until the evening when he asks “Did you know that Emily was going to send those messages?”.
I say “Yes, obviously?”. He responds with “Right, okay” and starts walking back towards his room.
I ask him what was wrong with the messages, and he comes back and says “what the fuck is Emily doing sending messages like that to my suicidal girlfriend?”. He essentially thought the tone of the messages, the proximity to Kath’s birthday and the fact that we’re once again bringing up this issue of me coming round was out of order. He also said that Emily’s 2nd message was implying that she was just going to bring me round without any notice anyway (looking at the message, no it wasn’t? It was just highlighting the unfairness of Kath expecting us to organise our schedule around her? None of the messages say that I’m going to come over, they are essentially just trying to understand exactly why it makes Kath uncomfortable).
We also did note that it was Kath’s birthday on the Friday (messages were sent on Tuesday). Maybe that wasn’t ideal, but we thought what real difference does it make? This is nothing new, it’s the same situation that’s been ongoing for the last 3 months anyway (and personally, I thought that up until the moment Kath says “okay sorry, I shouldn’t have imposed rules on you” then she shouldn’t expect that this won’t be brought up to her?).
I was a bit shocked at how angry he was and explained that we’re just trying to understand exactly what her issue is, because it still doesn’t make any sense to us. I bring up the general point about Kath imposing rules on people and expects everyone to cater to her feelings, whilst zero consideration has been given to how Emily has felt over the last 3 months, when not only does it make her uncomfortable as well that there are two “hostile presences” in her home, but especially given that those hostile presences have told her she’s not allowed to have equal use of her apartment she also pays rent for.
Tom responds with “but it’s not making Emily feel suicidal is it? Kath was having convulsions on the fucking bed last night after those messages. Why do you keep focusing on this tiny issue of coming to the apartment when my girlfriend is literally suicidal? She’s already said she’d make arrangements to leave the apartment for when you want to come over, and yet you keep pressing the issue and triggering her further”.
In that moment I was a bit taken aback and didn’t have much of a response. I kind of just sat and processed that for a few minutes, thinking “fuck, have I actually been in the wrong this whole time?”. Tom looked exhausted and stressed out, he must have been dealing with Kath’s meltdown the whole of the night before.
I say to Tom “tell Kath not to worry about me coming over while she’s there, I’m not going to, I’ll just leave it for good and won’t press this issue anymore”. Tom doesn’t give much of a response, but I think he says “I appreciate it”. He leaves for his two-week holiday shortly after.
I felt really bad that evening, thinking I had caused Tom to have to deal with whatever horrible meltdown because of me pressing this issue. Maybe I had been overly cynical of Kath, and she genuinely was just trying her best and not meaning to be manipulative.
When Tom got back from his holiday, he basically confirmed our friendship is over because I had known about those messages that caused his girlfriend to feel suicidal.
I’ve thought about the situation a lot since he left for his holiday:
· Looking back at the messages Emily sent, I think the tone is completely fine? Every single person I’ve shown the messages to has said they are actually quite kind and empathetic, and way nicer than they need to be given Kath’s behavior over the last 3 months.
· Tom’s reaction was essentially “how dare Emily have the audacity to ask for a reason why she hasn’t been allowed to have equal use of her own apartment for the last 3 months!”
· It’s true that Tom had mentioned that Kath had been having some suicidal thoughts a month prior, but I didn’t know that this would directly impact that, especially since I thought the message was quite nice and sensitive. Just the weekend before this Tom and Kath were out clubbing, having fun and they were going on holiday later that week. So obviously I didn’t realise she was still feeling so bad. How could anyone expect that simply asking the question of “why does this make you so uncomfortable” would result in this reaction.
· As soon as I did realise how intensely Kath had reacted, and what Tom had had to deal with as a result, I backed off straight away, saying that she doesn’t have to worry, I’m not going to press it anymore.
· Realistically, if this is how Kath reacts to being asked for basic fairness, then I think really she needs to be in a mental health crisis center or hospital, not just carrying on with everyday life as if everything is fine, and certainly not in a situation where she’s imposing rules on people.
· At the end of the day, Kath’s mental health is not my responsibility, nor is it Tom’s responsibility. I think it’s unfair of Kath to have made it his problem to such a large degree.
Logically, I don’t think I’m in the wrong, and yet Tom’s reaction to this makes me feel like I’m going crazy. That’s why I wrote out everything’s that’s happened from start to finish to “audit” myself and evaluate each of my actions throughout the entire situation.
I’ve looked back and don’t think I’m in the wrong for anything I’ve done. The only explanation I can think of is that Tom has been so deep in all of Kath’s mental health stuff 24/7 that he’s just not thinking clearly about this situation.
submitted by Tight_Philosophy8244 to amiwrong [link] [comments]


2024.05.16 18:37 usersnitcher Tag heuer replica Formula 1

Hi guys, i need some really cheap replica of tag heuer, silver body, and black clock face. Do you have any idea, where i can buy one please for like 50 $ or something like that? Shipping to Europe :) Thanks a lot
submitted by usersnitcher to RepWatch [link] [comments]


2024.05.16 18:36 usersnitcher Rep Tag heuer formula 1 calibre 16

Hi guys, i need some really cheap replica of tag heuer, silver body, and black clock face. Do you have any idea, where i can buy one please for like 50 $ or something like that? Shipping to Europe :) Thanks a lot
submitted by usersnitcher to RepTime [link] [comments]


2024.05.16 17:42 Idontknowwhoiam982 I might have the opportunity to go back to school

And I’m stuck choosing between getting my masters in an adjacent field which might just make me absolutely miserable OR go for a different degree altogether.
And honestly? I’m ready to be free of the suffocating feeling that my own body isn’t my own.
That I have to be constantly vigilant and make sure if I’m enjoying a drink at a restaurant that there are no children around, that there are no parents around, that admin isn’t around.
That I have to watch every word that comes out of my mouth in public because apparently a potty mouth in my free adult time means I can’t do my job properly.
That I can’t get any tattoos without it somehow making me incapable of doing my job.
That I constantly have to be chipper and handle poor or even violent behavior with safety gloves and a smile on my face.
That I can be assaulted by a student twice my size while I’m 9 months pregnant and still not be allowed to leave.
That I can’t quit a toxic and potentially dangerous job until summer for fear that I’ll lose my license.
That I am expected to do extra without being paid, expected to sacrifice my time with my family to take care of job responsibilities that I’m not allowed to handle ON the clock.
I’ve applied to college with a determination that I never had the first time around. I am SO ready to throw myself into my classes and study my ass off. I’m going for a completely different field since education has completely obliterated my passion for my original study. It’s going to be difficult because it’s in the medical field but I can’t keep living like this. Like I don’t even own my own body or my own life in my free time. Like I’m stuck in something with no way out, waiting a full year into each new job district to be able to leave.
submitted by Idontknowwhoiam982 to TeachersInTransition [link] [comments]


http://activeproperty.pl/