Skip to content

Instantly share code, notes, and snippets.

View blue7wings's full-sized avatar

LiamXia blue7wings

  • none
  • Shanghai
View GitHub Profile
@blue7wings
blue7wings / AppToFront.cs
Last active April 4, 2019 03:04
bring app to front
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace AppToFront
{
class Program
{
[DllImport("USER32.DLL")]
static extern bool SetWindowPlacement(IntPtr hWnd, [In] ref WINDOWPLACEMENT lpwndpl);
@blue7wings
blue7wings / callNoParamaterFunction.php
Created September 18, 2017 02:52
给无参数定义函数传参
<?php
function greet() : Closure {
return function($name) {
return 'Hello ' . $name;
};
}
function call(Closure $func) {
return function($name) use ($func) {