[증시의 '까마귀'…주가하락의 원흉으로 매도당해]

증권업계에서 약세론자는 대접을 못받는다. 전망이 들어맞아도 오히려 기분나빠하는 반응을 참아야 한다. 약세론자가 적극성을 띠면 시장을 교란했다는 오명을 뒤집어 쓸 수도 있다. 그중 가장 적극적인 공매도 세력은 무려 400년간 범죄자 취급을 받아왔다.

1609년 네덜란드의 한 상인이 동인도회사 주식에 대한 공매도 계약을 맺었고 주가가 폭락했다. 이에 네덜란드 금융당국은 세계 최초로 공매도에 대한 금지 조치를 취했다.

이는 400년이 지난 지금도 비슷하다. 금융위기의 진원지인 미국을 비롯해 영국과 일본, 호주 등 세계 각국이 주가하락을 막기 위해 잇따라 공매도 금지조치를 취하고 있다. 약세장, 금융위기가 올 때마다 주가하락에 베팅하는 공매도 세력이 매도당하는 것도 비슷하다.

1929년 증시가 급락하자 후버 대통령이 공매도 세력에게 비난을 퍼부었고 '블랙 먼데이' 1987년에도 역적으로 매도당했다. 1997년 외환위기때는 말레이시아 정부가 크레디 리요네 은행이 환율 폭락을 조장한 세력이라고 공격한 사례도 있다.

그러나 하락이 예상되는 주식을 빌려 판 다음 더 낮은 가격으로 되사서 갚는 공매도 방식은 전통적인 리스크 헤지수단으로 합법적인 투자방식이다. 이에 대해 전문가들은 만약 공매도 세력이 어떤 불법행위를 저질렀다면 벌써 법적 처벌을 받았겠지만 그런 사례는 없다고 꼬집는다.

프루덴트 베어 펀드의 데이비드 타이스 매니저는 "공매도 세력은 주식이 과대평가되고 있음을 알리고 신용과잉 상태와 시장이 얼마나 위험한지를 투자자와 금융당국에 알리는 사람들"이라며 옹호했다.

울고있는 까마귀에게 돌을 던져봤자 누군가의 죽음과 까마귀는 직접적인 관련이 없다. 단지 기분 나쁜 데 대한 분풀이에 불과하다.

MIT슬로언 경영대학원의 폴 애스퀴스 교수는 "기업이 다른 이유없이 공매도 때문에 파산했다고 믿을 만한 학술적인 근거는 없다"고 말한다.

공매도에 깊이 연관된 헤지펀드들도 리먼브러더스의 파산보호 신청이나 모간스탠리의 주가 하락의 원흉으로 공매도를 비난하는 것에 반박한다. 이미 거대 투자은행들이 레버리지를 과도하게 사용했고 주가도 과대 평가돼있었다는 주장이다.

폴 애스퀴스 교수는 "리먼은 스스로 문제를 안고 있었고 공매도 세력은 단지 그 자리에 있었을 뿐"이라며 "(공매도가 금지되고)리먼이 인수자를 찾았을때 그들의 재무제표를 면밀히 살펴보고는 아무도 사려 들지 않았다. 이것은 결국 공매도 세력이 옳았음을 뜻한다"고 말했다.

웹 브라우져 설정

  1. "도구 -> 인터넷 옵션 -> 언어" 메뉴를 선택한다.
  2. 영어[en]와 한국어[ko]를 추가하고 원하는 언어를 가장 상단에 위치한다.

JVM 설정

  • 일반적으로 LANG 환경 변수를 설정해 주면 자동으로 설정이 된다.
<PRE>locale -a Solaria unix 명령어로 지원 가능한 encoding을 확인한다.
env LANG ko csh에서 Encoding을 설정한다. (KSC5601, EUC-KR)
LANG=ko ksh에서 Encoding을 설정한다. (KSC5601, EUC-KR)
</PRE>
  • JVM 옵션 설정 (UTF-8, ISO-8859-1, KSC5601)
<PRE>-Dfile.encoding=8859_1 필수 항목
-Dfile.client.encoding=8859_1
-Dclient.encoding.override=8859_1 JVM 버전에 따라 (사용안함)
</PRE>
  • JSP를 사용하여 JVM 옵션 확인 (encoding.jsp)
<PRE>file.encoding = <%= System.getProperty("file.encoding") %><br>
file.client.encoding = <%= System.getProperty("file.client.encoding") %><br>
client.encoding.override = <%= System.getProperty("client.encoding.override") %><br>
</PRE>

HTML 설정

HTML 파일을 UTF-8로 만들어 저장한다.

<PRE><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</PRE>

XML 설정

XML 파일을 UTF-8로 만들어 저장한다.

<PRE><?xml version="1.0" encoding="UTF-8" ?>
</PRE>

JSP 설정

JSP 파일을 UTF-8로 만들어 저장한다.

<PRE><%@ page pageEncoding="UTF-8" %>
<%@ page contentType="text/html;charset=UTF-8" %>
</PRE>

Servlet 설정

HTTP 요청의 인코딩 지정

<PRE>request.setCharacterEncoding("UTF-8");
</PRE>

HTTP 응답의 인코딩 지정

<PRE>response.setContentType("text/html; charset=UTF-8");
</PRE>

web.xml 설정

<PRE><mime-mapping>
<extension>html</extension>
<mime-type>text/html;charset=UTF-8</mime-type>
</mime-mapping>
</PRE>

Default Oracle Database 문자셋

  • Default Oracle Database 문자셋 : UTF-8 (AL32UTF8), 한국에서는 KSC5601 (KO16KSC5601)
  • AL32UTF8, KO16KSC5601 (KSC5601), WE8ISO8859P1 (8859_1)
  • Default Oracle Database 문자셋 확인 방법
<PRE>sqlplus system/manager

select parameter || ' : ' || value parameter_value
from NLS_DATABASE_PARAMETERS
where parameter = 'NLS_CHARACTERSET'
or parameter = 'NLS_NCHAR_CHARACTERSET';

select name || ' : ' || substr(value$, 1, 40) parameter_value
from sys.props$
where name = 'NLS_CHARACTERSET';

select parameter || ' : ' || value parameter_value
from NLS_INSTANCE_PARAMETERS, V$NLS_PARAMETERS, NLS_SESSION_PARAMETERS;
</PRE>
  • Oracle Database 문자셋 변경 방법
환경 변수 또는 %ORACLE_HOME%/dbs/init[SID].ora 을 설정한다.
<PRE>NLS_LANG='American_America.Ko16ksc5601'
ORA_NLS33='$ORACLE_HOME/ocommon/nls/admin/data'
NLS_DATE_FORMAT='YYYY-MM-DD'
</PRE>
  • DriverManager에서 문자셋 설정 방법
<PRE>java.util.Properties props = new java.util.Properties();
props.put("charSet", "KSC5601" );
DriverManager.getConnection(dbUrl, props);
</PRE>

gnump3d 음악스트리밍을 가능하게 해주는 서버
GNUMP3d - The GNU Streaming MP3 / OGG Vorbis Server.


Homepage: http://www.gnump3d.org/
Version : 3.0
Author  : Steve Kemp <steve@steve.org.uk>

 


NOTE
----

  All development of this branch of the project has ceased.
  
  In the future there might be a GNUMP3d 3.x branch writen in
 modern Perl, or Ruby, supporting an SQLite back-end.  However
 there are no plans to start on this in the short-term future.

 

 

Contents
--------

   This README file is split into the following sections.
 Please read it all before reporting bugs, or problems:

 Introduction
 Supported Platforms
 Installing
 Configuration
 Running
 Customisation
        Documentation  
 Mailing Lists
 Reporting Bugs
 License  (GPL)
 Alternative Solutions
 Thanks
        Comments / Suggestions / Patches?

 Recent Changes


Introduction
------------

  This server attempts to provide an attractive interface to browsing
 and streaming a large MP3 or OGG collection via your web browser.

  It allows MP3's and OGG Vorbis files to be served to any media player
 which supports audio streaming.  Supported players include XMMS, FreeAmp
 and WinAmp.

  In addition to this support is also present for streaming MPEG video
 files direct to clients.


--
 NOTE: The streaming of movies requires a  player capable of supporting
        HTTP downloads.
-


  The streaming is very versatile; individual files may be played directly,
 whole directory trees can be streamed, you may even choose to listen to
 audio files which match a particular pattern.

  The display of files is built up in real-time; which means that
 you don't need to restart the server when adding music to your
 collection.  Although as an optimization song tag details are only refreshed
 when a supplied indexing script runs.


Supported Platforms
-------------------

  This software was primarily developed under Debian GNU/Linux, and
 should run on any similar GNU/Linux development platform.

  Because the software is written with the portable scripting
 language, Perl, it should also run under other flavours of Unix.

  GNUMP3d has been tested upon the following platforms:

 GNU/Linux FreeBSD  OpenBSD
 NetBSD  Solaris  

 Microsoft Windows(*)

 
   --
  (*) Using the most current version of the ActiveState Perl distribution only.

 

Installing under Unix
---------------------

  From the unpacked archive simply run 'make install'.

  The software can also be purged by running 'make uninstall' - if you have
 the original unpackaged archive.

  After installing the software you may well want to run the test scripts,
 you can do this by simply running 'make test'.  Any failures at this
 point are bugs - and should certainly be reported as such.

 

Configuration
-------------

  When the server starts it looks for the global configuration file,
 which defaults to /etc/gnump3d/gnump3d.conf - you may instead copy
 this file to your home directory, as '.gnump3drc' in which case
 the personal configuration file will override the system wide one.

  You may supply the location of an alternative configuration file
 via the '--config' command line option.

NOTE:

  You will definitely need to edit the config file prior to running
 the server for the first time.


Running
-------

  The first time you start the server you should make sure you
 have a current "index" of your music.  To generate an index
 please run the script 'gnump3d-index' after updating your
 configuration file as discussed above.

  Once you have an index you should run the main script, 'gnump3d'
 to start the streaming server.

  Once the server is started point a web browser at the host and
 port which you have specified, and browse/stream away.

  After you have verified that the server works you may wish to
 run it in the background.  To do this create a startup script
 for your platform and mail it to me - if there isn't one included
 in 'rcfiles/'


Customisation
-------------

  The appearance of the server may be changed by switching to a new
 theme.  The themes may be browsed and selected from the HTML pages
 which are generated - if you wish to change the default theme please
 see the configuration variable 'theme' in gnump3d.conf for details.

  You may freely modify the theme files themselves, or create a new
 theme to change the appearance of the server.
 
  (Theme files are stored in a directory with the name of the theme in
 the /usr/share/gnump3d/ directory).


Documentation
-------------

  The documentation included with this software includes several
 'man pages' which are installed along with the software, those
 along with this document, and the project's website should contain
 all the information you need to run the software.

   The man pages should be installed when you install the software,
 if you need help on something try the following commands:

 man gnump3d
 man gnump3d.conf
 man gnump3d-top

 

Mailing Lists
-------------

  There are two mailing lists which you can turn to if you'd like
 help, assistance, or discussion on this software.

  Full details of these are given on the project's website, at
 the following URL:

        http://www.gnump3d.org/lists.html

  NOTE: You must be subscribed to the mailing lists in order to
 post messages.  This is a regretable position made necessary by
 the amount of spam an open mailing list would receive.


Reporting Bugs
--------------

  For a bug report to be useful it needs to contain as
 much information as possible.

  A simple means of giving all the relevant information is
 to use the integrated bug reporting plugin.  (Obviously you
 can't use this if the bug you wish to report concerns
 plugins ;).
 
  To use the bug reporting plugin simply point your web browser
 at:
 
  http://server:port/bug/
 
  Enter the text of your report into the text area, and click
 on the submit button.
 
  If you're not using the bug reporting plugin simply send
 me an email.  To assure prompt attention please include the
 following information:

   1. Your operating system, and version:
 Run 'uname -a', and 'arch' and send me the results.

   2. The version of GNUMP3d you're using.
 Run 'gnump3d --version' and send me the results.

   2a. The output of 'gnump3d --dump-plugins' if you're having
      problems with the plugin support.

   3. The browser/client/MP3 player you're using.

  If you can send a patch that would be great; if not the more
 detailed your report is the better.


License
-------

  As the name might suggest, this software is distributed under
 the terms of the GNU Public License, version 2.

  Please find a copy of the GNU Public License included with the
 source archive in the file COPYING, it will also be accessible
 from the server itself; read the startup banner for details.


Alternative Solutions
---------------------

  Here's a brief list of alternative solutions which
 you may want to investigate if this software doesn't
 quite meet your needs.


   Edna - http://edna.sourceforge.net/

    This is very similar to this application, in fact this server
   was initially modelled after Edna.

    Edna lacks searching facilities, tag display for OGG files, and
   is written in Python.


 
   Ample - http://ample.sourceforge.net/

    This is a simple server which is comparable to Shoutcast.

 

   KPlaylist - http://www.kplaylist.net/

    This is a PHP-based solution which allows you to add individual
   files to your playlist via your web browser then play it.
    KPlaylist requires a database backend.


Thanks
------

  I'm indebted towards many people who sent me bugfixes, corrections,
 interesting questions and suggestions.

  It is with their help that this software is what it is today, and I
 can't thank them highly enough.  Any remaining bugs are of course
 entirely my fault.


Comments / Suggestions / Patches?
---------------------------------

  I optimistically welcome comments, feedback, suggestions, updated
 documentation and contributed themes/logos.

  If you really like the software consider purchasing something from
 the wishlist you'll find displayed at http://www.gnump3d.org/

 

Steve
---
<steve@steve.org.uk>

 


한국판 쏘우 saw

Please Find my son!!!

but The step mom kills a son. and burns a corpse.

지구별, 너무나도 잔인한 곳

키우기 싫으면 버리던가, 죽이기는 왜 죽여. 

인생은 운전을 배우는 것과 같다.

너무 빨리 달린다면 곧 통제력을 상실하고 인도에 부딪히거나 도랑에 빠질 수 있다.

-진저 히스-

불행을 슬퍼하지 말고 불행을 출발점으로 삼아라.

불행을 이용하는 사람에게 그것은 때로 희망의 토대가 된다.

-발자크-

훌륭한 사람들의 두드러진 특징은 자신에게 주어진 쓰라린 환경을 이겨냈다는 것이다.
-베토벤-

열정은 멋진 꿈을 가진 사람을 도와주는 힘이다.
열정은 확신을 낳고 평범한 사람을 뛰어난 사람으로 만들어준다

-앤디 앤드루스-

1분만 더 버티고 더 노력했더라면 실패의 대부분은 성공으로 바뀌어 있었을 것이다.

-나폴레옹 힐-
욕은 세 곳을 더럽게 한다. 욕하는 이의 입을, 듣는 이의 귀를, 전하는 이의 입을 더럽게 한다.
1···99100101102103

+ Recent posts