China has now eclipsed US in AI / deep-learning research, robotics and VC funding (government-backed $338 billion)
Sources
| package io.bxbxbai.android.examples.utils; | |
| import android.os.SystemClock; | |
| import android.util.Log; | |
| import java.util.Map; | |
| import java.util.concurrent.ConcurrentHashMap; | |
| /** | |
| * Android应用中的秒表工具,跟踪某一段代码的执行时间<br/> |
| http://www.gpshk.cc/thread-422184-1-1.html | |
| === ALL | |
| 1 C0028 C0028-B7K10-3521J0N 2015年春季版 进入资源 路畅(D2280HA)MIPS专版 | |
| 2 C0030 C0030-D5N04-3521J0N 2015年春季版 进入资源 路畅模拟屏A2270/A2265-MIPS二合一 | |
| 3 C0031 C0031-D5N04-3521J0N 2015年春季版 进入资源 路畅模拟屏A2270/A2265-MIPS二合一 | |
| 4 C0039 C0039-D5N04-3521J0N 2015年春季版 进入资源 路畅模拟屏(A2265R/A2270TP)二合一 | |
| 5 C0268 C0268-D5J04-3421J0M 2014年冬季版 进入资源 凯越路特仕RTS-1622普清 | |
| 6 C0288 C0288-D5N04-3521J0N 2015年春季版 进入资源 佳艺田普清专版 | |
| 7 C0354 C0354-D5L01-3221J0K 2014年夏季版 进入资源 科维嘉铭仁普清 |
China has now eclipsed US in AI / deep-learning research, robotics and VC funding (government-backed $338 billion)
Sources
| .class public Lcom/test/Debug; | |
| .super Ljava/lang/Object; | |
| # static fields | |
| .field public static final DEBUG_BILLING_DUMMY:Z = false | |
| .field public static final DEBUG_CHECK_MD5:Z = false | |
| .field public static final DEBUG_DISABLE_EVIDENCE:Z = false |
(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.
Scripts for endnote librart processing.
| ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### | |
| ### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget. | |
| ### You can download all the binaries one-shot by just giving the BASE_URL. | |
| ### Script might be useful if you need Oracle JDK on Amazon EC2 env. | |
| ### Script is updated for every JDK release. | |
| ### Features:- | |
| # 1. Resumes a broken / interrupted [previous] download, if any. | |
| # 2. Renames the file to a proper name with including platform info. |
| #!/bin/sh | |
| # Print four lines showing blocks of colors: 0-7 | 0-7bold | 8-15 | 8-15bold | |
| perl -CADS -lwe ' | |
| my $block = shift || (chr(0x2588) x 3); | |
| for (["", 0], ["1;", 0], ["", 8], ["1;", 8]) { | |
| my ($bold, $offset) = @$_; | |
| my @range = map $offset + $_, 0..7; | |
| printf "%s %-6s ", $bold ? "bold" : "norm", "$range[0]-$range[-1]"; | |
| print map("\e[${bold}38;5;${_}m$block", @range), "\e[0m" | |
| } |