반응형
반응형

아이디어를 표현하는 능력은 아이디어 자체만큼 중요하다. - 버나드 바루크 -

반응형
반응형

- KBS 1TV '강연 100℃' 영상 -

'꿈꾸는 자는 늙지 않는다'는 제목으로 방송된
16분 짜리 강연영상입니다. 꼭 한 번 보시기 바랍니다.

 

 

 

 

 

 

 

 

 

 

.

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

맛난 만남  (0) 2013.07.13
'느낌'  (0) 2013.07.12
남자들의 무감각  (0) 2013.07.11
위험하니 충전하라!  (0) 2013.07.10
눈에 보이지 않는 것  (0) 2013.07.09
반응형
남자들에게
문제가 생겼다는 말이 나올 때쯤 되면
일이 거의 대형 사고 수준까지 불거졌음을 의미한다.
아프다고 말하면 이미 심각한 병에 걸린 경우가 많다.
왜 남자들은 이토록 스스로에게 무감각한 것일까?
자신에게든, 주변에 대해서든 조금만 더
민감하게 반응한다면 위험 요소들을
사전에 처리할 수 있을 텐데 말이다.


- 이의수의《남자를 이끄는 힘》중에서 -


* 남자들만 무감각한 것이 아닙니다.
저의 어머니도 '대형사고'가 나기 전까지
평생 무감각하게 사셨습니다. 자식에 대한 사랑,
헌신적 책임감이 그렇게 살게 했지 않나 싶습니다.
남자든 여자든 무감각에서 벗어나야 합니다.
감각이 살아나야 더 사랑 할 수 있고
더 큰 헌신도 가능합니다.

 

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

'느낌'  (0) 2013.07.12
꿈꾸는 자는 늙지 않는다. - KBS 1TV '강연 100℃' 영상 -  (0) 2013.07.11
위험하니 충전하라!  (0) 2013.07.10
눈에 보이지 않는 것  (0) 2013.07.09
향기로운 여운  (0) 2013.07.08
반응형

목표는 제한을 두지 않고
오히려 대단할수록 성취 가능성이 높다.
높은 목표일수록 변화에 대한
중요성을 인식하기 때문이다.
진정으로 하고 싶은 일과 자아 사이에 거리감이 클수록
그 간극을 좁히려는 의지가 보다 강하게 일어난다.
우리의 뇌는 작은 목표엔 굳이 변화의 필요성을 느끼지 않는다.
-김재우 회장, ‘지금 다시 시작할 수 있다’에서

 

사람은 자기가 바라는 만큼 크게 마련입니다.
1등이라는 목표를 품는 순간
더 이상 쓸모없는 시간은 존재하지 않습니다.
1등 목표를 품은 사람은
하루 86,400초를 허투루 보내지 않습니다.
1등 목표를 잡는 사람은
그 순간 일상에 안주하려던
달콤한 유혹에서 박차고 일어나
불안한 미래와 당당히 상대하게 됩니다.

반응형
반응형

 

http://www.daftlogic.com/projects-text-to-image.htm

 

PHP Text to Image

Change the settings and the click Create

Text The text to display
Rotation 0=normal 90=sideways
Font Size Points
Font
Padding Space around the image
Transparent
Fore Colour R G B (0-255)
Back Colour R G B (0-255)
(pop-up window)


Description

This script is a means to convert a string of text into an image. This has some simple uses such as displaying text such as email address that cannot be programmatically found. This can help to reduce the possibility of your email address being picked up by web crawlers and used for junk mail.

How To Use

To use the example interface above, simply modify or insert the string of text. You can edit any of the other settings, but this is optional.

Further Uses and Ideas:

How it Works:

The PHP Script

contact us for more information

Further Help

For anyone finding problems using this...

(1) Please test this example to ensure imagecreate works on your server...

<?php
header("Content-type: image/png");
$im = @imagecreate(110, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>

(2) Make sure to use the example at the top of this page by sending POST variables from your form. For example msg,font,size ...

Relevant Links

반응형
반응형

Appium

Automation for Apps

Appium is an open source test automation framework for use with native and hybrid mobile apps.
It drives iOS and Android apps using the WebDriver JSON wire protocol.

 

Introducing Appium.

Watch the Videos


Forget recompiling

Appium Philosophy

Appium is built on the idea that testing native apps shouldn't require including an SDK or recompiling your app. And that you should be able to use your preferred test practices, frameworks, and tools. Appium is an open source project and has made design and tool decisions to encourage a vibrant contributing community.

Use your favorite tool

Use your favorite tools

Appium aims to automate any mobile app from any language and any test framework, with full access to back-end APIs and DBs from test code. Write tests with your favorite dev tools using all the above programming languages, and probably more (with the Selenium WebDriver API and language-specific client libraries).

Requirements

Requirements

iOS

Mac OSX 10.7+
XCode 4.5+ w/ Command Line Tools

Android

Mac OSX 10.7+ or Windows 7+ or Linux
Android SDK ≥ 16 (SDK < 16 in Selendroid mode)

Easy setup process, run a test now.

Install node.js (includes npm, the node.js package manager).

> sudo npm install -g appium
> npm install wd
> appium &
> node your-appium-test.js

See the Appium example tests.

반응형

+ Recent posts