Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
| diff --git a/configure b/configure | |
| index 800b5850f4..a93f5426ef 100755 | |
| --- a/configure | |
| +++ b/configure | |
| @@ -836,6 +836,8 @@ for opt do | |
| ;; | |
| --enable-linux-user) linux_user="yes" | |
| ;; | |
| + --enable-linux-user-drm-amdgpu) meson_option_add "-Ddrm_amdgpu=true" | |
| + ;; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <script type="module"> | |
| import { h, text, app } from "https://unpkg.com/hyperapp" | |
| app({ | |
| init: () => 0, | |
| view: state => | |
| h("main", {}, [ |
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <?php | |
| error_reporting(E_ALL); | |
| require __DIR__ . '/FastRoute/src/bootstrap.php'; | |
| spl_autoload_register(function ($class) { | |
| require __DIR__ . '/Pux/src/' . strtr($class, '\\', '/') . '.php'; | |
| }); |
So yeah... no documentation for the HBase REST API in regards to what should a filter look like...
So I installed Eclipse, got the library, and took some time to find some of the (seemingly) most useful filters you could use. I'm very green at anything regarding HBase, and I hope this will help anyone trying to get started with it.
What I discovered is that basically, attributes of the filter object follow the same naming than in the documentation. For this reason, I have made the link clickable and direct them to the HBase Class documentation attached to it; check for the instantiation argument names, and you will have your attribute list (more or less).