/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

willhaley.com
| | anti-forensics.com
1.8 parsecs away

Travel
| | Simple C# application demonstrating how to kill running processes. In this case, the Digital Forensics software. C# Kill Process
| | mariocarrion.com
2.0 parsecs away

Travel
| | I'm starting the Mono POSIX shared memory wrapping, decided to begin dllimporting shm_open, however doesn't seems to be easy at all, my current effort is: using System; using System.Runtime.InteropServices; namespace Mono.Posix { public class SharedMemory { public SharedMemory () { } [DllImport ("librt", EntryPoint="shm_open", CharSet=CharSet.Ansi, CallingConvention=CallingConvention.StdCall)] public static extern IntPtr Open ( [MarshalAs (UnmanagedType.LPStr)] string name, int oflag, int mode_t); public...
| | dylanbeattie.net
1.8 parsecs away

Travel
| | An article from dylanbeattie.net
| | danielpecos.com
25.0 parsecs away

Travel
| Purpose of this post is to providea glimpse of the new features included in Java 8 that shiftthis language towards a more Functional Programming paradigm. But before, let's define what we understand for Functional Programming (FP). Functional programming key characteristics include: Higher Order Functions Pure Functions and Immutability Tail Call Recursion Higher Order Functions for a FP language means that functions are considered first class citizens, allowing the programmer to use them as any other value the language defines, for example, a Function value: