Logo


About EngineerIsaac

Systems builder, community lead, and tech explorer. Known for Waterwolf. I care about clarity, function, and impact—whether I’m wiring sensors, producing virtual events, or shipping tools.


Public posts are fully visible. Posts marked “Members only” require login to read.
Avatar
Remove Copilot from Windows 10
By Engineerisaac · 2025-11-20 11:10:20 Public
Due to popular demand here is the Windows 10 version


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@echo off
:: Enable ANSI colors
for /F "delims=" %%A in ('echo prompt $E^| cmd') do set "ESC=%%A"

cls
echo %ESC%[95m============================================================%ESC%[0m
echo %ESC%[96m        WINDOWS 10 COPILOT REMOVAL TOOL                     %ESC%[0m
echo %ESC%[95m============================================================%ESC%[0m
echo.
echo %ESC%[93mThis tool will disable, remove, and block Copilot everywhere it can exist.%ESC%[0m
echo %ESC%[93mYou'll see each step explained clearly as it happens.%ESC%[0m
echo.

:: Check admin rights
net session >nul 2>&1
if %errorlevel% neq 0 (
    echo %ESC%[91m[ERROR]%ESC%[0m Administrator privileges are required.
    echo Right-click this file and choose: %ESC%[93mRun as administrator%ESC%[0m
    pause
    exit /b
)

echo %ESC%[92m[OK]%ESC%[0m Running with administrator rights.
echo.

:: STEP 1 — Disable Copilot via Group Policy registry
echo %ESC%[94mSTEP 1: Turning off Copilot policies...%ESC%[0m
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t REG_DWORD /d 1 /f >nul
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t REG_DWORD /d 1 /f >nul
echo %ESC%[92m → Copilot policy disabled.%ESC%[0m
echo.

:: STEP 2 — Remove taskbar Copilot button
echo %ESC%[94mSTEP 2: Removing the Copilot taskbar button...%ESC%[0m
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f >nul
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCopilotButton" /t REG_DWORD /d 0 /f >nul
echo %ESC%[92m → Taskbar Copilot button disabled.%ESC%[0m
echo.

:: STEP 3 — Remove shell integration
echo %ESC%[94mSTEP 3: Removing Copilot shell hooks...%ESC%[0m
reg delete "HKCU\Software\Microsoft\Windows\Shell\Copilot" /f >nul 2>&1
reg delete "HKLM\Software\Microsoft\Windows\Shell\Copilot" /f >nul 2>&1
echo %ESC%[92m → Shell integration removed.%ESC%[0m
echo.

:: STEP 4 — Kill and restart Explorer
echo %ESC%[94mSTEP 4: Restarting Explorer to flush UI...%ESC%[0m
echo %ESC%[93m → Closing Explorer (screen may flicker)...%ESC%[0m
taskkill /f /im explorer.exe >nul
timeout /t 1 >nul
echo %ESC%[93m → Restarting Explorer...%ESC%[0m
start explorer.exe
echo %ESC%[92m → Explorer refreshed.%ESC%[0m
echo.

:: STEP 5 — Disable search suggestions (blocks Copilot entry)
echo %ESC%[94mSTEP 5: Blocking Copilot inside the search bar...%ESC%[0m
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v "DisableSearchBoxSuggestions" /t REG_DWORD /d 1 /f >nul
reg add "HKLM\Software\Policies\Microsoft\Windows\Explorer" /v "DisableSearchBoxSuggestions" /t REG_DWORD /d 1 /f >nul
echo %ESC%[92m → Web-driven Copilot suggestions disabled.%ESC%[0m
echo.

:: STEP 6 — Disable Copilot hotkeys
echo %ESC%[94mSTEP 6: Blocking Copilot keyboard shortcuts...%ESC%[0m
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "DisabledHotkeys" /t REG_SZ /d "C" /f >nul
echo %ESC%[92m → Copilot hotkeys disabled.%ESC%[0m
echo.

:: STEP 7 — Remove AppX packages (if any exist)
echo %ESC%[94mSTEP 7: Searching for Copilot AppX packages...%ESC%[0m
echo %ESC%[93m → If present, they will be removed.%ESC%[0m
for /f "tokens=1" %%A in ('powershell -NoProfile -Command "Get-AppxPackage *Microsoft.Windows_copilot* | Select -ExpandPackageFullName"') do (
    echo %ESC%[93m   Removing:%%A%ESC%[0m
    powershell -NoProfile -Command "Remove-AppxPackage '%%A'" >nul
)
echo %ESC%[92m → AppX cleanup complete.%ESC%[0m
echo.

:: STEP 8 — Remove Windows capability packages
echo %ESC%[94mSTEP 8: Checking Windows capabilities for Copilot...%ESC%[0m
powershell -NoProfile -Command "Get-WindowsCapability -Online | Where-Object { $_.Name -like '*Copilot*' } | Remove-WindowsCapability -Online" >nul
echo %ESC%[92m → Capability cleanup complete.%ESC%[0m
echo.

:: DONE
echo %ESC%[95m============================================================%ESC%[0m
echo %ESC%[92m           COPILOT HAS BEEN REMOVED AND DISABLED%ESC%[0m
echo %ESC%[95m============================================================%ESC%[0m
echo.
echo %ESC%[96mYou may reboot your computer for the absolute cleanest result.%ESC%[0m
echo.
pause
Avatar
The Truth about Placeholder Club.
By Engineerisaac · 2025-11-19 19:41:18 Members only (login to read)
This is some example content that is intentionally blurred out to tease that there is a full post here for logged-in members. More lines of pretend text to make it look like a real paragraph or two of content inside this card.
This post is for logged-in members only. Please log in to view the full content.
Avatar
Built on kindness
By Engineerisaac · 2025-11-19 14:05:32 Public
Even if we think we’re doing good, projects fueled by resentment or anger often carry that negativity forward. Let’s aim to build with positive intentions. And honestly, I have to remind myself of this too. Sometimes I get caught in a loop of defending myself, and I’m not always nice about it when I feel hurt. But I know that what we create with kindness lasts longer and serves everyone better. And I’ll gladly apologize to those who are willing to communicate with me. But if you stay blocked off and don’t give me a chance to talk, then it seems like that’s how you want it.

In the end, we’re all human and we’re all learning. So let’s choose to build bridges where we can. Thanks for listening, and let’s keep moving forward together
Avatar
Nothing of value was Lost.
By Engineerisaac · 2025-11-18 20:00:17 Members only (login to read)
This is some example content that is intentionally blurred out to tease that there is a full post here for logged-in members. More lines of pretend text to make it look like a real paragraph or two of content inside this card.
This post is for logged-in members only. Please log in to view the full content.
Avatar
Oh Snap a logged in post.
By Engineerisaac · 2025-11-17 21:16:52 Members only (login to read)
This is some example content that is intentionally blurred out to tease that there is a full post here for logged-in members. More lines of pretend text to make it look like a real paragraph or two of content inside this card.
This post is for logged-in members only. Please log in to view the full content.
Avatar
Remove Copilot from Windows 11
By Engineerisaac · 2025-11-17 17:55:05 Public
Remove copilot from windows with bat file.

create a text document on your desktop. Paste code into it. Save as RemoveCopilot.bat and then save file type as "All Files" not Text File.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@echo off
title Remove Windows Copilot - Full Disable
echo ==========================================================
echo   Removing Windows Copilot from Windows 11
echo   Disabling UI toggles, registry flags, policies, and
echo   removing any installed Copilot packages.
echo ==========================================================
echo.

:: --- REQUIRE ADMIN ---
whoami /groups | find "S-1-5-32-544" >NUL
if errorlevel 1 (
    echo This script MUST be run as Administrator.
    pause
    exit /b
)

echo Killing Copilot processes...
taskkill /im "Copilot.exe" /f >NUL 2>&1
taskkill /im "WebViewHost.exe" /f >NUL 2>&1
taskkill /im "webview2.exe" /f >NUL 2>&1

echo.
echo === Removing Taskbar Copilot entry ===
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCopilotButton /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowCopilotButton /t REG_DWORD /d 0 /f

echo.
echo === Disabling Windows Copilot Policies ===
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f

echo.
echo === Disabling Copilot from Taskbar Settings ===
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarCopilot /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarCopilot /t REG_DWORD /d 0 /f

echo.
echo === Removing any Copilot App packages ===
powershell -NoLogo -NoProfile -Command ^
    "Get-AppxPackage *copilot* -AllUsers | Remove-AppxPackage -AllUsers" >NUL 2>&1

powershell -NoLogo -NoProfile -Command ^
    "Get-AppxProvisionedPackage -Online | Where-Object { $_.PackageName -like '*copilot*' } | Remove-AppxProvisionedPackage -Online" >NUL 2>&1

echo.
echo === Removing Copilot WebView components ===
powershell -NoLogo -NoProfile -Command ^
    "Get-AppxPackage *webexperience* -AllUsers | Remove-AppxPackage -AllUsers" >NUL 2>&1

powershell -NoLogo -NoProfile -Command ^
    "Get-AppxProvisionedPackage -Online | Where-Object { $_.PackageName -like '*webexperience*' } | Remove-AppxProvisionedPackage -Online" >NUL 2>&1

echo.
echo === Blocking Copilot binaries from returning ===
takeown /f "C:\Windows\SystemApps\Microsoft.Windows.Copilot_*" /r /d y >NUL 2>&1
icacls "C:\Windows\SystemApps\Microsoft.Windows.Copilot_*" /inheritance:r /deny *S-1-1-0:(OI)(CI)(F) >NUL 2>&1

takeown /f "C:\Windows\SystemApps\Microsoft.Windows.AICopilot_*" /r /d y >NUL 2>&1
icacls "C:\Windows\SystemApps\Microsoft.Windows.AICopilot_*" /inheritance:r /deny *S-1-1-0:(OI)(CI)(F) >NUL 2>&1

echo.
echo === Removing Copilot scheduled tasks ===
schtasks /Delete /TN "Microsoft\Windows\Copilot" /F >NUL 2>&1
schtasks /Delete /TN "Microsoft\Windows\AICopilot" /F >NUL 2>&1

echo.
echo === Restarting Explorer ===
taskkill /f /im explorer.exe >NUL
start explorer.exe

echo.
echo ==========================================================
echo               COPILOT REMOVED / DISABLED
echo ==========================================================
pause
exit /b
Avatar
Remove Bing Search from Windows 11
By Engineerisaac · 2025-11-17 12:48:54 Public
I wrote a batch file that disables start search in one click. Have fun

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
echo Disabling Windows 11 Web Search...

echo Attempting Disable Search Suggestion System (Might need elevated permission)
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

echo Attempting Disable Policy System (Might need elevated permission)
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchPolicySuggestions /t REG_DWORD /d 1 /f

echo Turning off Bing Search Systems
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v BingSearchEnabled /t REG_DWORD /d 0 /f

echo Allowing Search Local
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v AllowSearchToUseLocation /t REG_DWORD /d 0 /f

:: For newer Windows 11 builds (SearchApp)
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v DisableWebSearch /t REG_DWORD /d 1 /f

echo.
echo Web search disabled.
pause
Avatar
Organic Traction
By Engineerisaac · 2025-10-30 08:51:49 Public
My last post got some traction. That was organic. A lot of people reached out afterward, some upset about what they’ve heard and how far certain people have gone to try to tear things down.

I didn’t want to say anything, but when you stay quiet, people start assuming you’re guilty of whatever they’re being told. So I’m saying this because people expect a statement, not because I enjoy addressing drama.

This isn’t me versus anyone. It’s not a rivalry. I don’t seek the distraction of other groups or spend my time trying to tear anyone down. I just take care of my friends. That’s all I’ve ever done.

What I’ve built is simple. A space where people can just exist. No meetings, no hierarchy, no expectations. Just a group of idiots doing fun things together. And somehow, that’s become threatening to people who thrive on control.

We go out and help other venues. We find bugs, we send screenshots, we give feedback, and instead of anyone caring about the actual issue, they fixate on the fact that a Waterwolf logo appears in the corner. That says everything about where their priorities are.

We don’t let entitled DJ kids get special treatment, and when they don’t get it, they act predatory and toxic toward the people around them. That’s not how we operate. We’ve built something that doesn’t revolve around status or ego, and that seems to bother those who rely on both.

We don’t lie, steal, or cheat to get where we are. We don’t tear apart other people’s assets for selfish gain. We work with the people who create. In fact, we hold thieves accountable and have a history of it.

I’ve seen people show up after events or world releases asking others to remove Waterwolf logos or take down posters of me. That’s not something I’d ever do to anyone, yet I’m constantly painted as if I would.

They mock my “be kind” motto and try so desperately to paint me as unkind. They see me as stubborn or unteachable, but the truth is I can’t and won’t take lessons from people who lead with cruelty. Kindness isn’t weakness. It’s a choice — and I won’t let bullies rewrite what it means.

And when that doesn’t stick, it turns personal. I get called uneducated, entitled, or privileged just for what I have. They resort to public harassment and mockery while claiming to hate toxicity. It’s the very behavior they say they stand against.

I try hard not to name names because it’s important not to tear others directly down. Those who are guilty usually reveal themselves through their own reactions when the truth hits close to home. I trust the public to see that for what it is.

We used to be a lot more open and free with people, but after years of getting stabbed, stolen from, and pushed down, it makes sense that we show our teeth now.

The truth is, my friends are tired of it. It weighs on them. But they stay because what we have is actually kind and genuine. A small space that doesn’t demand anything from anyone. You just show up and belong.

We watch TV together and share movie time with friends. And if that makes us bad, I don’t want to be good
Avatar
Toxic Social Media Cycles
By Engineerisaac · 2025-10-06 08:24:57 Public
The Toxic Cycle of Social Media Attacks: Why It Must End

It often starts with a perceived wrong—someone makes a mistake or says something controversial. Instead of reaching out or understanding, some individuals choose to publicly attack, believing they are doing the right thing by exposing the “bad” behavior. The attention they receive—likes, shares, and comments—fuels this behavior. It becomes less about accountability and more about gaining clout, relevance, and the feeling of being a hero.

The impact on victims is devastating. They often feel overwhelmed, isolated, and powerless as strangers pile on. Every attempt to defend themselves can escalate the attack, making it worse. It can lead to anxiety, depression, and tragically, in some cases, it can lead to suicide. The emotional toll is so severe that victims may see no way out. This is why it’s critical to remember that behind the screen is a real human being with emotions and a life that can be deeply affected.

This behavior is toxic for everyone. It creates a culture of fear—people become afraid to speak out or even make mistakes. It erodes trust in communities, as everyone watches their back, wondering if they’ll be next. Instead of creating a healthy space for discussion and growth, it turns social media into a battleground.

We need better alternatives. We must promote private conversations first, giving people a chance to explain or learn. We must fact-check, be patient, and above all, remember empathy. Treat others online as we’d want to be treated, even when we believe they’ve done something wrong. This is the only way to foster genuine accountability and growth, without destroying lives in the process
Avatar
Job Platforms Suck
By Engineerisaac · 2025-10-06 08:17:33 Public
Job platforms like Indeed have definitely shifted the hiring world in ways we’re all still figuring out. On one hand, they’ve opened doors for people who might not have had easy access to opportunities before. Employers can get their job listing in front of a ton of people, which can be a blessing when you’re trying to find that right fit.

But at the same time, it’s not always a smooth ride for employers. The sheer volume of candidates can mean wading through a lot of resumes that don’t quite fit the bill, and there’s a cost to that, both in time and money.

Another thing that’s really changed is how companies no longer have to be tied to the communities they once built. There was a time when a company would set up shop in a town, and that town was shaped by the jobs and the industry that company brought in. The company needed that local workforce, and in turn, they became a cornerstone of that place. You could see it with big plants in small towns, and that created a kind of loyalty and mutual dependency.

But the internet flipped that. Now companies can hire from anywhere, and just as easily employees can find jobs anywhere. Instead of needing to invest in the people around them, companies can just put out a listing online and hire from across the country, sometimes even the world. In a way, that’s efficient, but it also means that sense of local community can get lost.

Then came COVID, and that was another turning point. At first, remote work seemed like a win-win. Companies could keep things running, and workers could do their jobs from home. It felt like a big shift that gave people more flexibility, more time with their families, and even more job opportunities since they weren’t tied to an office.

But what a lot of people didn’t see coming was that if a job can be remote, it can be remote anywhere. Companies started realizing they could hire people from countries where wages are lower, and that cost-saving mindset meant a lot of American remote workers suddenly found their jobs weren’t as stable as they thought.

So what felt like a new era for the American worker quickly turned into a reality check. Remote work didn’t just mean you could live anywhere in the States and still do your job, it meant companies could go anywhere in the world for labor. That realization really changed the game, and it’s something we’re still grappling with as we figure out what remote work really means in the long run.

For me, I love the idea of remote work. It gives people freedom, flexibility, and the ability to craft a work-life balance that fits them. But at the end of the day, remote work can only go so far in a society where we all have to make a living. The reality is that companies will always be looking at the bottom line, and that can make the idea of remote work more complicated than we’d hope. It’s a great concept, but it’s tied up with the bigger question of how we value labor and where that labor comes from.
Avatar
Screenshot Culture
By Engineerisaac · 2025-09-25 21:34:58 Public
The Hidden Dangers of Screenshot Culture: Why Context Matters More Than Ever

In today’s online world, platforms like Discord and Twitter have made communication faster and more fluid than ever. But with that speed comes a new kind of risk: the rise of what we might call “screenshot culture.” More and more, we’re seeing private conversations turned into public spectacles, often without the full context that would let people understand what really happened.

This isn’t just a minor annoyance. It’s a real problem that can have serious consequences. When a snippet of a conversation is taken out of context and shared widely, it can end up damaging someone’s reputation almost overnight. And because people are naturally inclined to believe what they see, especially when it’s presented as a “smoking gun,” the damage is often done before the full story can come out.

We’ve seen this happen time and again. There are studies out there showing just how quickly misinformation or out-of-context content can spread on social media. And once it spreads, it’s incredibly hard to put the genie back in the bottle.

So what can we do about it? First, we can be more cautious about how we react to things we see online. We can remind ourselves that a single screenshot is rarely the whole story. And we can encourage a culture of asking questions and seeking context, rather than rushing to judgment.

In the end, it’s about fostering a more thoughtful and understanding online community. By being aware of these pitfalls, we can hopefully create a space where civil discourse is still possible, even in a world of instant sharing and viral content.
Avatar
Remote Work Died with Covid
By Engineerisaac · 2025-09-25 21:24:44 Public
Title: The Remote Work Trade-Off: How Globalization Changed the Job Market

In the rush to embrace remote work, we all enjoyed the newfound freedom of working from anywhere. But there’s a reality that’s become increasingly clear: as soon as companies realized they could hire talent from anywhere, they also realized they didn’t have to limit their hiring to high-cost regions. That means the same remote work flexibility that gave us more freedom also gave companies the freedom to look for talent in places where the cost of living—and thus the cost of labor—is much lower.

In other words, by pushing for remote work, we’ve also paved the way for a more globalized job market. A tech company in California can now hire someone in India or Thailand at a fraction of the cost, while still offering that worker a very competitive salary locally.

The bottom line is that the convenience of remote work came with a cost: more competition from around the world and a shift in who gets those high-paying roles. It’s a reminder that every workplace transformation can have ripple effects we don’t always see coming.
Avatar
The Shoe Fits
By Engineerisaac · 2025-09-25 21:19:29 Public
When the Shoe is on the Other Foot

I saw the recent message from Daltyn and I need to be clear about how I see it. The pain and frustration described there is the same treatment I experienced from him and his staff. It is the reason I reached out before and it is the reason I have to put this into words now.

I do not have sympathy for what is being framed as victim behavior. When you take a “we do not care about you” stance toward others, it is hard to expect compassion when the same weight comes back around. Leadership choices shape the tone of a community. If that tone is dismissive, it eventually creates the same environment that now feels unbearable.

What I extend in return is not pity but a polite acknowledgment that the shoe is now on the other foot. The experience that is being described is exactly what was handed out to me and my crew.

I carry no anger in saying this. It is simply the boundary I have to hold.
Avatar
Open a RothIRA Now!
By Engineerisaac · 2025-09-02 21:09:09 Public
Make sure to open a Roth IRA and contribute regularly, even if it’s just a small amount each paycheck. Over time, not only does it grow tax-free, but if you ever leave a job and have a small balance, you might get a payout you wouldn’t have had otherwise. It’s a simple way to ensure you’re not leaving any free money on the table in the long run.
Avatar
Denfur Portal
By Engineerisaac · 2025-09-02 12:16:47 Public
The DenFur Portal was one of our boldest experiments yet. We set out to create a way for people inside and outside of VRChat to connect during the convention. The idea was simple: build a bridge where attendees could chat live with our VR guests, wave across the gap, and feel like they were part of the same moment, no matter where they were.

What happened went beyond expectations. The Portal became a gathering point, both in the convention space and in VR. People used it to share jokes, start conversations, and send greetings across worlds. The chat wasn’t just functional, it was fun. It gave people who couldn’t be physically present a chance to still be involved, to experience the energy of DenFur in real time.

Technically, it was a challenge. We built systems to handle live chat, QR code access, and moderation, all while making sure everything stayed smooth for guests on both sides. There were long nights of testing and tweaking, but the result proved it was worth the effort. The Portal held strong throughout the event and showed what can happen when creativity and technical skill meet a clear goal.

Most of all, it reminded us of what Waterwolf is about. We’re here to build experiences that bring people together, even across distance. The DenFur Portal wasn’t just a one-off—it was proof that with the right vision, VR and real life can meet in ways that feel natural and exciting.

This is only the beginning. What we learned from the DenFur Portal will carry into future events and projects, giving us new ways to connect and share. And if the energy we saw during DenFur is any sign, people are ready for more.
Avatar
Reflection
By Engineerisaac · 2025-09-02 12:15:38 Public
Waterwolf has become more than just a community. Over time we have built worlds in VRChat that brought people together, hosted events that left lasting memories, and created tools and overlays that others now use in their own projects. What started as a handful of friends sharing ideas has grown into a network of creativity and support.

Our strength has always been in collaboration. Members have launched their own projects and brands while still carrying the Waterwolf identity with them. Each creation, from a stage design to a technical system running quietly in the background, reflects the trust and passion that hold this group together.

What makes Waterwolf special is not just the achievements themselves, but the way they were made: through shared effort, collective vision, and the belief that creativity is better when it is shared. Every event we have hosted, every tool we have released, every world we have opened up, these moments all add to the story of a community that thrives on collaboration.

Waterwolf is not finished. We continue to grow, to experiment, and to support each other. The achievements so far are only a glimpse of what is possible when creativity and community move forward together.
Avatar
Twitter Drama
By Engineerisaac · 2025-09-02 12:08:29 Public
Twitter has a way of turning small sparks into fires. When grievances are aired here, they often grow larger than intended. When people defend themselves, it can feel like pouring fuel on the flames. The platform rewards conflict, not resolution. Sometimes the healthiest approach is to step back, let things breathe, and handle important matters in quieter spaces.
Avatar
Bf2 Revive
By Engineerisaac · 2025-09-02 12:03:31 Public
I’d like to clear the air about the accusations surrounding BF2 and my involvement. Over time, a number of things have been said that do not reflect reality, and I think it’s important to set the record straight.

From the very beginning, there was never “extra money” in this project. Everything that came in went directly toward keeping the servers and services online. Running legacy software on modern infrastructure is not cheap, and every dollar was used for that purpose. There was never a slush fund, and there was never money being pocketed.

I want to be absolutely clear about this: I did not steal from the project. I never treated it as a personal source of income. My role was about maintaining and supporting something many of us valued, not about profit.

If you know me personally, you know this to be true. I have always made a solid living outside of projects like this, and that has afforded me the ability to cover costs when needed. I never had to rely on these kinds of efforts for income. Sometimes that reality can be hard for people without the same financial stability to understand, but it doesn’t change the truth: I had no reason or need to take from the project.

I understand that rumors and assumptions have created a different story in some people’s minds, but those narratives aren’t based on fact. The truth is much simpler: we ran things as efficiently as possible, we never had spare funds, and my intentions were always in good faith.

At this point, I am not interested in arguments or rehashing old conflicts. I only ask that conversations about this be fair, accurate, and grounded in what actually happened.
Avatar
Untitled
By Engineerisaac · 2025-09-02 11:37:34 Public
Welcome to My Feed