Top Dog Networks Spectrum Analyser Update

Поділитися
Вставка
  • Опубліковано 25 гру 2024

КОМЕНТАРІ • 26

  • @PaulJBrower
    @PaulJBrower Місяць тому +1

    Awesome work! Thanks for sharing!

  • @jwaddin
    @jwaddin 2 місяці тому +2

    This is really great project, congratulations for your hard work!

  • @TheWebstaff
    @TheWebstaff Місяць тому +1

    Keep her going!

    • @TheWebstaff
      @TheWebstaff Місяць тому +1

      When can I get my hands on this btw?
      Want to start testing.

    • @TheWebstaff
      @TheWebstaff Місяць тому

      oh and how much $ to get my name on the project?

    • @TallPaulTech
      @TallPaulTech  Місяць тому +1

      When it's ready to go, I'll let the world know. Nobody wants it more than me

    • @TheWebstaff
      @TheWebstaff Місяць тому

      No, I want this more than you!
      I'll fight you for it!

  • @MrDmjay
    @MrDmjay 2 місяці тому +1

    Nice one Paul.

  • @wussup331
    @wussup331 25 днів тому +1

    This is awesome! Can you do a tutorial on how to program the real time 2D plot? How do you stream the data from the sdr?

    • @TallPaulTech
      @TallPaulTech  25 днів тому +1

      Ha, I doubt it, because I'm hardly a programmer!

  • @electechyt
    @electechyt 2 місяці тому +2

    Great work!

  • @bentheguru4986
    @bentheguru4986 Місяць тому +1

    LOL, these vids are funny to watch.

  • @S1ngulr
    @S1ngulr 2 місяці тому +1

    Looks good

  • @wildekek
    @wildekek 2 місяці тому +1

    Nice work. What's the licensing model going to look like?

    • @wildekek
      @wildekek 2 місяці тому +2

      Ah, just heard "open source" in the end of the vid. That is amazing! Sidenote: I'm working on my Australian, would "You're not a half bad c*nt after all" be a compliment?

    • @TallPaulTech
      @TallPaulTech  2 місяці тому +3

      @@wildekek Half

  • @iNireus
    @iNireus 2 місяці тому +1

    Have you tried Claude AI for coding

    • @TallPaulTech
      @TallPaulTech  2 місяці тому +3

      It's not available for general use like chatgpt without logins, signups, and typical bullshit

    • @iNireus
      @iNireus 2 місяці тому

      @@TallPaulTech shame, thought it might help you out

    •  2 місяці тому

      claude is great for coding, last week they released an improved version for coding. I used to use the pay version, now I use the free version daily and it is very handy for code.

  • @fodoreanlucian3779
    @fodoreanlucian3779 2 місяці тому

    Nice job! A small obs: levels should be in dBm not dB. Keep going !

    • @TallPaulTech
      @TallPaulTech  2 місяці тому +1

      ...if they were calibrated to anything

  • @rogo7330
    @rogo7330 2 місяці тому +1

    Nice. For the optimizations, since your code written in Python and it has pretty awful in terms of performance standard library, look for string manipulations that you do in hot parts of code (loops and such). Python strings AND bytes (that's basically all your data that you `read()` from files and sockets) on each operation with them (even those that not necesserary modify the data under but rather moves starts and ends of the part that object is looking on) mallocs a new object, copies all the data that was there and then modifies it. I have no idea how to fix that with strings, but with bytes you can try to use memview, which is built-in class for exactly what it sounds like. Unfortunatly, only thing you can do with it is only look at it as pointer to an array of bytes (or ints, or something else, but default is bytes) and look at it as an array of numbers. It does not allocates a new memory and does not copies data each time you cut one byte from it, it just basically says "It's starts from here and ends here, there is array of what's inside".

    • @TallPaulTech
      @TallPaulTech  2 місяці тому +1

      Do you want in on this project?

    • @rogo7330
      @rogo7330 2 місяці тому +1

      @@TallPaulTech not really need it for anything right now. I just interested in radio stuff, and at some point stumble upon your channel with videos about Wi-Fi and RTL-SDR (many thanks for your uploads). Maaaybe I gonna download the sources, once you publish your code, to see what you do with signals and to maybe learn something from it. Then I'll try not to forget return patches if I find and fix some issues :)