Skip to content

Instantly share code, notes, and snippets.

View vaibhavpandeyvpz's full-sized avatar
🐢
I may be slow to respond.

Vaibhav Pandey vaibhavpandeyvpz

🐢
I may be slow to respond.
View GitHub Profile
@vaibhavpandeyvpz
vaibhavpandeyvpz / Lograt.java
Last active August 29, 2015 14:03
Intelligent Logging Class For Android Applications
package com.vaibhavpandey.utility;
import com.vaibhavpandey.demo.BuildConfig;
import android.text.TextUtils;
import android.util.Log;
public final class Lograt {
/**
@vaibhavpandeyvpz
vaibhavpandeyvpz / blocker.cpp
Last active August 29, 2015 14:03
Blocking User Interaction in WinForms (C++/CLR)
#include "stdafx.h"
#include "blocker.h"
namespace VPZ
{
namespace Security
{
Blocker::Blocker(IntPtr Handle)
@vaibhavpandeyvpz
vaibhavpandeyvpz / blocker.cs
Last active May 1, 2025 12:37
Blocking User Interaction in WinForms (C#)
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace VPZ.Security
{