Skip to content

Instantly share code, notes, and snippets.

View incyi's full-sized avatar

İnanç Yiğit incyi

View GitHub Profile
@incyi
incyi / kali_linux_lenovo_thinkpad_x280.sh
Last active January 21, 2023 10:24
Kali Linux on Lenovo Thinkpad X280
## Kali Linux on Lenovo Thinkpad X280
# Install intell internal Wi-Fi
lspci
# 3b:00.0 Network controller: Intel Corporation Wireless 8265 / 8275 (rev 78)
mount kali-linux-2022.4-installer-everything-amd64.iso /media/cdrom
cd /media/cdrom/firmware/
cp firmware-iwlwifi_20221012-1+kali1_all.deb /root/
cd /root/
@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).