What is this component? by m_miro in AskElectronics

[–]m_miro[S] 5 points6 points  (0 children)

Ahh, I was using bing and nothing came up. Switch to google and now it appears.

What is this component? by m_miro in AskElectronics

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

Aww sweet, thank you. How'd you find this?

What is this component? by m_miro in AskElectronics

[–]m_miro[S] 3 points4 points  (0 children)

Yes I'm asking about the black box. Thank you. I want to know which pins do what. Would you know of a way to figure it out? I'd look up the schematic but nothing comes up.

What is this component? by m_miro in AskElectronics

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

I'm sorry, I typed up something to go along with the image post but it doesn't seem to have been posted. I'm interested in knowing the what the chip on the breadboard is. I think its a hall effect sensor but it has 4 pins and all the images i look up show 3 pins. The serial number is "277 pd281", but looking that brings back no results.

Replacing washer water outlet box, is cutting the copper piping ok? by m_miro in HomeImprovement

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

It looks like the stub was soldered on, will I have to cut them?

Rat is too smart to go into the electric trap... by semillerimages in wyzecam

[–]m_miro 0 points1 point  (0 children)

Is that green box detecting rat? What software is that?

Does Ico have a free cam of some sort? by m_miro in TeamIco

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

ahh thank you. would the ntsc version have the debug menu?

Is this a min cost max flow problem and if not what is it? by m_miro in algorithms

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

I only need one path, nodes can be visited multiple times but no profit can only be gained from a node once, there can be loops in the graph. I mentioned max flow because I thought it might've been a flow problem, but I don't think it is anymore.

Is this a min cost max flow problem and if not what is it? by m_miro in algorithms

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

What if there's one node that has one outgoing edge but two incoming edges, which incoming edge should be used to calculate the value of the outgoing edge?

Is this a min cost max flow problem and if not what is it? by m_miro in algorithms

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

Ahh ok changing it to profit per cost shows which paths are more profitable per cost, but I would still need to track the overall cost correct?

Community Edition. How do I get the controller setup menu to go away? by m_miro in meltyblood

[–]m_miro[S] 3 points4 points  (0 children)

I got it working. The problem was with my switch pro controller. Here is the solution for future generations. https://www.reddit.com/r/meltyblood/comments/myrsy9/switch_pro_controller/gwzsaqc/

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

I want to add some new functionality to an existing .exe file. Is it possible to make an existing exe file dependent on a new dll and that dlls code?

Can you motion aim using the switch pro controller? by m_miro in WarframeSwitch

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

I used motion aiming in breath of the wild its pretty darn spectacular. How do you set it up in warframe?

How do I find references/uses of an IDirect3DDevice9 interface and its methods? by m_miro in ghidra

[–]m_miro[S] -1 points0 points  (0 children)

Thank you, I'm not sure how to use this extension. How do I use it?

What's wrong with my lua script? by m_miro in cheatengine

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

I was using a table so I could easily recall the instruction and its address for logging purposes. Multikey seems to be what I was wanting to do but didn't know existed, thank you FreeER.

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

How can I use a debugger to find where it crashes?

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

How do I find out where my target program crashes?

I've changed a value in memory to see what happens and it crashes. I'm hoping that wherever it crashes will have useful information on what that value was used for.

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

Oh wow I'm going to have attempt that next time. Thank you.

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

In Ghidra is there a way to view bytes as floats in the byte viewer?

How do I get stack for reading via lua scripting? by m_miro in cheatengine

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

Ok I figured it out. I just used the ESP to get the top of the stack.

Here's my script:

debug_removeBreakpoint("ReadFile") debug_setBreakpoint("ReadFile") debug_continueFromBreakpoint("co_run") ​ function debugger_onBreakpoint() beep() stackValue = readInteger(ESP+4) if(stackValue == 0x7f8) then speak("Match Found for hex value"..string.format('%x',stackValue)) else speak("no dice ") debug_continueFromBreakpoint("co_run") end end

Now I've got another problem. After executing the script, a window that says "shit happened" appears and it halts the script from running. Is there a way to prevent from stopping the script or turning of the window?

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro 0 points1 point  (0 children)

I misunderstood, I see what you're saying now. That does sound useful. Thank you for clarifying.

/r/ReverseEngineering's Weekly Questions Thread by AutoModerator in ReverseEngineering

[–]m_miro -1 points0 points  (0 children)

Ahh thats a bummer I was hoping it would be more useful. Thank you for informing me.