Skip to content

Instantly share code, notes, and snippets.

View Mandar-Shinde's full-sized avatar

Mandar Shinde Mandar-Shinde

View GitHub Profile
@Mandar-Shinde
Mandar-Shinde / Android App Privacy Policy
Created July 18, 2021 05:18
Android App Privacy Policy
Privacy Policy
Mandar Shinde built an app as a Free app. This SERVICE is provided by Mandar Shinde at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at CORE Mashal QR (Corona Kavach) unless otherwise defined in this Privacy Policy.
Link to privacy policy of third party service providers used by the app
* [Google Play Services](https://www.google.com/policies/privacy/)
**Privacy Policy**
Mandar Shinde built the CORE Mashal QR (Corona Kavach) app as a Free app. This SERVICE is provided by Mandar Shinde at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at CORE Mashal QR (Corona Kavach) unless otherwise defined in this Privacy Policy.
#include "Poco/Net/HTTPClientSession.h"
#include "Poco/Net/HTTPRequest.h"
#include "Poco/Net/HTTPResponse.h"
#include "Poco/Base64Encoder.h"
#include "Poco/Net/HTMLForm.h"
#include "Poco/Net/StringPartSource.h"
#include "Poco/StreamCopier.h"
#include "Poco/Buffer.h"
@Mandar-Shinde
Mandar-Shinde / pocoXMLDomParse
Last active April 25, 2022 14:51
poco xml dom parsing
using Poco::XML::DOMParser;
using Poco::XML::InputSource;
using Poco::XML::Document;
using Poco::XML::NodeIterator;
using Poco::XML::NodeFilter;
using Poco::XML::Node;
using Poco::XML::AutoPtr;
using Poco::Exception;
Poco::XML::DOMParser parser;
@Mandar-Shinde
Mandar-Shinde / Readme_crashdump
Created September 15, 2018 08:46
crash dump
If you experience application crashes you may be asked by support to create a crash dump file. Crash dumps are created automatically by Windows if the following registry key is present:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps
In order to help support troubleshoot your problem please do the following:
Create the registry key LocalDumps if it is not present already.
Reproduce the problem (i.e. make the application crash).
Locate the crash dump file in %LOCALAPPDATA%\CrashDumps. Note that if the crashing application runs under the System account, that resolves to C:\Windows\System32\config\systemprofile\AppData\Local\CrashDumps.
Send the crash dump file to support.
This works on all versions of Windows beginning with Vista and Server 2008 (including Windows 7, Windows 8, Server 2012, etc.).
@Mandar-Shinde
Mandar-Shinde / WindowsEventLog.cpp
Created December 30, 2016 11:52
C++ Query Event Viewer Data
#include <windows.h>
#include <sddl.h>
#include <stdio.h>
#include <winevt.h>
#pragma comment(lib, "wevtapi.lib")
const int SIZE_DATA = 4096;
TCHAR XMLDataCurrent[SIZE_DATA];
@Mandar-Shinde
Mandar-Shinde / gist:fbb01ce0d16ae6871b77
Created February 10, 2016 06:16 — forked from mejibyte/gist:1268711
My implementation of the Knuth-Morris-Pratt algorithm in C++
// http://www.spoj.pl/problems/NHAY/
#include <vector>
#include <iostream>
#include <string>
#include <cstdio>
using namespace std;
void kmp(const string &needle, const string &haystack) {
int m = needle.size();
vector<int> border(m + 1);
@Mandar-Shinde
Mandar-Shinde / RemoveTrayPin.cs
Created February 4, 2016 08:35
Reloads Taskbar
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Threading;
namespace RemoveTrayPin
@Mandar-Shinde
Mandar-Shinde / mp3.c
Created January 3, 2016 16:51 — forked from wh5a/mp3.c
CUDA Matrix Multiplication with Shared Memory
// MP 2: Due Sunday, Dec 16, 2012 at 11:59 p.m. PST
#include <wb.h>
#define wbCheck(stmt) do { \
cudaError_t err = stmt; \
if (err != cudaSuccess) { \
wbLog(ERROR, "Failed to run stmt ", #stmt); \
return -1; \
} \
} while(0)
@Mandar-Shinde
Mandar-Shinde / tinyXML.cpp
Created December 22, 2015 17:33
TinyXML Sample
#include "tinyxml2.h"
using namespace tinyxml2;
using namespace std;
//<EMAIL>
// <HEADER>
// <TO>
// </TO>