Skip to content

Instantly share code, notes, and snippets.

View POPOEVER's full-sized avatar
🐑
recovered!

Andre Pan POPOEVER

🐑
recovered!
View GitHub Profile
@POPOEVER
POPOEVER / webdev_online_resources.md
Created July 16, 2018 15:13 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)

Keybase proof

I hereby claim:

  • I am POPOEVER on github.
  • I am popoever (https://keybase.io/popoever) on keybase.
  • I have a public key whose fingerprint is F033 AFED E8A0 7D5F 2A48 50DD 54D4 4E49 2317 EEF9

To claim this, I am signing this object:

@POPOEVER
POPOEVER / gist:1071344
Created July 8, 2011 08:01
Regenerate invite link on Google+ Timeline
javascript:document.getElementsByClassName('a-kh-Ae')[0].appendChild(document.createElement('<div><div><div class="a-St-R">发送邀请</div><div class="a-b-Tm"><a href="/circles/find" class="a-b-h-Jb"><div class="a-St-Tm-pa a-Ja-h a-b-St-Tm-pa"></div></a><a href="/circles/find" class="a-b-h-Jb"><div class="a-Ja-h a-b-St-Tm-h">邀请其他人加入 Google+</div></a></div></div></div>'))
@POPOEVER
POPOEVER / gist:635852
Created October 20, 2010 06:04
Block element 100% width with padding
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="all" />
<title>margin vs. padding</title>
<style type="text/css">
<!--
body {
margin:0;
@POPOEVER
POPOEVER / 繁简转换
Created October 18, 2010 15:39
繁简转换
var defaultEncoding = 2; // 1: 繁體中文, 2: 简体中文
var translateDelay = 0;
var cookieDomain = "http://www.mjj.hk"; //更改为你的博客网址
var msgToTraditionalChinese = "繁體"; //此处可以更改为你想要显示的文字
var msgToSimplifiedChinese = "简体"; //同上,但两处均不建议更改
var translateButtonId = "translateLink";
var currentEncoding = defaultEncoding;
var targetEncodingCookie = "targetEncoding" + cookieDomain.replace(/\./g,"");
var targetEncoding = ( getCookie(targetEncodingCookie) == null ? defaultEncoding : getCookie(targetEncodingCookie) );