NSA Using Github Code

Simon Brown • November 20, 2024

Netflix Intelligence

If you watch the Netflix series Intelligence, Season 1 Episode 4 you see some code on the screen when there's 13 minutes and 24 seconds remaining of the episode.. Looks like the NSA have swiped this code from Bhavesh Jaswani who is from Udaipur, Rajasthan. Or maybe he hacked into the NSA and 'copied' the code? Anyway, it's not super-efficient.


The original code is below.


#include <iostream>

using namespace std;


typedef struct complex

{

  float real;

  float imag;

} complexNumber;


complexNumber addComplexNumbers(complex, complex);


int main()

{

  complexNumber n1, n2, temporaryNumber;

  char signOfImag;


  cout << "For 1st complex number," << endl;

  cout << "Enter real and imaginary parts respectively:" << endl;

  cin >> n1.real >> n1.imag;


  cout << endl << "For 2nd complex number," << endl;

  cout << "Enter real and imaginary parts respectively:" << endl;

  cin >> n2.real >> n2.imag;


  signOfImag = (temporaryNumber.imag > 0) ? '+' : '-';

  temporaryNumber.imag = (temporaryNumber.imag > 0) ? temporaryNumber.imag : -temporaryNumber.imag; 


  temporaryNumber = addComplexNumbers(n1, n2);   

  cout << "Sum = " << temporaryNumber.real << temporaryNumber.imag << "i";

  return 0;

}


complexNumber addComplexNumbers(complex n1,complex n2)

{

   complex temp;

   temp.real = n1.real+n2.real;

   temp.imag = n1.imag+n2.imag;

   return(temp);

}

By Simon Brown June 18, 2025
Major Change Scroll down to the SDR Radio information. The bandwidths available for SDR Television when using a Pluto / LibreSDR have changed.
By Simon Brown May 25, 2025
BATC Net, May 22nd 2025 Here's a snippet from the British Amateur Television Club net on QO-100. I hope it doesn't scare you.
By Simon Brown May 25, 2025
UI Refresh And More...
By Simon Brown May 13, 2025
After too much grief, I've decided to stop using Wi-Fi to connect the small NUC systems in the computer room to my network: DX Cluster (Ubuntu) SDR Server (Windows) User Forums (Windows) These servers are in constant use, causing the wireless transmitter on my TP-Link AX50 to fail. By switching over to a wired network there's less demand on the wireless transmitter and the whole network has become far more reliable. In future I will only use Wi-fi when there's no alternative. I'm keeping a spare router ready just in case the AX50 fails.
By Simon Brown, G4ELI May 6, 2025
Inside All this equipment is installed in my computer room, next to the office.
By Simon Brown May 1, 2025
SDR Television video from Australia
By Simon Brown April 30, 2025
Sounds Like... And before I start, may I apologise for the delay in finding the cause of the noise.
By Simon Brown April 25, 2025
YouTube Many thanks to Tech Minds, aka Matt M0DQW for this very complimentary YouTube video. I hope you enjoy it as much as I did.
By Simon Brown April 24, 2025
The first Major Update