Skip to content

Instantly share code, notes, and snippets.

View lwl12's full-sized avatar
😷
All projects are terminated.

lwl12 lwl12

😷
All projects are terminated.
View GitHub Profile

Keybase proof

I hereby claim:

  • I am lwl12 on github.
  • I am lwl12 (https://keybase.io/lwl12) on keybase.
  • I have a public key whose fingerprint is 09F6 E490 127E 7150 049D 5CFF 6B1B D9B3 85A6 B162

To claim this, I am signing this object:

@lwl12
lwl12 / mail.html
Last active July 2, 2018 15:25
Mail Template
<html lang="zh-CN">
<head>
<meta name="format-detection" content="date=no" />
<meta name="format-detection" content="email=no" />
<style>
.awl a {
color: #FFFFFF;
text-decoration: none;
}

Keybase proof

I hereby claim:

  • I am liwanglin12 on github.
  • I am lwl12 (https://keybase.io/lwl12) on keybase.
  • I have a public key whose fingerprint is 09F6 E490 127E 7150 049D 5CFF 6B1B D9B3 85A6 B162

To claim this, I am signing this object:

@lwl12
lwl12 / addWhitelist.php
Created November 26, 2017 14:30
Minecraft whitelist adder
<?php
function curl($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$r = curl_exec($ch);
curl_close($ch);
return $r;