Instead of the verbose setOnClickListener:
RxView.clicks(submitButton).subscribe(o -> log("submit button clicked!"));Observable
.just(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)| 23.21.150.121:3478 | |
| iphone-stun.strato-iphone.de:3478 | |
| numb.viagenie.ca:3478 | |
| s1.taraba.net:3478 | |
| s2.taraba.net:3478 | |
| stun.12connect.com:3478 | |
| stun.12voip.com:3478 | |
| stun.1und1.de:3478 | |
| stun.2talk.co.nz:3478 | |
| stun.2talk.com:3478 |
| extern "C" { | |
| enum sleep_type { | |
| NONE_SLEEP_T = 0, | |
| LIGHT_SLEEP_T, | |
| MODEM_SLEEP_T | |
| }; | |
| bool wifi_set_sleep_type(enum sleep_type type); | |
| void system_set_os_print(uint8 onoff); | |
| void ets_install_putc1(void* routine); | |
| } |
| #!/usr/bin/env python | |
| """ | |
| The MIT License (MIT) | |
| Copyright (c) 2015 Maker Musings | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights |
| #include <ESP8266WiFi.h> | |
| #include <WiFiUdp.h> | |
| void setup() { | |
| int cnt = 0; | |
| // set for STA mode | |
| WiFi.mode(WIFI_STA); | |
| // put your setup code here, to run once: |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">| import android.os.Bundle; | |
| import android.support.design.widget.AppBarLayout; | |
| import android.support.design.widget.TabLayout; | |
| import android.support.v4.widget.SwipeRefreshLayout; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.support.v7.widget.GridLayoutManager; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.Log; | |
| import com.blackcj.designsupportexample.adapters.RecyclerViewAdapter; |
| /* | |
| * SmartThings Clapper | |
| * Author: Gilbert Chan | |
| * Update: 10/18/14 | |
| * Contributors: Manoj Kunthu, Andrew Mager | |
| */ | |
| #include <SoftwareSerial.h> | |
| #include <SmartThings.h> |
| 1. Install Linux updates, set time zones, followed by GCC and Make | |
| sudo yum -y update | |
| sudo ln -sf /usr/share/zoneinfo/America/Indianapolis \ | |
| /etc/localtime | |
| sudo yum -y install gcc make | |
| 2. Download, Untar and Make Redis 2.8 (check here http://redis.io/download) |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com, example2.com, and example1.com/images on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers