Skip to content

Instantly share code, notes, and snippets.

View willf80's full-sized avatar
🏠
Working from home

WILLY FALONE KOUADIO willf80

🏠
Working from home
View GitHub Profile
@willf80
willf80 / USSDNetworkService.java
Created March 21, 2016 20:35 — forked from victorkifer/USSDNetworkService.java
USSDNetworkService used to replace Android default one and get USSD messages results.
package com.username.ussd;
import android.app.Service;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.IBinder;
import android.os.RemoteException;
import android.preference.PreferenceManager;
import android.util.Log;
@willf80
willf80 / FileLockInfo.cs
Created January 22, 2016 07:50 — forked from i-e-b/FileLockInfo.cs
Discover Win32 processes locking a file, and file locks by process. Apparently has a bug... patches please?
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Text;
using System.Threading;
namespace FileLockInfo
{