CC Salon

'ccsalon'에 해당되는 글 3건

  1. 2008/07/07 4th CC Salon, Mix it Up에 초대합니다 !
  2. 2007/06/09 [2nd ccsalon report] Code can be an art (3)
  3. 2007/05/13 [code] 코드 잼 시작! (8)

4th CC Salon, Mix it Up에 초대합니다 !

4th CC Salon, Mix it Up에 초대합니다 ! 네번째 CC Salon 2008/07/07 20:50
사용자 삽입 이미지
사용자 삽입 이미지

첫번째, 두번째, 세번째를 지나 드디어 네번째 CC 살롱이 시작됩니다.
이번 CC 살롱은 마치 처음의 것과 같은 '음악'을 주제로 CC Mixter의 새로운 사이트 오픈과 함께
이를 기념할 다양한 공연으로 준비했습니다.

CC Salon과 CC Mixter를 아시는 분, 알고 싶은 분,
그리고 신나는 공연을 즐기고 싶은 분들이시라면 누구든지 환영합니다.
여러분들과 함께 할 새로운 CC Salon in Seoul을 기대합니다.


일시 2008년 7월 13일 (일) 늦은 7시~9시
장소 홍대 Club Sound hoilc
Guest DJ 짱가 / DJ JUICE / 네바다#51 / 넋업샤니 & 강산 여울 / 샛별 / 장기하와 얼굴들
Ticket 현매 학생 5,000원, 성인 10,000원 ( 1 Free Drink )

★Map

사용자 삽입 이미지


  
크리에이티브 커먼즈 라이선스
Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시 2.0 대한민국 라이선스에 따라 이용하실 수 있습니다.
Posted by CCSalon

[2nd ccsalon report] Code can be an art

[2nd ccsalon report] Code can be an art 두번째 CC Salon 2007/06/09 02:13



Video: ccSalon Seoul 2nd "code can be an art" by Yongsu Han

“Code can be an art”

Most people give an inquiring look when they heard this short phrase. CCK(Creative Commons Korea) held the second ccSalon in Seoul from this unique point of view.


At the network where Creative Commons has grown up, the code itself is the most abundant commons and the code-creating people are the most active contributor of the creative resource on the network. We thought it would be cool if we could regard their every single activity as a creative art.


“A discussion of art from the standpoint of anybody who loves the code”, 2nd ccSalon’s target was this much simple. Yes, anybody, anyone. Whoever loves to code and whoever loves the artifact of code could be an artist. This salon started with this simple idea.


The artists whose main tool has been code itself were first invited to do a media-jam as an introduction event. Seung-joon Choi and Regan Hwang showed us amazing arts and demos and let people know about the fact “code can be an art”.

Seungjoon’s colorful arts grabbed audience’s wow. He interacted with audiences using simple codes and his codes showed different arts according to the interaction.


How could we forget the keynote speech from the renowned residential DJ? DJ Sungwoo gave an eye-opening speech regarding the similarity between DJs and developers. Utilizing DJ’s insight, he demonstrated how to live fun as creator.


ccSalon is, as we all know, an open community welcoming anybody’s participation. So did ccSalon in Seoul, and the code-jam event was our mission to share this enthusiasm.


Simple string called “code can be an art” is all you got and you have to create something from it. This simple rule is announced beforehand and participants created and submitted a really simple code to show their artistic soul. There were participants who couldn’t make it to ccSalon, and some other participants did a coding on the run using his laptop at the salon. Finally 11 participants submitted the code art and we shared each of them using 60inch PDP. Everybody was asked “Did you enjoy creating something for this jam?” and the answer was always “Yes”. Yes, we were trying to revoke the “Yes” toward our simple instinct called creativity.


Artist Reagan Hwang collected every pieces of their work together and created another stream of art on the fry, and here is the final artwork.





After the jam, Korean style dinners were served with some “soju” and beers and we moved to the final round of ccSalon: the panel discussions.


8bit computer kid’s nostalgia

Could code be widely regarded as an artform?


As night falls, the scene changes at ccSalon and there were late casual discussions for those with lots of energy left. We met lots of wonderful people there, and we shared and dreamed about how this simple human instinct could change us. The instinct called creativity.






comic courtesy of monthly w.e.b. ( www.worldweb.co.kr )


크리에이티브 커먼즈 라이선스
Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시 2.0 대한민국 라이선스에 따라 이용하실 수 있습니다.
Posted by goodhyun

[code] 코드 잼 시작!

[code] 코드 잼 시작! 분류없음 2007/05/13 03:31

다 함께 "코드 잼"을 해 보는 것도 좋습니다. 코드는 다양한 것이 있겠지만 가장 흔한 것이 바로 프로그램의 코드.

이번 Cc Salon의 코드 잼을 즐기는 법은 간단합니다.

"Code can be an art" 라는 문자열로 마음껏, 그리고 즐긴다는 기분으로 코드를 만드시고 그 소스와 결과를 함께 공유하면 됩니다. 그러면 현장에서 이걸 함께 즐겨 보면 되는겁니다. 현장에서 바로 만들어서 업데이트 하셔도 됩니다.

태그에 ccsalon이 들어가거나, 여기에 트랙백이나 댓글을 달며 만들면 한꺼번에 찾아가기가 쉽겠죠?  

먼저 저 부터 갑니다!.

using System;

namespace ccsalon
{
    class Program
    {
        static void Main(string[] args)
        {
            string a = "Code can be an art";
            Random r = new Random();
            int p = r.Next(1, a.Length);
            while (true)
            {
                for (int i = 0; i < a.Length; i++)
                {
 
                    if (i == p - 1 | i == p + 1)
                    {
                        Console.BackgroundColor = ConsoleColor.DarkRed;
                        Console.ForegroundColor = ConsoleColor.Red;
                    }
                    else if (i == p)
                    {
                        Console.BackgroundColor = ConsoleColor.Red;
                        Console.ForegroundColor = ConsoleColor.White;
                    }
                    else
                    {
                        Console.BackgroundColor = ConsoleColor.Black;
                        Console.ForegroundColor = ConsoleColor.DarkRed;
                    }
                    Console.Write(a.Substring(i, 1));

                }
                if (r.Next(1, 10)>5 & p <= a.Length) p++;
                else if (p > 0) p--;

                Console.ResetColor();
                Console.WriteLine();
            }
        }
    }
}


꿈틀대며 약동하는 붉은 기운을 암시한겁니다.
아니 도대체 이게 무슨 Art냐구요? 네, 제가 생각해도 허접하네요 ^^

하지만 보기에는 사소해도 "아, 이런걸 해봐야겠다" 생각하는 동안, 그리고 짧은 시간이나마 그걸 실제로 만드는 동안은 누구나 마음속으로는 Art를 하고 있답니다.

자, 여러분의 차례입니다.

여러분의 언어, 여러분의 캔버스, 여러분의 장르에서 함께 만들고 함께 즐기도록 하지요!

이올린에 북마크하기(0) 이올린에 추천하기(0)
크리에이티브 커먼즈 라이선스
Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시 2.0 대한민국 라이선스에 따라 이용하실 수 있습니다.
Posted by goodhyun
1 
하단 사이드바 열기

BLOG main image