1. 부트스트랩 기본 설정방법

다운 받아서 webapp에 bootstrap이란 폴더를 만든 후 거기다가 js와 css폴더를 삽입한다.


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="bootstrap/js/bootstrap.min.js"></script>
  </body>
</html>




2. jumbotron 사용해보기


점보트론(jumbotron)의 정의 : 페이지의 가독성 증가, 콘텐츠를 강조할 때 사용

점보트론의 종류 : .container 내부에 위치한 점보트론(넓이가 100%로 설정됨), .container 외부에 위치한 점보트론(container 값의 변화에 따라 점보트론의 크기가 변함)




<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Bootstrap 101 Template</title>


<!-- Bootstrap -->

<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">

</head>

<body>

<br>

<br>

<div class="container">

<div class="jumbotron">

<h1>Hello, World!</h1>

<p>As a best practice, we highly recommend using ...</p>

<a class="btn btn-default">Watch Now!</a> <a class="btn btn-info">Tweet

it!</a>

</div>

</div>

<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->

<script

src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<!-- Include all compiled plugins (below), or include individual files as needed -->

<script src="bootstrap/js/bootstrap.min.js"></script>

</body>

</html>



3. bootstrap으로 버튼만들기


<!-- Standard button -->

<button type="button" class="btn btn-default">Default</button>


<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->

<button type="button" class="btn btn-primary">Primary</button>


<!-- Indicates a successful or positive action -->

<button type="button" class="btn btn-success">Success</button>


<!-- Contextual button for informational alert messages -->

<button type="button" class="btn btn-info">Info</button>


<!-- Indicates caution should be taken with this action -->

<button type="button" class="btn btn-warning">Warning</button>


<!-- Indicates a dangerous or potentially negative action -->

<button type="button" class="btn btn-danger">Danger</button>


<!-- Deemphasize a button by making it look like a link while maintaining button behavior -->

<button type="button" class="btn btn-link">Link</button>



http://getbootstrap.com/css/

http://www.youtube.com/watch?v=tkQpnxRkn_M

'Bootstrap' 카테고리의 다른 글

네비게이션 바  (0) 2015.01.11
반응형 그리드 시스템  (0) 2015.01.11
Posted by marvell
,

Your body language shapes who you are

http://www.ted.com/talks/amy_cuddy_your_body_language_shapes_who_you_are


단어

lifehack: 생활의 일부분을 더 쉽고 효율적으로 만들어 주는 기술

audit: 회계감사, (품질, 수준에 대한)검사

hunch: 1. (등을) 구부리다, 2. 예감

i got a hunch: 감 잡았다.

spread out: 널리 퍼지다.

ex. the animals were spread out along 38 kilometers of coast.

tweak: 1. (갑자기)잡아당기다, 비틀다, 2. (기계.시스템 등을 약간) 수정하다 (조절하다).

fascinated with: ~에 매료된

interaction: 상호작용

posture: 자세

contemptuous glance: 경멸적인 눈길

non-verbal: 비언어적인


문장

말이 상당히 빠름


do a little audit of your body and what you`re doing with your body.


labin your ankles

wrapping your ankles


if you learn to tweak this a little bit, it could significantly changes the way your life unfolds


her they are riding a ten, and the looking his shake hand

here(히) they are arriving at Number 10, and look at this lucky policeman gets to shake hands


so a handshake like of hand shake

so a handshake, or the lack of a handshake, 


can have a talking

can have us talking


so what is your body language communicating to me?

what`s mine communicating to you?


and there`s a lot of reason to believe that this is a valid way to (루) look at this.

so social scientists have spent a lot of time looking at the effects of our body language.


and we make sweeping judgement and inferences from body language.


who we hire a promote

who we hire or promote


ask adam a date

ask out on a date


Nalini Ambady, a researcher at Tufts University, shows that when pp watch 30-second soundless clips of real 

physician-patient interaction, their judgments of the physician`s niceness

predict whether or not that physician will be sued.


so it doesn`t have to do so mush with whether or not that physician was incompetent, but do we

like that person and how they interacted?


Even more dramatic, Alex Todorov at Princeton has shown us that judgments of political candidate(케리레이츠)

`s faces in just one second predict 70 percent of U.S senate and gubernatorial race outcomes


in morl cunts

emoticons


needs claim or

can lead you to claim


prejudice


how universe and all this expression

how universe and old these expression


when they cross the finish line they`ve won it doesn`t matter if they`ve never seen anyone do it they do this


opset

the opposite


they get right into the middle of the room before class even starts, 


when they sit down they raise their hands like this



'TED' 카테고리의 다른 글

The power of believing that you can improve  (0) 2014.12.22
rose goslinga crop insurance  (0) 2014.12.14
Posted by marvell
,

마르크스 - 왜 가난한 사람은 항상 가난할까?

자본주의는 정말 이상적인 체제일까?


산업혁명으로 기계부붐처럼 되어버린 노동자의 삶->자동주의가 어떻게 그들에게 영향을 미치는지(그들의 삶을 파괴하는지)


헤겔(1770-1830, 독일)의 변증법 - 세상의 모든것, 인간, 자연, 사회도 고정 불변이 아니라 정반합의 원리로 끊임없이 변한다

정반합  : 세상에 모든 것은 정,반,합의 법칙으로 변화 발전한다는 철학

헤겔은 세상을 변화 발전시키는 주체가 세계 밖에 존재하는

절대정신으로 봄(세상을 변화, 발전시키는 주체)


포이에르바하(1804-1872) - 독일의 유물론 철학자

물질이 세계를 구성하고 지배하며 이끌어 간다.


헤겔의 변증법 + 포이에르바하의 유물론 = 유물론적 변증법


파리에서 프리드리히 엥겔스를 만남


마르크스가 자본론 1권을 마칠 때까지 계속 돈을 지급해줌


멘체스터 방직공장에서는 심지어 이만한 어린애들도 매일 12시간 이상을 공장에서 힘들게 일해

1800년대 아동노동자들


학교는 꿈도 꿀 수 없지


지옥이 따로 없군


마르크스, 우리는 무엇을해야할까?


새로운 계획을 세우고 혁명을 준비해야지!


엥겔스와 함께 계급없는 사회를 만들겠다고 혁명을 준비함


1845년 벨기에 브뤼셀 프로이센 국적 포기 w/ 비밀동맹


1848년 공산당 선언(마르크스, 엥겔스)

노동자들의 현실을 보고 그 개선방향을 찾고

\자본주의 체제 안에서 변화가능한 것을을 연구했다

위기도 있고 탄압을 겪기도 했습니다.


만국의 노동자여 단결하라

하나의 유령이 유럽을 배회하고 있다.

노동자가 잃을 것이라고는 단지 자신의 사슬 뿐이다.


붉은 박사라는 악명과 새로운 사상을 만들었다는 명성을 얻게 됨

하지만 계속 추방됨


1848년 독일 신라인 신문 발간 / 폐간


1849년 영국


5년동안 궁핍한 생활 여섯 아이중 3명 죽음


런던, 마르크스가 살았던 집(박물관)


생활이 안정되자 자본론을 집필할 수 있었다

낮엔 대영도서관에서 글을 쓰고 주말에는 소풍/모임, 사교적인 사람


자본론 - 자본주의의 모순을 지적하고 그 문제점을 밝힘

국부론을 수백번 읽고, 가장많이 인용함


1867년 자본론 제 1권, 자본의 생산과정 출간


상품은 인간이 생산하고 사용하는 모든 물건 - 사용가치, 교환가치

둘 다를 가지고 있는 것이 상품


노동을 통해 생산됨

상품가치 = 상품 생산에 들어간 평균 노동시간


6시간동안 6켤레를 만든다면 신발의 가치는 1 노동시간

화폐 = 상품의 가치를 표시하는 수단


돈이면 모든지 다할수 있다는 화폐의 물질성 생겨날 것 - 경고


노동이 최고의 가치라고 주장했지만 

하지만 오히려 분업은 노동자를 기계 부품처럼 만든다고 경고




왜 쉬지 않고 열심히 일하는 노동자는 왜 항상 가난할까?




왜 놀고 먹는 자본가는 왜 점점 더 부자가 될까?



마르크스는 이 이유를 이윤이 어디에서 나오는가?에서 찾아보았다.






빵 한개를 만드는데 필요한 노동시간을 측정해보면



밀가루 1kg을 1노동시간이라고 함


빵 만개를 만들면 수명을 다하는 기계가 빵 한개를 만드는데 1 노동시간


노동력 = 1노동시간


빵을 만드는데 모두 3 노동시간


만약 1노동시간을 천원이라고 하면, 빵 한개는 3천원이다.




여기서 문제

기계나 원료는 그 가치가 그대로 인정되지만

노동자가 8시간 일했는데도 자본가는 일단으로 3천원을 줌

나머지 5천원은 자본가가 가져감



나머지 5천원, 즉 5 노동시간은 어디로 갔을까? 자본가가 가져감

이 가치를 잉여가치라고 한다.


노동자가 싫다고 못하는 이유는 자본가가 그만두려고 하면 어쩔수가 없음

노동자를 착취함으로써 자본가는 더 많은 부를 얻게 된다.



그걸 아는 자본가는 더 많이 일하게 한다.

하지만 일당은 변하지 않는다.


즉 노동자를 착취함으로써 자본가는 더 많은 부를 얻게 된다.


마르크느는 이렇게 노동시간의 연장으로 생기는 잉여가치를 절대적 잉여가치라고 했다.




이는 결국 필요한 노동시간은 줄어들고 잉여 노동시간이 늘어나는 것으로 볼 수 있다.

노동가의 이윤은 날로 싸지고 그만큼 이윤은 증가한다.(기계가 사람의 일을 대신하기 때문에

많은 사람이 필요없게 되고 노동력의 가치는 하락한다. 다른 사람으로 대체하기 쉬우며 이는 하락된 가치로 인해

자본가는 노동자를 더 쉽게 착취할 수 있다.)




착취하는 자본주의의 본질 - 착취현상은 일어난다

기계가 노동을 대신하면서 실업이 증가


일하려는 사람이 많기 때문에 임금은 하락하고


상품은 쏟아져 나오니 팔리지 않고


시장은 붕괴된다.


자본주의의 위기인 공황이 시작되고 


노동자들은 혁명을 일으킨다.


사회주의가 등장한다.


마르크스는 자본주의의 역사의 한 과정으로 봄


봉건제 이후 자본주의에서 사회주의로 넘어가는 구조를 설명


(프롤레타리아 혁명 후에)


1883년 3월 13일 사망


딸 제니와의 고백게임 중

행복 - 싸우는 것

불행 - 굴복하는 것

좋아하는 일 - 책장에 파묻히기


그의 사후 엥겔스는 1885년 자본론 2권 - 자본의 유통과정

94 - 자본주의적 생산의 총 과정


사회주의의 성서 - 성서보다 더 많이 팔린 책이라는 명예를 얻게 됨

사회주의 운동가들에 의해 신봉됨 - 그 중 마르크스의 의도를 제대로 이해한 사람이 있었을까/


그는 철학으로 세상을 변화시키려 했다.


마르크스가 붕괴할 것이라고 예언했던 자본주의 국가들은

위기를 겪었지만 잘 버티고 있다

반면에 공산주의 국가(독재와 빈곤 끝에)는 1990년대 붕괴

경쟁에서 승리한 후 자본주의 나라들은 그 마르크스와 그 책에 대해 너그러운 시선으로 가짐


자본주의는 위기때마다 모습을 변하면서 

자본론 이후  140년이 지남


자본주의가 지배했다는 이유만으로 자본론의 가치?

위기때마다 새롭게 변신하며 살아남은

마르크스가 남긴 자본주의의 경고때문 가능


자본주의에 대한 열정과 연민이 있었다.


'금융/경제' 카테고리의 다른 글

세상을 바꾼 위대한 철학자들 1  (0) 2014.12.25
돈은 빚이다4  (0) 2014.12.20
돈은 빚이다3  (0) 2014.12.20
돈은 빚이다 2  (0) 2014.12.19
돈은 빚이다  (0) 2014.12.14
Posted by marvell
,