Skip to content

Instantly share code, notes, and snippets.

@manigandham
manigandham / rich-text-html-editors.md
Last active March 13, 2024 23:51
Rich text / HTML editors and frameworks

Strictly Frameworks

Abstracted Editors

These use separate document structures instead of HTML, some are more modular libraries than full editors

@nikcub
nikcub / README.md
Created October 4, 2012 13:06
Facebook PHP Source Code from August 2007
@donut
donut / donutScroll.jquery.js
Created February 22, 2012 16:32
A scroll to jQuery plugin
/** A "scroll to" plugin.
Scrolls to the first element in the jQuery object or to the passed
position.
@author Donovan Mueller (zotobi@gmail.com)
@url https://gist.github.com/1885908
------------------------------------------------------------------------ */
;(function donutScrollPlugin($) {
var viewport = ($.browser.opera) ? 'html' : 'html, body'
// Opera jumps to the top when 'html,body' is used.
@bradland
bradland / ssh-known-hosts-mgmt.sh
Last active April 4, 2023 21:21
SSH known_hosts tools
# This is a short collection of tools that are useful for managing your
# known_hosts file. In this case, I'm using the '-f' flag to specify the
# global known_hosts file because I'll be adding many deploy users on this
# system. Simply omit the -f flag to operate on ~/.ssh/known_hosts
# Add entry for host
ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts
# Scan known hosts
ssh-keygen -f /etc/ssh/ssh_known_hosts -F github.com
WHoooOOA!
/
/''''\
\|/_ | O O | _\|/
| \ () / |
\___| |___/
@itspriddle
itspriddle / less.vim
Created April 17, 2010 01:49 — forked from bryanjswift/less.vim
LESS CSS for pathogen
au BufRead,BufNewFile *.less set ft=less syntax=less
" Vim syntax file
" Language: LESS Cascading Style Sheets
" Maintainer: Leaf Corcoran <leafot@gmail.com>
" Modifier: Bryan J Swift <bryan@bryanjswift.com>
" URL: http://leafo.net/lessphp/vim/less.vim
" URL: http://gist.github.com/161047
" Last Change: 2009 August 4
" LESS by Leaf Corcoran
" CSS2 by Nikolai Weibull
" Full CSS2, HTML4 support by Yeti