Showing posts with label more. Show all posts
Showing posts with label more. Show all posts
Saturday, August 27, 2016
Conan OBrien on Korean drama One More Happy Ending 한번 더 해피엔딩
Conan OBrien on Korean drama One More Happy Ending 한번 더 해피엔딩
In case you missed it, Conan made his cameo appearance on a Korean soap opera drama last night. I was hoping hed be given a part thats a bit more comical, but this show isnt known for its outstanding creativity or anything. But hey hes Conan and his sleazy, oily tone made me laugh, so well done Coco.
Basically, in this scene, Conan plays a potential client for an international arranged dating/marriage service. But when he sees how perfectly beautiful the match-maker is, he starts describing his "ideal woman" as... her. Thus he ends up backing out of the deal, because if he cant have her, hell have no one. As hes walking out, he tells her to have courage: love conquers all.
Ill embed the clips below. You should be able to use the YouTube link if youre outside Korea. Inside Korea, try the Naver TVcast link.
Conan seems to be having a great time in Korea, and Im glad he brought his K-buddy Steven Yeun with him. Theyve been posting a lot of pics of their trip over on the Team Coco Instagram, but this one of them at the DMZ is probably my favorite.
??! ??? ???????. ?? ?????!! #????? #thankyouforyourservice #?????? #????? #??? #ilovekorea #????? #conankorea (Salute! Thank you for the hard work in the freezing cold. Stop falling, snow! #thankyou #realmen #panmunjeom #stupidsnow #dmz)A photo posted by Conan OBrien (@teamcoco) on
On a personal note, I enjoy seeing these kind, warm-hearted celebrities having fun over here (or putting on a great show looking like theyre having fun, at least). I thought Jack Black did a great job on Infinite Challenge. Maybe Ive been here too long, a lot of things that used to seem fun and exciting are just routine now. Hey everybody experiences that right? But through their fresh eyes, this dead heart inside me gets a little flutter, remembering things like my own first time in a PC Bang, etc.
=====
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
This post is from the blog 10? Tips, by Sam Nordberg. See the original there, and follow me on Facebook or Twitter @10wontips.
Saturday, August 13, 2016
Doing more improvements soon! D
Doing more improvements soon! D
I am doing more improvements soon for this website, you think the site design is boring but you think the features are lame/cool.
I am also syncing the repo of Android 5.1 (Lollipop), so every ALCATEL ONETOUCH 4030 user will experience some sweet goodness with Lollipop!
UPDATE: Failed to do it, incomplete source code
Labels:
d,
doing,
improvements,
more,
soon
Thursday, July 28, 2016
Blink NodeMCU on board LED using Arduino IDE with ESP8266 core for Arduino and more examples
Blink NodeMCU on board LED using Arduino IDE with ESP8266 core for Arduino and more examples

To program NodeMCU in Arduino IDE, we have to install esp8266 board (ESP8266 core for Arduino) to Arduino IDE.
Add Additional Board Manager URL for ESP8266 board:
> File > Preference

Add "http://arduino.esp8266.com/stable/package_esp8266com_index.json" in Additional Board Manager URLs.

Add ESP8266 board to Arduino IDE:
- Open Boards Manager in Arduino IDE
- Search "esp8266" or "NodeMCU", you will find "esp8266 by ESP8266 Community". Install it.
Test:
Once esp8266 board installed, you can find an example to blink the on-board LED.
File > Examples > ESP8266 > Blink
/*
ESP8266 Blink by Simon Peter
Blink the blue LED on the ESP-01 module
This example code is in the public domain
The blue LED on the ESP-01 module is connected to GPIO1
(which is also the TXD pin; so we cannot use Serial.print() at the same time)
Note that this sketch uses LED_BUILTIN to find the pin with the internal LED
*/
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is acive low on the ESP-01)
delay(1000); // Wait for a second
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
}
You can upload it to NodeMCU, to toggle the on-board LED.
notice:
- Once the ModeMCU programmed, the original firmware will be erased. To restore the original firmware with Lua shell, you have to flash the firmware again.
Next:
- Read NodeMCU MAC address using Arduino IDE with esp8266 library
- Get my IP address
- Run diagnosis
- NodeMCU to read analog input, A0
- NodeMCU act as WiFi client to update dweet.io
- Display on 128x64 I2C OLED, using Adafruit SSD1306 and GFX libraries
- esp8266-OLED, another esp8266-Arduino library for I2C-OLED displays
- NodeMCU/ESP8266 act as AP (Access Point) and simplest Web Server
- NodeMCU/ESP8266 act as AP (Access Point) and web server to control GPIO
- NodeMCU/ESP8266 implement WebSocketsServer to control RGB LED
- NodeMCU/ESP8266 WebSocketsServer, load html from separate file in flash file system
Subscribe to:
Posts (Atom)