Skip to content

Instantly share code, notes, and snippets.

View itsN1X's full-sized avatar
🖤
$I.am. ĀLWAYS. $ENЯeMail$::1by0[æ]pm[·]me

=== ?&̳¡̳†̳@ itsN1X

🖤
$I.am. ĀLWAYS. $ENЯeMail$::1by0[æ]pm[·]me
View GitHub Profile
@mahnouel
mahnouel / keybase.md
Last active June 12, 2019 13:51
keybase

Keybase proof

I hereby claim:

  • I am mahnouel on github.
  • I am mahnouel (https://keybase.io/mahnouel) on keybase.
  • I have a public key whose fingerprint is A464 993A A22A 7BF9 B790 D12A 570C 09EB C7EC 3B42

To claim this, I am signing this object:

@itsN1X
itsN1X / WindowStrippa.ps1
Last active September 14, 2017 14:32 — forked from NickCraver/Windows10-Setup.ps1
(C00L/In Progress) "THE" PowerShell Script used to customize W/DoS machines for privacy, etc.
##################
# Privacy Settings
##################
# Privacy: Let apps use my advertising ID: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0
# To Restore:
#Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1
# Privacy: SmartScreen Filter for Store Apps: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0
@shunirr
shunirr / criminal_jc.md
Last active February 26, 2024 05:51
女子中学生チケット詐欺事件

criminal_jc

1) Read an image from file
2) Display an image that you read from file
3) Capture Video using your webcam and display the feed
4) Display back and white live stream from your webcam.
5) Have a slider to change brightness of the webcam live stream. Display.
6) Have a slider to change contrast of the webcam live stream. Display.
7) Capture a snapshot from your webcam. Then display difference between live video stream and this snapshot. (Background subtraction)
8) Display Canny edge image from your live webcam stream
9) Have a slider to change smoothness / sharpness of image from live webcam stream.
10) Display histogram of colors (RGB) from your live webcam stream
@itsN1X
itsN1X / List
Last active October 3, 2016 06:54 — forked from rahulkapoor90/List
Students from VIT University on GitHub
** NOTE: All the students from VIT University ( Vellore and Chennai Campus) are usually found & added here by using Github API. A sample this search is available at this URL (https://api.github.com/search/users?q=+location:vit). So, if you are in VIT please do include "VIT University" in your current location by editing your profile here (https://github.com/settings/profile).
Add yourself to >>>>>>> @VITUni <<<<<<<<
Thank You, Happy Coding!
***
A
Aneesh Neelam (https://github.com/aneesh-neelam)
Abhyudaya Srinet (https://github.com/abhyudayasrinet)
Ayush Agarwal (https://github.com/ayushagarwal95)
Amit Srivastava (https://github.com/amitspk)
@NickCraver
NickCraver / Windows10-Setup.ps1
Last active February 14, 2024 15:53
(In Progress) PowerShell Script I use to customize my machines in the same way for privacy, search, UI, etc.
##################
# Privacy Settings
##################
# Privacy: Let apps use my advertising ID: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0
# To Restore:
#Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1
# Privacy: SmartScreen Filter for Store Apps: Disable
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0
@willurd
willurd / web-servers.md
Last active March 29, 2024 02:15
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000