Skip to content

Instantly share code, notes, and snippets.

@quietlynn
quietlynn / jquery.gplus_offline.user.js
Last active October 4, 2015 19:28
jQuery Google+ plugin OFFLINE
/*
jQuery Google+ plugin OFFLINE
Copyright (C) 2012 Jingqin Lynn
Includes jQuery
Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license
Includes Sizzle.js
@quietlynn
quietlynn / dependency_loader.user.js
Created May 9, 2012 15:51
dependency_loader.user.js => Load everything needed in userscripts.
/*
dependency_loader.user.js => Load everything needed in userscripts.
Copyright (C) 2012 Jingqin Lynn
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@quietlynn
quietlynn / gplus.fuu.user.js
Created May 9, 2012 15:42
Google+ Fuu => Reply posts in one click.
/*
Google+ Fuu => Reply posts in one click.
Copyright (C) 2012 Jingqin Lynn
Includes Japansese translation of UI text.
Copyright (C) 2012 +Cless Jiang <https://plus.google.com/114649741876253367865>
Includes jQuery
Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
@quietlynn
quietlynn / jquery.gplus.js
Last active October 4, 2015 13:37
jQuery Google+ plugin
/*
jQuery Google+ plugin
Copyright (C) 2012 Jingqin Lynn
Includes jQuery
Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license
Includes Sizzle.js
@quietlynn
quietlynn / gplus_shrink_vertical_blank.user.css
Created May 9, 2012 14:20
Shrink Vertical Blank for Google+
/*
To the extent possible under law, 林静琴 <https://github.com/quietlynn> has waived all copyright and related or neighboring rights to Shrink Vertical Blank for Google+. This work is published from: United States.
http://creativecommons.org/publicdomain/zero/1.0/
*/
/* 减少信息之间纵向间隔 */
.Cg {
margin-top: 5px !important;
margin-bottom: 5px !important;
}
@quietlynn
quietlynn / gplus_wide_stream.user.css
Created May 9, 2012 13:58
Wide Stream Style for Google+
/*
To the extent possible under law, 林静琴 <https://github.com/quietlynn> has waived all copyright and related or neighboring rights to Wide Stream Style for Google+. This work is published from: United States.
http://creativecommons.org/publicdomain/zero/1.0/
*/
/* 隐藏右侧边栏 */
.ksa.a-f-e {
display: none !important;
}
/* 隐藏用户头像等 */
@quietlynn
quietlynn / svgedit_save_button.user.js
Created April 23, 2012 14:56
svg-edit save button => Add a save button to svg-edit.
/*
svg-edit save button => Add a save button to svg-edit.
Copyright (C) 2012 Jingqin Lynn
Based on:
* http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js (Eli Grey, http://eligrey.com)
Includes jQuery
Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
@quietlynn
quietlynn / gplus.i18n.user.js
Created April 10, 2012 16:09
Google+ i18n => Internationalization and localization on Google+
/*
Google+ i18n => Internationalization and localization on Google+
Copyright (C) 2012 Jingqin Lynn
Includes jQuery
Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license
Includes Sizzle.js
@quietlynn
quietlynn / gplus_conditional_fuu.user.js
Created March 23, 2012 14:57
Google+ Conditional Fuu
/*
Google+ Conditional Fuu => Automatically reply posts on certain conditions.
Copyright (C) 2012 Jingqin Lynn
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@quietlynn
quietlynn / PiCalculator.cs
Created March 13, 2012 13:07
A simple PI calculator in C#.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Numerics;
namespace PiCalculator
{
public class PiCalculator
{