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
@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)
http ://N100x.GitHub.io
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 / 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
@itsN1X
itsN1X / lubdeps.md
Last active December 23, 2017 12:09
deps

./sh

## apt-get install automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev make g++ git

./wget

Downlaod the build scripts

Checklisxt:

dep:

@itsN1X
itsN1X / sm.sol
Created April 12, 2018 07:34
[ N1X ] !# safe <= sm.sol
pragma solidity ^0.4.8;
/**
* Math operations used by ConsenSys, with safety // sanity checks incorporated!
* Proformed by itsN1X@n1x.site, with ++ <3 .
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
@itsN1X
itsN1X / N1X_solid.svg
Created June 23, 2018 19:07
N1X Solidity Scalable Vector 7946solid
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@itsN1X
itsN1X / 7946_0x00
Created June 24, 2018 03:56
0xe34880d33036c981ec163e595bddf42cf22329da
0x00
0xe34880d33036c981ec163e595bddf42cf22329da
@itsN1X
itsN1X / 7968_0x00_lists
Created July 16, 2018 00:39
Until next time!
extras/subLD/4735357.txt
@itsN1X
itsN1X / 8083_las_novembre_0xfff.py
Created November 8, 2018 10:07
Unlimited Credit in 49 lines | https://2by.me | (C) Day#8083 @itsN1X
# Released in the public domain for reference purpose only.
## @itsN1X bears indemnity agaisnt any interpreted unintentionial advice.
### This is a 'Libre' software. Use psuedo-responsibly. Luser bears qass,
>>> index=1;curr=1.0;stack=0.0;
>>> index+=1;stack+=curr;curr*=10;print(index);print(curr);print(stack);
2
10.0
1.0
>>> index+=1;stack+=curr;curr*=10;print(index);print(curr);print(stack);
3