Programming2015. 9. 19. 17:22

git과 repo 이야기

-------------


Using repo and git

git config sample, alias in git config?

sudo apt-get install g++-multilib bison g++-multilib git gperf libxml2-utils make python-networkx zlib1g-dev:i386 zip

-------------

git diff

git diff --cached


git rm <file>

git rm --cached <file> ; unstaging

git reset HEAD <file> ; unstaging

git checkout -- <file>; unmodify


git log
--oneline
--decorate
--remote
--no-merges = --max-parents=1

--stat : show modified files

--graph : ascii graph

--pretty : show commit in alternate format


--since, --after

--until,--before

--author

--committer

-------------

git gui = gitk

install xming and set putty X11 forwarding

-------------

git branching is killer feature
incredibly lightweight
git branch <branch>
git checkout -b <branch>
git merge <branch_src> ; merge branch_src to current branch
will create 'merge commit'

git fetch orgin

merge or rebase

-------------

git clone [git url]

git clone [git url] [dir name]

-------------

git pull = fetch + merge

or

git pull = fetch + rebase

or

git pull = fetch

-------------

git push orgin HEAD:remote

git push orgin HEAD:refs/for/BRANCH

refs/for = gerrit server.

Change-ID is for gerrit server.

$ git push ssh://review-android.quicinc.com:29418/PROJECT HEAD:refs/for/BRANCH
$ git push ssh://review-android.quicinc.com:29418/PROJECT COMMIT_ID:refs/changes/CHANGE_NUM

git clone git://PATH/PROJECT.git

cd PROJECT

$ git remote

quic

$ git remote -v

quic    ssh://git.quicinc.com:29418/platform/vendor/qcom/msm8992 (fetch)

quic    ssh://git.quicinc.com:29418/platform/vendor/qcom/msm8992 (push)


Adding remote repositories
git remote add [shortname] [url]
git remote add pb git://github.com/paulboone/ticgit.git

git fetch [remote-name]
git fetch pb

$revp
path=device/qcom/msm8992; project=platform/vendor/qcom/msm8992; refs=LA.BF64.1.2.1
git push [remote] HEAD:refs/for/BRANCH
git push quic HEAD:refs/for/LA.BF64.1.2.1 ; 이 command가 먹힐지 궁금

git remote rename pb paul
$ git remote
orgin
paul

-------------

git format-patch HEAD^
scripts/checkpatch.pl 0001-xxxx.patch
or
git show HEAD | scripts/checkpatch.pl -

git format-patch FROM...TO
  • How to apply patch
git apply --stat PATCH.patch ; just to check
git apply PATCH.patch
patch -p1 <PATCH.patch
git am < 000*
git am -3 < 

-------------

repo init

-u url
-m manifest, otherwise default.xml
-b specify revision branch

repo sync
[project list]
at first = git clone
already done = git remote update; git rebase orgin/<branch>

repo start <branch> -all
starting from the revision specified in the manifest.
git checkout (starting from the revision)
        + git branch <branch>

repo upload
[project list]
git push

repo forall -c [git commands]

-------------

git command alias for bash

### Git command

alias gbr='git branch'

alias gcm='git commit'

alias gco='git checkout'

alias gst='git status'

alias gd='git diff'

alias gdf='git diff'

alias gad='git add'

alias gch='git cherry-pick'

alias gcl='git clean -x -f -d'

alias gf='git format-patch'

alias ghe='git help'

alias gres='git reset --hard HEAD'

alias gr='git rebase'

alias gre='git rebase'

alias gl='git log --oneline --decorate'

alias gll='git log --stat --decorate'

alias gs='git show'

alias gbl='git blame'

------------

'Programming' 카테고리의 다른 글

Book - EXCEL Hacks  (0) 2015.09.24
file/directory 비교 tool - Meld  (0) 2015.09.24
bash alias  (0) 2015.09.19
codeaurora.org and linaro.org  (0) 2015.09.13
Natural Language Processing with Python  (0) 2015.08.24
Posted by 쁘레드
Programming2015. 9. 19. 16:33

Linux BASH에서 유용한 alias들


----------

## get rid of command not found ##

alias cd..='cd ..'


## a quick way to get out of current directory ##

alias ..='cd ..'

alias ...='cd ../../../'

alias ....='cd ../../../../'

alias .....='cd ../../../../'

alias .4='cd ../../../../'

alias .5='cd ../../../../..'


alias grep='grep --color=auto'

alias egrep='egrep --color=auto'

alias fgrep='fgrep --color=auto'


#Start calculator with math support

alias bc='bc -l'

# install  colordiff package :)

alias diff='colordiff'

#Make mount command output pretty and human readable format

alias mount='mount |column -t'


alias redo='source ~/.bash_profile'

alias root='cd ~<ID>'

alias cls='clear'

alias vi='vim'

alias emacs="emacs -nw"

#eval `dircolors -b ~/.dir_colors`

alias ls="ls --color=auto"

alias ll="ls -al --color=auto"

alias rd='rdesktop -g 1152x900 -k en-us -a 24 -s sound:local DESKTOP_NAME:3389 -u <ID>-d ap &'

alias do_synergy='synergyc <IP_ADDRESS>'

alias build_kernel='m -j8 ONE_SHOT_MAKEFILE=build/target/board/Android.mk bootimage'

alias build_all='make -j12 > buildlog.txt 2>&1'

alias git_config_quic='git config user.email <QUIC_EMAIL>'


#######################

### Stuff for Linux ###

#######################

#if [ `uname` = "Linux" ] ; then

#  source /usr/local/projects/l4linux/.bash_l4linux

#  source /prj/l4linux/.bash_nativelinux -a 2.1 -g 3.4.4 # for 7200 Native Linux

#  source /prj/l4linux/.bash_l4.gcc344                  # for 6800 Linux on L4

  alias work='cd /local/mnt/workspace/<ID>'

  alias work2='cd /local/mnt2/workspace2/<ID>'

  alias work3='cd /local/mnt/workspace3/<ID>'

  alias setenv='source build/envsetup.sh'

  alias l8974='lunch msm8974-userdebug'

  alias l8226='lunch msm8226-userdebug'

  alias l8x26='lunch msm8226-userdebug'

  alias l8084='lunch apq8084-userdebug'

  alias l8994='lunch msm8994-userdebug'

  alias l8916='lunch msm8916_64-userdebug'

  alias l8992='lunch msm8992-userdebug'

  alias l8996='lunch msm8996-userdebug'

  alias msm=msm8992

#fi


### Git command

alias gbr='git branch'

alias gcm='git commit'

alias gco='git checkout'

alias gst='git status'

alias gd='git diff'

alias gdf='git diff'

alias gad='git add'

alias gch='git cherry-pick'

alias gcl='git clean -x -f -d'

alias gf='git format-patch'

alias ghe='git help'

alias gres='git reset --hard HEAD'

alias gr='git rebase'

alias gre='git rebase'

alias gl='git log --oneline --decorate'

alias gll='git log --stat --decorate'

alias gs='git show'

alias gbl='git blame'


### Project path

alias av="cd frameworks/av"

alias af="cd frameworks/av/services/audioflinger"

alias hal="cd hardware/qcom/audio/hal"

alias nuplayer="cd frameworks/av/media/libmediaplayerservice/nuplayer"

alias msm="cd kernel/sound/soc/msm"

alias misc="cd kernel/drivers/misc/qcom/qdsp6v2"

alias audio_ion="cd kernel/drivers/soc/qcom/qdsp6v2"

alias codec="cd kernel/sound/soc/codecs"

alias dt="cd kernel/arch/arm64/boot/dts/qcom"

alias dtsi="cd kernel/arch/arm64/boot/dts/qcom"

alias defconfig="cd kernel/arch/arm64/configs"

alias kernel_driver="cd kernel/drivers/soc/qcom"

alias mm-audio="cd vendor/qcom/proprietary/mm-audio"

alias board="cd vendor/qcom/proprietary/common"

alias acdbdata="cd  vendor/qcom/proprietary/mm-audio/audcal/family-b/acdbdata"


#handy

alias path='echo -e ${PATH//:/\\n}'

alias now='date +"%T'

alias nowtime=now

alias nowdate='date +"%d-%m-%Y"'

# Stop after sending count ECHO_REQUEST packets #

alias ping='ping -c 5'

# Do not wait interval 1 second, go fast #

alias fastping='ping -c 100 -s.2'

#show open ports

alias ports='netstat -tulanp'

# distro specific  - Debian / Ubuntu and friends #

# install with apt-get

alias apt-get="sudo apt-get"

alias updatey="sudo apt-get --yes"


# update on one command

alias update='sudo apt-get update && sudo apt-get upgrade'

## pass options to free ##

alias meminfo='free -m -l -t'


## get top process eating memory

alias psmem='ps auxf | sort -nr -k 4'

alias psmem10='ps auxf | sort -nr -k 4 | head -10'


## get top process eating cpu ##

alias pscpu='ps auxf | sort -nr -k 3'

alias pscpu10='ps auxf | sort -nr -k 3 | head -10'


## Get server cpu info ##

alias cpuinfo='lscpu'

'Programming' 카테고리의 다른 글

file/directory 비교 tool - Meld  (0) 2015.09.24
git 과 repo  (0) 2015.09.19
codeaurora.org and linaro.org  (0) 2015.09.13
Natural Language Processing with Python  (0) 2015.08.24
파이썬 오디오 인식 - pydub, audiogrep  (0) 2015.08.24
Posted by 쁘레드
추천영화드라마2015. 9. 18. 16:17

감히 누가 이 포스터를 보고 꼭 봐야겠다 하는 느낌이 들까. 부담스러워서 보기를 계속 꺼려하다가 한 봤더니 상당히 이상하며 상당히 재밌고 상당히 섹시하고 상당히 인간의 사랑에 대한 철학이 묻어 있는 영화였다.


애플의 시리같은 음성인식 시스템이 전 세계를 지배하고 있는 시대를 배경으로 합니다. 어느날 첫번째 인공지능 OS인 OS1이 공개되고 주인공도 업그레이드 하게 됩니다. 포스터에서는 안느껴지지만 약간 IT Sci-fi같은 느낌이 납니다. 혼자만 나오는 씬이 많긴한데 주변 도시와 자연에 감동적으로 아름답게 잡아내는 것도 특이합니다.


OS를 개인 preference에 맞쳐서 config하게되고 음성은 여자로 마추자 사만타라는 여자가 나타납니다. 물론 이 사만타역을 스칼렛 요한슨이 했지요. 음성 연기가 되는 사람은 연기내공이 없고는 힘드는데 잘 했습니다. 인성인식만이 아니라 인공지능을 추가하면서 나타나는 문제를 다루면서 인공지능에 대한 재미와 공포도 느껴집니다. 사랑은 누군가 집착하며 결국 누군가 떠나게 된다는 이런 철학도 보이고요.

하여간 아주 이상하며 아주 재밌는 영화입니다.


이 감독이 아주 특이한 사람이네요.



포스커가 멜깁슨의 오래된 사랑영화인 Forever Young과 닮지 않았는지.


------------

http://movie.naver.com/movie/bi/mi/basic.nhn?code=101950

https://en.wikipedia.org/wiki/Her_(film)

http://www.imdb.com/title/tt1798709/

------------



Posted by 쁘레드
경제이야기/Stock2015. 9. 18. 15:00

오늘 엘렌의 발표를 통해서 9월에도 이자율을 올리지 않고 동결하기로 했습니다. 이자율을 올리면 어떻게 될꺼라는 예측성 기사들이 난무하는데 그 기사들 사이에서는 서로 상반된 얘기까지 있어서 정말 햇갈리지요.

과거 2004년부터 2007년직전까지 계속 이자를 올렸을때 어떻게 됐나는 찾아보니 재밌는 결론이 나옵니다.



다우지수표입니다. 초기에는 폭락과 과매도에 따른 반등도 나오면서 하락으로 반전하나 싶더니 2004년 말부터는 대세상승세를 타고 있는 모습으로 보입니다. 



더 재밌는것은 같은 기간에 기술주 나스닥을 넣어보니 더 재밌습니다. 나스탁은 초기에 다우에 비에서 더 큰 폭락을 했었네요. 하지만 2005년부터 다시 폭등을 이어갑니다.


과거일이 현재에도 벌어지리라는 법은 없지만, 아마도 이번에도 비슷한 양상이 나올듯. 이번년에 지나기 전에 1번 올릴테고 내년에는 4번정도 올릴것으로 예상이 되고 있는데 년말에는 주식에서 손을 땠다가 내년 여름까지는 잘 관조하는게 좋을거라 생각이 드네요.


--------------

Why a rate hike might actually boost U.S. economy

http://money.cnn.com/2015/09/21/investing/fed-rate-hike-economy-janet-yellen/index.html?iid=hp-stack-dom


Posted by 쁘레드
IT이야기2015. 9. 16. 22:45

HP는 이번년에 두 회사로 분할(split)계획이 있지요. Split하기전에 가장 중요한 것은 몸집을 줄이는 것인데 HP가 이미 발표한 55,000에다가 추가고 33,300명을 layoff한다는 기사가 있었습니다. 뭔 사람을 이렇게 많이 짜르나 하고 봤더니 현재 30만명이 넘는 임직원을 거느리고 있는 삼성전자보다 더 큰덩치 괴물이었네요. 어쨋거나 이렇게 큰 괴물이 30%정도 인원을 정리하게 될것 같네요.


20세기후반에 IT버블을 만들고 그 후에도 계속 승승장구하던 기업들이 나가떨어지는 것을 보면서 세상이 많이 변했구나 생각이 듭니다.


Key stats and ratios

Q3 (Jul '15)2014
Net profit margin3.37%4.50%
Operating margin4.78%6.45%
EBITD margin-11.77%
Return on average assets3.29%4.80%
Return on average equity12.73%18.57%
Employees302,000-
CDP Score-100 A



-----------------

HP to cut up to 33,300 jobs over next three years

REUTERS - Hewlett-Packard Co (HPQ.N), which plans to split into two listed companies this year, said it expected to cut about 33,300 jobs over three years as the tech pioneer adjusts to falling demand.

The latest cuts, on top of 55,000 layoffs previously announced under Chief Executive Meg Whitman, will mostly be in HP's faster-growing corporate hardware and services operations, to be spun off as Hewlett Packard Enterprise, or HPE, on Nov. 1.

The latest cuts indicate a reduction of the company's total workforce by at least 10 percent, based on its most recent number of more than 300,000 employees as of Oct. 31, 2014, and reflecting the previously announced reduction of 55,000.

Up to 30,000 of the layoffs will be in the enterprise business and up to 3,300 in HP Inc, the company that will continue to make personal computers and printers, HP said in a regulatory filing on Wednesday.

The restructuring will result in pretax charges of about $2.7 billion at HPE and $300 million at HP Inc, which has been hit hard by a relentless decline in sales of PCs.

The charges will be taken between the current quarter and the end of fiscal 2018, ending Oct. 31.

http://in.reuters.com/article/2015/09/16/hp-redundancies-idINKCN0RG0AO20150916

Posted by 쁘레드
추천영화드라마2015. 9. 16. 10:39

지난주에 같은 주제를 가진 두 가지 영화를 봤습니다.

중년남성의 타락에 관한 영화지만, 나도 그렇게 되어야지 생각하지 말고 반대로 자신을 돌아보는 기회가 된다면 교훈이 되는 영화일수도 있겠습니다.


1. 지퍼(Zipper, 2015)

젊고 똑똑한 변호사 남편이 등장합니다. 애도 있지요. 권력을 좋아하는 자가 권력의 단맛을 좋아하는 것이야 당연하고 권력을 좋아하는 남자가 여자를 안좋아하기는 정말 힘들지요. 다 줄줄이 사탕인데. 에스코트 서비스를 한번 이용해보더니 아주 여기에 빠져버립니다. 결국 FBI조사까지 받을 위기에 처하지만 이 위기를 잘 넘기고 상원의원까지 되서 더 큰 물에서 논다는 이야기. 역시 정치를 하려면 대도(도둑놈)가 되어야.


감독이 여자감독입니다. 남자의 은밀한 성욕과 감정을 표현을 정밀하게 하는것을 보면서 남자를 잘 이해하고 있는 무서운 여감독이구나 하는 생각이 들었습니다.


http://movie.naver.com/movie/bi/mi/basic.nhn?code=129004



여자 조연중에서 알렉산드라 브렉켄릿지 (Alexandra Breckenridge) 상당히 매력적입니다. youtube에 찾아보니 참 일반적인 몸매인데, 얼굴에 색기가 쫘르륵 흐르며 카메라 앵글이 잘 살린것 같습니다.


2. 로프트(The Loft, 2015)

벌써 두번째 remake되었다고 하네요. 원작이 처음 나왔을때는 상당히 충격적이었던듯.

유명한 주인공들이 많이 나오는 것으로 봐서 배우들도 시나리오를 상당히 좋아하는듯.

부유한 남자들에게는 돈을 이용해서 젊은 여자들과 욕구를 해결하고자하는 본능이 자극되기 쉽지요. 상대를 찾기도 쉽지않거니와 찾았다 하더라도 크레딧카드로 결재해야하는 경우가 많으니 나중에 들어날까 하는 두려움이 있는데 이런것을 깔끔하게 해결해준 친구가 등장합니다. 로프트라고 부르는 건물의 은밀한 방(아파트같은)을 만들어서 친구들과 공유하게 됩니다. 처음부터 반기는 친구부터 절대 이용하지 않겠다는 친구. 결국 다 같이 열열히 이용하는 한배를 탄 동지가 되어버리지요.


반전의 반전을 꾀한 영화인데 20년전에야 놀라웠겠지만, 아주 놀랍지는 않았음.

예쁜데 세상물정 모르고 순진하기까지 한 여자들이 아직도 있는지 모르겠네요. 가정있는 남자가 자기만을 사랑해줄거라고 믿는 여자도 정말 문제임.


http://www.imdb.com/title/tt1850397/


비비

Posted by 쁘레드

SBS '그것이 알고싶다'가 PD수첩이 망한 후로는 탐사보도/사회고발 프로그램분야에서 원톱정도 되는것 같습니다.

대한민국에 물을 '정의'가 있는지 되묻고 싶습니다.


1000회에 나온 SK 최태원, 대한항공 조현아. 금수저 물고 태어나 세상살이에 대해서 아무것도 알지 못하고, 애비어미도 못배워서 애들도 제대로 못가르친 탓인지 스스로 자기가 왜 잘못했는지 뭘 잘못하고 있는지도 모르는 사람들이 잘먹고 잘사는 사회가 무슨 정의가 있고 미래가 있는지. 최소한 금수저물고 태어났으니까 잘 살더라도 소리소문없이 잘 살다가야지, 이렇게 대놓고 대기업총수에다 돈으로 바르며 법 위에 돈이 있다고 증명하는 사람들을 가만이 두는 법치국가가 이세상에 존재한다니.


1001회 효성 조현준 조현문, 이명박과 그 가족관계들. 효성에서 사실을 왜곡했다고 법적대응한다는데, 제발좀 법적대응좀 해줬으면 좋겠다. 완전 사회에서 매장될수 있게.



3부도 기대됩니다.


----------------


Posted by 쁘레드
Lord of Rings를 오디오북처럼 읽어주는 인터넷 라디오가 있습니다.
수준은 blockbuster radio입니다. SoundCloud.com 오디오의 Youtube정도 되는것같습니다. 예전에 자주 들렀었는데 요즘 더 잘 변해있네요.

https://soundcloud.com/inkmore/sets/lord-of-the-rings-radio




Posted by 쁘레드
재밌는세상2015. 9. 13. 07:09

밋 롬니, 도날드 트럼프등 기업으로 엄청난 부를 이룬 사람들의 재산공개와 과거 전력을 보면, 자본가들이 얼마나 무서운 사람들인가 하는 것을 알수 있습니다.

이름바 꼬리자르기. 자신의 재산/자산을 엄청나게 많지만 회사들은 잘게 나누고 하나가 안좋다면 회사를 쉽게 날려버리는 꼬리자르기 작전으로 자신의 엄청난 재산을 안전하게 더 불리고 있습니다. 심지어 일부러 파산 시켜서 더 많은 돈을 챙기기도 합니다. 가진 재산과 소득에 비해 세금은 너무 안내고 있지요.


자본주의에 물든 사람들에게는 너무나 자연스러운 전략일수 있겠지만, 이미 죽을때까지 쓸수없는 돈을 가지고 있으면서도 거기에 만족하지 않고 계속 탐욕만 키우는 모습입니다. 이런 성향을 보면 기업만 살린다고 진짜 경제가 산다고 믿는것은 너무 자본주의를 모르는 사람들인것 같습니다. 경제 숫자는 좋아질수 있지만 그것이 진짜 노동자들의 소득을 늘리고 소비를 살릴수 있습니까?


-------------------

Everything you want to know about Donald Trump's bankruptcies

Donald Trump brags about how well his businesses have fared in bankruptcy. And in fact, no major U.S. company has filed for Chapter 11 more than Trump's casino empire in the last 30 years.

"I have used the laws of this country ... the [bankruptcy] chapter laws, to do a great job for my company, for myself, for my employees, for my family," he said during the first Republican presidential debate on August 6.

Trump claims that successful businesses file for bankruptcy all the time. At the debate he said "virtually every person that you read about on the front page of the business sections, they've used the [bankruptcy] law."

But the facts don't back that comment up.

Despite high profile examples, including General Motors (GM), Lehman Brothers and most of the nation's major airlines, fewer than 20% of public companies with assets of $1 billion or more have filed for bankruptcy in the last 30 years, according to data from Bankruptcy.com and S&P Capital IQ.

Trump has never filed for personal bankruptcy. But he has filed four business bankruptcies, which Bankruptcy.com says makes Trump the top filer in recent decades. All of them were centered around casinos he used to own in Atlantic City. They were all Chapter 11 restructurings, which lets a company stay in business while shedding debt it owes to banks, employees and suppliers.

Related: Trump - Tax the rich more

He makes no apologies for having much of his debt wiped out. "These lenders aren't babies. These are total killers," he said at the debate. "These are not the nice, sweet little people."

Here's a look at Trump's bankruptcy track record.

1. Trump Taj Mahal, 1991

Trump's first bankruptcy filing was probably the most personally painful for him. To come up with the funds he needed, he sold a 282-foot yacht, as well as the Trump Shuttle, the airline he operated at the time that flew between Washington, D.C., New York and Boston, according to media reports at the time. He had to give up half of his ownership stake in the Trump Taj Mahal, but he did retain control of the property. His largest creditor was financier Carl Icahn, who held $400 million in bonds. Now Icahn is Trump's pick for Treasury secretary should he be elected.

2. Trump Castle Associates, 1992

In less than a year he was back in bankruptcy court for his other Atlantic City casinos. This bankruptcy included the Trump Plaza Hotel in New York, the Trump Plaza Hotel and Casino in Atlantic City as well as the Trump Castle Casino Resort. He gave up half his interest in the New York Plaza to Citibank, but retained his stake in the casinos.

3. Trump Hotel & Casino Resorts, 2004

Trump didn't go back to bankruptcy court again until November 2004, when he filed to shed debt at his various Atlantic City casinos and a riverboat in Indiana. It was another quick trip through bankruptcy court; the company shed $500 million in debt and emerged from bankruptcy the following May. Trump turned over majority control of the company to his bondholders but remained the largest single shareholder, and he once again kept control of the casinos.

4. Trump Entertainment Resorts, 2009

His most recent bankruptcy came in 2009, after the company missed a $53.1 million bond payment. That was pretty much the end of the road for Trump in Atlantic City. While his name remained on three casinos, he resigned from the board and gave up his remaining stake in the company.

"I had the good sense, and I've gotten a lot of credit in the financial pages, seven years ago I left Atlantic City before it totally cratered," he said during the debate.

The two Atlantic City casinos that still had the Trump name filed for bankruptcy yet again in 2014. At the time Trump made sure people knew he was no longer running the company, and sued to have his name removed.

http://money.cnn.com/2015/08/31/news/companies/donald-trump-bankruptcy/index.html

-------------------

일부 브랜드 전문가들은 미국 부동산 사업에 대한 트럼프 회장의 관심이 식은 이유는 이전에 라이선스 계약을 맺은 프로젝트의 결과가 고르지 못했기 때문이라고 시사했다.

일부 프로젝트의 공사가 마무리되지 못하거나 압류로 넘어가면서 아파트를 분양 받은 수백 명이 트럼프 회장과 부동산개발업체를 상대로 소송을 제기했다.

트럼프 회장의 미국 부동산 브랜드 계약이 소강상태인 사실은 ‘트럼프 왕국’의 특징을 잘 보여준다. 트럼프 그룹은 세계 각지에 있는 골프 리조트와 부동산에서 리얼리티TV 프로그램 ‘어프렌티스’와 라이선스 사업까지 다양한 분야에 진출해 있다. 트럼프 왕국은 트럼프 회장의 개성 있는 성격을 기반으로 세워졌다.

...

트럼프 브랜드 프로젝트는 경기가 침체 국면에 접어들면서 플로리다주 탬파와 포트로더데일, 뉴욕 등 여러 도시에서 재정적 어려움에 직면했다. 올해 2월에는 ‘트럼프 타워스 필라델피아’라는 주상복합단지를 건설할 부지를 소유한 부동산회사 한 곳이 구조조정 후 프로젝트를 재개하겠다며 파산보호를 신청했다.

트럼프 회장은 트럼프 브랜드 프로젝트들이 재정난을 겪은 이유를 부동산개발업체와 경기침체 탓으로 돌렸다. 트럼프 회장은 이런 사태들 때문에 미국에서 트럼프 브랜드 이미지가 실추되지 않았다고 주장한다.

-------------------

파산한 부동산 재벌 도널드 트럼프

입력 : 2009.02.18 10:15 | 수정 : 2009.02.18 13:08


미국의 부동산 재벌 도널드 트럼프가 설립한 카지노 업체 '트럼프 엔터테인먼트 리조트(TRMP)가 파산신청을 했다. 뉴욕에 자신의 이름을 딴 고급 주상복합 건물을 세우는 등 그동안 부동산 투자의 귀재로 불려왔던 트럼프가 전 세계적 금융위기에 무너진 것이다.

AP통신에 따르면 TRMP는 17일(현지시간) 뉴저지주 파산법원에 파산보호를 신청했다. TRMP가 파산보호를 신청하면서 이 회사가 소유한 자회사 9개도 함께 파산보호의 대상이 됐다. 뉴저지주 애틀랜틱시티에서 트럼프 마리나호텔 카지노와 트럼프 타지마할 카지노, 트럼프 플라자호텔 카지노 등 3개의 카지노를 운영하는 이 회사는 지난 2004년 이후 두 차례 파산보호 신청을 한 적이 있어 이번이 세번째다.

지난해 애틀랜틱시티의 카지노 수입(작년 12월 기준)은 2007년 같은 달보다 18.87% 정도 떨어졌다. 올 1월에도 9.4% 줄었고, TRMP의 주가도 1년 전 주당 4달러 수준에서 23센트로 폭락했다. 때문에 TRMP는 작년 12월1일이었던 미화(美貨) 5310만달러의 채권 이자 지급 기한을 맞추지 못해 채권단과 협의를 벌여왔으나 합의에 이르지 못하고 파산보호 신청을 하게 됐다. TRMP의 채무는 17억4000만달러, 자산은 20억6000만달러 규모인 것으로 알려졌다.

하지만 이 회사의 수석회계 책임자인 마크 훌리아노는 이날 낸 성명을 통해 "이번 파산보호신청으로 일상적인 경영은 아무런 영향을 받지 않은며 우리의 운영체계와 철학만이 변경될 것"이라고 밝혔다.

한편 TRMP 지분의 28%를 소유한 도널드 트럼프는 AP통신과의 인터뷰에서 "TRMP가 내 재산의 1%도 되지 않는다"며 "회사명에 내 이름이 있다는 사실 말고는 나는 아무런 관련이 없다"고 말했다. 그는 호텔, 카지노, 리조트, 골프장 등으로 사업영역을 확대하는 등 총 재산이 30억 달러에 달하는 것으로 알려졌다.



Posted by 쁘레드
IT이야기2015. 9. 13. 06:21

막말로 유명한 공화당 유력 대선후보 트럼프가 피오리나의 얼굴에 대한 상당히 공격적인 막말을 쏟아냈습니다. 얼굴이 이상하긴 하지요. 젊었을때 예쁜사진도 있었는데 왜 저렇게 됐을까요. 늙고 싶지 않은 탐욕이 더 괴물을 만들도 있다는 생각좀 해 봤으면.


트럼프가 대놓고 까는것 보면, 트럼프 눈에도 배울게 하나도 없는 사람이로 보이나 봅니다. 피오리나가 저 자리까지 가기까지 열심히 노력은 했을거라고 보지만 110%이상의 운발로 저기에 있다는 생각을 스스로 하고 가진것을 나누는 삶을 사는게 어떨까 하는 조언을 주고 싶습니다. 트럼프보다 나은점이 하나도 안보이네요.


HP말어먹은 전력으로도 저 위치에 있을수 있다니... 정신줄 놓은 사람들 너무 많다.



-------------------

https://ko.wikipedia.org/wiki/%ED%9C%B4%EB%A0%9B_%ED%8C%A9%EC%BB%A4%EB%93%9C

루슨트 테크놀로지의 칼리 피오리나가 HP의 CEO로 뽑힌 것은 예상 밖이었다. 피오리나가 1998년 포춘지로부터 '미국에서 가장 영향력 있는 여성 경영인'으로 뽑힌 스타 경영인이긴 하지만, 컴퓨터 분야에 전혀 경험이 없었기 때문이다. 그러나 CEO 선발을 책임진 HP의 이사 4명은 피오리나의 비전과 열정, 지도력에 높은 점수를 줬다. 피오리나는 특히 전술적인 목표를 세워 계획한 일이 실제로 이루어지게 하는 능력이 있다는 평가를 받았다. HP의 숨은 실력자이며 선발위원 중 한 명인 딕 핵본은 피오리나에 대해 "제2의 잭 웰치가 될 수도 있겠어"라고 말할 정도였다. 피오리나는 주요 주주들의 반대를 이겨내며 HP와 컴팩의 합병(2002년)을 성사시키는 등 HP의 부활을 주도하며 선발위원들의 기대에 부응하는듯 했다.[2]

그러나 2002년 이사회와 주주들의 강한 반발에도 불구하고 경쟁업체인 컴팩을인수했으나 예상보다 못한 수익 부진으로 고전해왔고, 미래 전략을 둘러싼 이사회와의 이견으로 2005년 2월, 칼리 피오리나는 CEO를 사임한다.[3]

-------------------

Forget what Trump says about Fiorina's face. Her HP record is the issue

And check out the website CarlyFiorina.org. Someone had the foresight to register that domain name last December.

The site features this text: "Carly Fiorina failed to register this domain. So I'm using it to tell you how many people she laid off at Hewlett-Packard. It was this many."

That's followed by line after line of :-( sad face emoticons. By the time you finish scrolling down, there's this kicker: "That's 30,000 people she laid off. People with families."

Fiorina has already defended her time at HP on numerous occasions.

After all, she's been through this before and seems clearly prepared to tackle any tough questions about HP.

http://money.cnn.com/2015/09/10/news/companies/carly-fiorina-donald-trump-hp-hewlett-packard/index.html?iid=hp-toplead-dom


-------------------

칼라피오리나의 잘못 끼운 첫단추, 컴팩과 HP 합병 - 아이엠데이

www.iamday.net/apps/article/talk/2316/view.iamday
Translate this page
특히, 이쯤 영입 된 칼리 피오리나는 HP가 나아가야 할 비전을 제대로 설정하지 못하면서 위기의 시발점 역할을 하기 시작했다. 칼리피오리나 내부 기득권을 깨부수다.

칼라 피오리나의 HP 개혁의 칼을 휘두른 결과? - 아이엠데이

www.iamday.net/apps/article/talk/2310/view.iamday
Translate this page
HP가 칼리 피오리나를 선택한 것은 당시의 HP에 비전이 없었기 때문이다. 단순하게 현실에 안주하고 시장을 유지하려는 저성장 경영의 대표적인 사례였다.

HP 피오리나 축출의 내막 – Sciencetimes

www.sciencetimes.co.kr/?news=hp-피오리나-축출의...
Translate this page
짐작컨대 피오리나는 단순히 해고를 당한 것이 아니라 탄핵을 받은 것 같다. 지난 5년반 동안 미국 실리콘밸리 신화의 최고자리에서 군림했던 HP의 회장겸 CEO 칼리 ...

HP 피오리나 회장 경영실적 부진으로 축출당해 - 오마이뉴스

www.ohmynews.com/NWS.../at_pg.aspx?...
Translate this page
OhmyNews
Feb 10, 2005 - [뉴욕=정명수 특파원] 휼렛패커드(HP) 이사회가 칼리 피오리나를 전격 축출했다. 9일 HP는 칼리 피오리나 회장 겸 CEO가 물러난다고 발표했다.


'IT이야기' 카테고리의 다른 글

스마트폰 자동화 앱  (0) 2015.09.26
HP 3만명이상 추가 정리해고  (0) 2015.09.16
퀄컴이 키우는 밴쳐회사  (0) 2015.09.12
퀄컴과 인텔 주가 비교  (0) 2015.09.11
내년 스마트폰 판매량 예상  (0) 2015.09.11
Posted by 쁘레드