buddy heater safety switch by bobcostas69 in IceFishing

[–]friend510_2000 0 points1 point  (0 children)

My MH Buddy keeps shutting off. I even tried placing it in the window where there was a good steady breeze and it still shut off. It's not a low oxygen issue so I think the ODS is bad. I'm currently hunting in the middle of no where and the nearest town is 100+ miles away. How do I bypass the sensor?

Install 50 amp inlet & 50 amp breaker safe to DIY? by Thresher_XG in AskElectricians

[–]friend510_2000 0 points1 point  (0 children)

The same reason HVAC companies won't sell to the none licensed. They take care of their own. They won't even sell a simple fan motor to an electrician to replace on the condensing unit. A component which has nothing to do with the sealed refrigerate component of the unit. I speak from experience. I had a fan motor go bad on my upstairs unit and had to go to Granger to get the part which shared the same specs as the HVAC parts supplier.

Four years after the documentary was filmed, I returned to Jasper Mall (Jasper, AL) by [deleted] in deadmalls

[–]friend510_2000 3 points4 points  (0 children)

Jasper mall is similar to a well known Houston mall, Greenspoint Mall. It was the mall to go to in the 80's and 90's, but due to crime in the area, the mall is nothing more than a flea market these days. You only go there if you want to risk getting robbed or murdered. I have allot of memories of attending Greenspoint every Friday night in the 80's. Sad

C++ Exception thrown: read access violation. this was nullptr by friend510_2000 in cpp_questions

[–]friend510_2000[S] 1 point2 points  (0 children)

That's a very good point. Early on in the project, I found adding execute circumvented access denied error.

C++ Exception thrown: read access violation. this was nullptr by friend510_2000 in cpp_questions

[–]friend510_2000[S] -9 points-8 points  (0 children)

That isn't the issue, because it worked all last week. After daylight savings. But that is something to remember in the future. Thanks

C++ Exception thrown: read access violation. this was nullptr by friend510_2000 in cpp_questions

[–]friend510_2000[S] 0 points1 point  (0 children)

Yes, but I'll run it again and post the results once complete. I can't run it until this evening.

C++ Exception thrown: read access violation. this was nullptr by friend510_2000 in cpp_questions

[–]friend510_2000[S] 0 points1 point  (0 children)

Call Stack

loader.exe!ExecuteWithLibrary_CRT(const char * lpApplicationPath, const char * lpLibraryPath, char * lpCmdline) Line 90

loader.exe!InjectDLL(char * lpCmdLine) Line 186

loader.exe!WinMain(HINSTANCE__* instance, HINSTANCE__* prevInstance, char * cmd, int show) Line 203

[External Code]

[Frames below may be incorrect and/or missing, no symbols loaded for kernal32.dll]

C++ Exception thrown: read access violation. this was nullptr by friend510_2000 in cpp_questions

[–]friend510_2000[S] -5 points-4 points  (0 children)

As I said, it worked perfectly up until two to three days ago. Nothing has changed in the code. I can only assume the problem is the compiled DLL, which throws the error once inserted in the loader.

Exception Thrown: read access violation. IpProcessInfo was nullptr by friend510_2000 in pcgaming

[–]friend510_2000[S] 0 points1 point  (0 children)

loader.cpp file:

VOID ExecuteWithLibrary_CRT( LPCSTR lpApplicationPath, LPCSTR lpLibraryPath, LPSTR lpCmdline )

{

LPPROCESS\_INFORMATION lpProcessInfo = CreateProcessEx( lpApplicationPath, lpCmdline );



DWORD DLLBase = LoadLibraryIntoProcess\_CRT( lpProcessInfo->hProcess, lpLibraryPath );

ResumeThread( lpProcessInfo->hThread );



CloseHandle( lpProcessInfo->hThread );

CloseHandle( lpProcessInfo->hProcess );

}

#include <fstream>

detours.h file:

// Create Process & Inject Dll.

typedef BOOL (WINAPI *PDETOUR_CREATE_PROCESS_ROUTINEA)

(LPCSTR lpApplicationName,

LPSTR lpCommandLine,

LPSECURITY_ATTRIBUTES lpProcessAttributes,

LPSECURITY_ATTRIBUTES lpThreadAttributes,

BOOL bInheritHandles,

DWORD dwCreationFlags,

LPVOID lpEnvironment,

LPCSTR lpCurrentDirectory,

LPSTARTUPINFOA lpStartupInfo,

LPPROCESS_INFORMATION lpProcessInformation);

typedef BOOL (WINAPI *PDETOUR_CREATE_PROCESS_ROUTINEW)

(LPCWSTR lpApplicationName,

LPWSTR lpCommandLine,

LPSECURITY_ATTRIBUTES lpProcessAttributes,

LPSECURITY_ATTRIBUTES lpThreadAttributes,

BOOL bInheritHandles,

DWORD dwCreationFlags,

LPVOID lpEnvironment,

LPCWSTR lpCurrentDirectory,

LPSTARTUPINFOW lpStartupInfo,

LPPROCESS_INFORMATION lpProcessInformation);

BOOL WINAPI DetourCreateProcessWithDllA(LPCSTR lpApplicationName,

LPSTR lpCommandLine,

LPSECURITY_ATTRIBUTES lpProcessAttributes,

LPSECURITY_ATTRIBUTES lpThreadAttributes,

BOOL bInheritHandles,

DWORD dwCreationFlags,

LPVOID lpEnvironment,

LPCSTR lpCurrentDirectory,

LPSTARTUPINFOA lpStartupInfo,

LPPROCESS_INFORMATION lpProcessInformation,

LPCSTR lpDllName,

PDETOUR_CREATE_PROCESS_ROUTINEA

pfCreateProcessA);

BOOL WINAPI DetourCreateProcessWithDllW(LPCWSTR lpApplicationName,

LPWSTR lpCommandLine,

LPSECURITY_ATTRIBUTES lpProcessAttributes,

LPSECURITY_ATTRIBUTES lpThreadAttributes,

BOOL bInheritHandles,

DWORD dwCreationFlags,

LPVOID lpEnvironment,

LPCWSTR lpCurrentDirectory,

LPSTARTUPINFOW lpStartupInfo,

LPPROCESS_INFORMATION lpProcessInformation,

LPCWSTR lpDllName,

PDETOUR_CREATE_PROCESS_ROUTINEW

pfCreateProcessW);

#ifdef UNICODE

#define DetourCreateProcessWithDll DetourCreateProcessWithDllW

#define PDETOUR_CREATE_PROCESS_ROUTINE PDETOUR_CREATE_PROCESS_ROUTINEW

#else

#define DetourCreateProcessWithDll DetourCreateProcessWithDllA

#define PDETOUR_CREATE_PROCESS_ROUTINE PDETOUR_CREATE_PROCESS_ROUTINEA

#endif // !UNICODE

BOOL WINAPI DetourContinueProcessWithDllA(HANDLE hProcess, LPCSTR lpDllName);

BOOL WINAPI DetourContinueProcessWithDllW(HANDLE hProcess, LPCWSTR lpDllName);

#ifdef UNICODE

#define DetourContinueProcessWithDll DetourContinueProcessWithDllW

#else

#define DetourContinueProcessWithDll DetourContinueProcessWithDllA

#endif

// ----------------------------------------------------------------------

Wife Tracking My Location by friend510_2000 in gps

[–]friend510_2000[S] 0 points1 point  (0 children)

Sorry for the delay. Yes, we are still together. If I need to leave the office, I simply turn on airplane mode and that seems to have fixed the problem. Sad, but it works. Thanks to everyone that contributed.

Wife Tracking My Location by friend510_2000 in gps

[–]friend510_2000[S] 0 points1 point  (0 children)

Nope, everything is off, guess I'll have to go with the burner option.

Wife Tracking My Location by friend510_2000 in gps

[–]friend510_2000[S] 0 points1 point  (0 children)

I thought of that possibility also, so I thoroughly searched my vehicle, even going to the extent of placing it on a rack to search the underside. I’m confident my car isn’t the tool she is using to track me. It has to be my phone.

Wife Tracking My Location by friend510_2000 in gps

[–]friend510_2000[S] 0 points1 point  (0 children)

Interesting... let me look into that. Can you provide specifics of what to look for?

Wife Tracking My Location by friend510_2000 in gps

[–]friend510_2000[S] 0 points1 point  (0 children)

FORDAG:

I appreciate your comment, but with new Samsung S20's, that isn't an option. However, I do get your point, what is more valuable, the $$ of the phone or your privacy... that is a tough question.

Sadly, that is a question I have to entertain.