Skip to content

Instantly share code, notes, and snippets.

View CraigglesO's full-sized avatar
🌎
Sic Parvis Magna

地図の神様 CraigglesO

🌎
Sic Parvis Magna
View GitHub Profile
@CraigglesO
CraigglesO / cppTemplate.cpp
Last active May 23, 2016 06:28
C++ Competitive Programming Template
#include <bits/stdc++.h>
using namespace std;
#define me(a, b) memset(a, (b), sizeof(a))
#define FOR(i,a,b) for (int i=a;i<b;i++)
#define RFOR(i,a,b) for(int i=a;i>b;i--)
#define for_all(it,n) for(__typeof((n).begin()) it=(n).begin();it!=(n).end();it++)
#define ITi std::vector<int>::iterator it
#define Size(n) (int)((n).size())
@CraigglesO
CraigglesO / StopW10.bat
Created March 13, 2016 12:53 — forked from vip3rc0de/StopW10.bat
This Bat will stop windows 10 spying you, also it will Uninstall OneDrive....So you will keep your privacy! This bat will Disable Data Logging Services, will Configure Windows Explorer, Uninstall OneDrive and edit Hosts to stop sending Telemetry Data to Microsoft!
@echo off
echo ***************************************************************
echo ***************************************************************
echo *** This Script will stop Windows 10 Spying you...YEYYYY!!! ***
echo ***************************************************************
echo *** We will Disable Data Logging Services ***
echo *** We will Configure Windows Explorer ***
echo *** We will Uninstall OneDrive ***
echo *** We will edit Hosts to stop sending Data to Microsoft ***
echo ***************************************************************