Skip to content

Instantly share code, notes, and snippets.

@kwadwo
kwadwo / ladder.md
Created May 6, 2020 14:51 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
@kwadwo
kwadwo / keybase.md
Created October 27, 2019 19:40
keybase.md

Keybase proof

I hereby claim:

  • I am kwadwo on github.
  • I am kwadwo (https://keybase.io/kwadwo) on keybase.
  • I have a public key ASCyY7TIiAonguUnZHa12l3hQ2KsaFaZZxGzU2falhR-iQo

To claim this, I am signing this object:

@kwadwo
kwadwo / html-editors.md
Created April 13, 2018 15:56 — forked from manigandham/rich-text-html-editors.md
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

  • ProseMirror - http://prosemirror.net/ - supports collaborative editing, offers similar options to Mobiledoc for data structure

Keybase proof

I hereby claim:

  • I am kwadwo on github.
  • I am kwadwo (https://keybase.io/kwadwo) on keybase.
  • I have a public key whose fingerprint is 559D CF7F 2001 A5DF 7639 99D1 3391 197A 4B6D 8D37

To claim this, I am signing this object:

@kwadwo
kwadwo / nginx.conf
Last active August 29, 2015 14:16 — forked from plentz/nginx.conf
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
<?php
$memcache = new Memcache();
$memcache->connect('127.0.0.1', 11211) or die ("Could not connect");
$list = array();
$allSlabs = $memcache->getExtendedStats('slabs');
$items = $memcache->getExtendedStats('items');
foreach($allSlabs as $server => $slabs) {
foreach($slabs AS $slabId => $slabMeta) {
if (!is_int($slabId)) {
continue;
sdvsdvds