Jump to content

Franck

Member
  • Posts

    1,437
  • Joined

  • Last visited

Awards

This user doesn't have any awards

2 Followers

Profile Information

  • Gender
    Male
  • Location
    Canada
  • Occupation
    Software Developper

Recent Profile Visitors

2,695 profile views
  1. This is a weird way to display. It's mostly just for AMD processors single socket. For intel single socket you would need 3 processors graph, 1 for boost 3.0 P core, 1 for the other P core and 1 for the E cores. A list is much better. I specially run lots of heavy duty multithreaded code and knowing which core boost at what is very important to know where i can squeeze out performance.
  2. I've been programing with C++ for nearly 30 years and even when i was programing it with Visual Studio 97 can't remember i never actually needed to ask myself that question. I later switched to Visual Studio 2002 when it came out and still to this date i never had a single instance i had to worry about the compiler i am using. Code... click run and it run
  3. Just don't waste time with company that claim these thing and ask you to upload things to them. Just use OWASP. It is an NPO association has many security tools and it's not limited to php. I can detect vulnerability in javascript as well as a third party dll in a C++ app. It also have a pen test toolset somewhere for web or desktop app
  4. Depend on your level of knowledge in programming. You can simply make a windows service to runs every minute which run powershell, c#, java that simply connect to your email, read the emails and find the link and do everything itself
  5. If your goal is to render online then obj + mtl is all you need. Just add Three.js library. Make sure sure you import the objloader and mtlloader and display in the html.
  6. Typically you should only have to connect with a wire once on the router, activate remote management and then just put a shortcut link in your favorite browser on your steam deck and administrate it from there.
  7. Well if you are running on windows it's easy, you can use windows text to speech var synthesizer = new SpeechSynthesizer(); synthesizer.SetOutputToDefaultAudioDevice(); synthesizer.Speak("Some text to say"); This simply transform any text to speech using the default audio source so typically your speaker on a laptop. Now windows come with at least 1 male, 1 female voices installed with your OS language but you can install more. I had at least 5 male/ 5 female for both english and french. You can see which you currently have with the synthesizer object using the get installed voices var voices = synthesizer.GetInstalledVoices() Now that is not a perfect voice simulation but way better than your need. Now seems likes 2-3 voices isn't enough right ? well actually it is. Since you actually decide the audio output device of where the sound is going you can easily redirect to : 1 - You own audio coded device with NAudio (a .net lib) and grab the wave and apply filter to speed up, slow down, increase/decrase pitch... to change the voice output 2 - OBS and apply filters on audio source 3 - Audacity and do whatever you want with the audio. All this is 100% free and 100% off the grid. I actually build something similar to this to read prompt text file with thousands of different voice, randomly generated at first and filtered after. that was back in 2006-2007 and i believed they are still using it. This whole feature set also come with Speech to text. Back then i use to listen to user prompt and make my own assitant and respond to his demand but nowaday you could simply add ChatGPT and make players have conversation with the AI. You just need to tell it first who he is, what he knows, what he's trying to convey and let them speak to your laptop lol.
  8. if it's like the last 2 gen i have been screwed over it will be 2 or 3 motherboard (total all AIB included) that you can actually buy. And after a while none are produced anymore so if something break it's now an expensive brick. They wont get me 3 times
  9. That is some bad argument. Why would they support for 2.77% of people (as of May 2023) ? They rather do good driver for Mac OSX users 9.06% users (as of September 2023).
  10. You might have a couple problems in the algorythm. I can't pin point that language but there is no way collatz conjecture takes that much time for 1,000,000. It should be more like sub 1 second
  11. If you want to know there is a much cheaper option. I bought a bundle of ESP32 boards that comes down to about 9$ a piece and added a small photo sensor and thermo sensor and it connect to the wifi to my webserver to update the status of the read out. It can open light circuit and can know where to turn on heat. If you want to go nuts you can get a DHT22 for 9$ that give more than just temp but that's overkill for controlling basic lights, music, temp. All in all it's around 20$ per unit counting a 50 cents 3d printed case that fit to existing thermostat box.
  12. Finally got my hand on Remote Desktop Access for the VM and I have a lot more issue that Citrix workspace seems to just bypass and screwup my software. My code now hit try catch perfectly. So Citrix is as bad as it used to be 20 years ago.
  13. it's nearly the price of a full seat. Unless they really up charge like crazy to cover for the other people that don't pay for it then i can't understand the pricing. Last year a 2019 civic costed me about 220$ to replace the whole seat for another stock one and i had to pay an extra 60$ extra for heating option. Even if i go more premium for example for my Challenger Scat 392 the whole bottom seat with alcantara leather with ventilated ac cooling and heating is currently 313$ for the stock part. I can't find the back rest but it's probably the same price. It has 1 duct and 2 small motors so maybe 650$ for the whole seat. I don't know how they manage to make the option just for heating 414$.
×