- Python Twitter https://github.com/dodilp/twitter-couchbase
- Ruby on Rails https://github.com/wmfleming/couchrails
- Baseball (Rails) https://github.com/mschoch/couchbaseball
- Ruby and Java training https://github.com/chicagoruby/CouchbaseWindyCityDB
- Node.js with Express https://github.com/pointlessjon/tidepool
- Node.js Chat https://github.com/tgrall/couchbase-chat
- GeoData Node.js https://github.com/PatrickHeneise/geolocation-demo
- Node.js Password Server https://github.com/mozilla/gombot
- Java https://github.com/neomatrix369/MyFirstCouchbaseApp
- Java Twitter import https://github.com/tgrall/couchbase-twitter-injector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class PseudoRandomGenerator { | |
protected $state = null; | |
public function __construct($seed) { | |
$this->state = $seed; | |
} | |
public function next($max) { | |
$bits = (int) floor(log($max, 2) + 1); | |
$bytes = (int) max(ceil($bits / 8), 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Jsor\MysqlAsync; | |
use React\EventLoop\LoopInterface; | |
use React\Promise\Deferred; | |
class Connection | |
{ | |
private $loop; |
This is only a summary. For a full list of changes see the NEWS file.
Feature | RFC / announcement | Author |
---|---|---|
Bundled ZendOptimizer+ as OPcache | https://wiki.php.net/rfc/optimizerplus | zeev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Streaming Video Test | |
* | |
* References: | |
* ----------- | |
* http://serverfault.com/questions/288137/how-to-stream-live-video-from-a-linux-server | |
* https://wiki.videolan.org/Stream_VLC_to_Website_with_asf_and_Flash#Method_2_H264_and_Flash_.flv | |
* http://blog.morscad.com/code-snippets/creating-a-video-player-in-as3-using-netstream/ | |
* | |
* Sample videos: |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft
,elem.offsetTop
,elem.offsetWidth
,elem.offsetHeight
,elem.offsetParent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Copyright 2015 Google Inc. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
Name | Stars | Last Commit | Description |
---|---|---|---|
three.js | ![GitHub |