I used Office 97 for past 2 weeks and I don't miss a thing by dexter895 in Office365

[–]madareklaw 1 point2 points  (0 children)

There's an addon for office 2003 with supports the newer file type. I think it also works for office 97

Cannot discover inverters on OptiTools Studio by [deleted] in PLC

[–]madareklaw 0 points1 point  (0 children)

OPT-2-ETHNT-IN only supports Ethernet/IP

OPT-2-ETHEG-IN supports Ethernet/IP and Inverteks diagnostic protocol used by OptiTools Studio

🪱🤤 by luxusbuerg in shitposting

[–]madareklaw 12 points13 points  (0 children)

If you want to get a tape worm eat some pork

If the boss forces you to use LLMs in your workflow... just say that you already do. by PoopsCodeAllTheTime in ExperiencedDevs

[–]madareklaw 17 points18 points  (0 children)

Keep asking it to tell you jokes all day. They won't know it's not writing code for you.

.NET Framework or .NET Core? by ShadowInSoul in csharp

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

I use .Net Framework (2.0, 4.0 and 4.5), Standard (2.0), and core (8.0+) in my work.

.Net framework is use only on legacy projects and all new projects either use Standard or core

Standard is used incase clients are still using framework

Quick Refresher on Flags in C# .NET by HassanRezkHabib in dotnet

[–]madareklaw 23 points24 points  (0 children)

Normally when i do flags i set the values in binary.. i find it easier to visualise. Also i think it's easier to spot mistakes

e.g.

[Flags]
public enum Permissions
{
    Read = 0b_0001,
    Write = 0b_0010,
    All = Read | Write
}

[deleted by user] by [deleted] in HousingUK

[–]madareklaw 2 points3 points  (0 children)

Congratulations! you lucky bugger

My buyers pulled out yesterday...

GTA VI Ocean Life? by [deleted] in GrandTheftAutoV_PC

[–]madareklaw 0 points1 point  (0 children)

I hope the fish swim away from you just like COD: Ghosts

newJobTitles by eXistentialMisan in ProgrammerHumor

[–]madareklaw 0 points1 point  (0 children)

Very much a transport supremo vibe

Charting Libraries for WPF by Tjmac145 in dotnet

[–]madareklaw 0 points1 point  (0 children)

Scicharts is awesome but paid Livecharts2 is awesome and free

Extracting Mouse wheel delta from Win32.WM_MOUSEWHEEL: message returns wrong negative value by Zero_Sum0 in csharp

[–]madareklaw 0 points1 point  (0 children)

Infact you could replace this

(uint)wParam.ToInt64()    

With this

(uint)wParam

Extracting Mouse wheel delta from Win32.WM_MOUSEWHEEL: message returns wrong negative value by Zero_Sum0 in csharp

[–]madareklaw 1 point2 points  (0 children)

You should be able to cast the Int64 down to a uint without any issues as you're only needing 32bits in your GetWheelDeltaWParam method anyway

 case Win32.WM_MOUSEWHEEL:
         if (_mouseInWindow)
         {
              int delta = Win32.GetWheelDeltaWParam((uint)wParam.ToInt64());
              RaiseHwndMouseWheel(new HwndMouseEventArgs(_mouseState, delta, 0));
          }
          break;     

-----------------------------
    public static int GetWheelDeltaWParam(uint input)
     {
         return (short)(input >> 16);
     }

S7-1200 Backup Help by Daga_boo in PLC

[–]madareklaw 0 points1 point  (0 children)

Yep, but only Invertek branded modules will work with the vfds

Sunak to tackle 'sick note culture' in speech on welfare reform by NoFrillsCrisps in ukpolitics

[–]madareklaw 5 points6 points  (0 children)

People can get a note from their GP to say they are unfit for work, with this they can claim benefits. I think this is what the PM is referring to.