React + D3 exploration with the force layout:
- React for structure
- D3 for data calculation
- D3 for rendering
Pro:
- The viz scales!
- Use all the d3 functions!
Con:
React + D3 exploration with the force layout:
Pro:
Con:
The GCC distributed with CentOS 6 is 4.4.7, which is pretty outdated. I'd like to use gcc 4.8+. Also, when trying to install Linuxbrew you run into a dependency loop where Homebrew's gcc depends on zlib, which depends on gcc. Here's how I solved the problem.
Note: Requires sudo
privileges.
chrome://extensions
Developer mode
Load unpacked extension...
and select the extracted folderCreated by the SMU CS Society
Dockerfile
that is based on your production image and
simply install xdebug
into it. Exemple:FROM php:5
RUN yes | pecl install xdebug \
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
I strongly dislike receiving application notifications on Facebook. I wanted to disable them. All of them. Here is the little script I wrote that does that in bulk for me.
script.js
codeThe purpose of this document is to make recommendations on how to browse in a privacy and security conscious manner. This information is compiled from a number of sources, which are referenced throughout the document, as well as my own experiences with the described technologies.
I welcome contributions and comments on the information contained. Please see the How to Contribute section for information on contributing your own knowledge.
Here are several different ways to test a TCP port without telnet.
$ cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_5.3
^C
$ cat < /dev/tcp/127.0.0.1/23
# My first layered neural network thingy, | |
# Whooooo. | |
# No Theano just yet. Maybe Numpy. | |
# Numpy will require me to express everything | |
# with as little iteration as possible. That's | |
# what bugs me about that library >_<. You can | |
# only hope everything broadcasts correctly! | |
import numpy | |
import theano |