Skip to content

Instantly share code, notes, and snippets.

@incyi
incyi / Ethernet_fix.bat
Created June 23, 2022 07:17
Turn off ethernet and turn on again with Windows 10 batch file
::
:: Turn on/off Ethernet
:: Tested on Windows 10 professional
:: Right click on the bat file and press on Run as administrator
::
@echo on
:: Turn off "Ethernet 1", this should be the device name as in your Network Connections.
netsh interface set interface "Ethernet 1" DISABLED
@incyi
incyi / JSF_C++.md
Last active November 3, 2017 12:57

Referenced doc from JOINT STRIKE FIGHTER AIR VEHICLE C++ CODING STANDARDS FOR THE SYSTEM DEVELOPMENT AND DEMONSTRATION PROGRAM Doc itself: http://www.jsf.mil/downloads/documents/JSF_AV_C++_Coding_Standards_Rev_C.doc

  1. http://ieeexplore.ieee.org/document/30711 ANSI/IEEE Std 754, IEEE Standard for Binary Floating-Point Arithmetic, 1985.
  2. Bjarne Stroustrup. The C++ Programming Language, 3rd Edition. Addison-Wesley, 2000.
  3. http://www.stroustrup.com/glossary.html Bjarne Stroustrup. Bjarne Stroustrup's C++ Glossary.
  4. http://www.stroustrup.com/bs_faq2.html Bjarne Stroustrup. Bjarne Stroustrup's C++ Style and Technique FAQ.
  5. Barbara Liskov. Data Abstraction and Hierarchy, SIGPLAN Notices, 23, 5 (May, 1988).