[startup/창업] Boosting Business with AI : AI를 통한 비즈니스 강화

Boosting Business with AI

 
18 Nov 2023CPOL7 min read 1.5K  
Leveraging Open-Source AI Technologies with Red Hat OpenShift Data Science and Intel® Architecture

This article is a sponsored article. Articles such as these are intended to provide you with information on products and services that we consider useful and of value to developers

AI is not our future — it is our present reality. Retail, banking and finance, security, governance, healthcare, and industry are just some of the areas where AI is used daily. We are approaching the point where content generated by AI and content produced by humans becomes indistinguishable. Natural language processing (NLP) is evolving to a level where the interaction between a machine and a human resembles that between two people. This opens new opportunities for governments, entrepreneurs, and companies in the financial and health sectors.

To make machine learning (ML) tasks easier, Intel and Red Hat are developing new solutions. Data mining, model deployment, training, process automation, and data transmission are all enhanced by products like Red Hat OpenShift* Data Science. To increase performance, Intel is simultaneously introducing new technologies and accelerators, including Intel® Advanced Matrix Extensions (Intel® AMX).

Problem Statement

AI gives enterprises a business advantage that they can use in various ways. NLP can help with fraud detection by analyzing large text data efficiently. It can perform sentiment analysis and support healthcare. NLP enables a more natural form of human–machine interaction. This article shows the simple usage of an AI model to answer questions about a company. Using an intelligent assistant increases customer convenience by reducing response time and decreasing the number of people needed to serve customers, thereby lowering the cost.

Approach

In this case, the goal is to answer customers’ questions about products, prices, sales, and the company itself. The following example shows a simple way to set up a chatbot using open-source components that can interact with customers. With some programming and development, it can be extended and transformed into a fully functioning, production-ready application that will support business.

To achieve this goal, we are using BERT (Bidirectional Encoder Representations from Transformers) and the open-source BERT Question Answering Python* Demo. The following example is presented using the Red Hat OpenShift Data Science platform with OpenVINO* Toolkit Operator and with the use of 4th Generation Intel® Xeon® Scalable processors with Intel AMX to provide quicker responses.

Technologies

Red Hat OpenShift Data Science

Red Hat OpenShift Data Science is a service for data scientists and programmers of intelligent applications, available as a self-managed or managed cloud platform. It offers a fully supported environment where ML models may be developed, trained, and tested quickly before being deployed in a real-world setting. Teams can deploy ML models in production on containers — whether on-premises, in the public cloud, in the data center, or at the edge — thanks to the ease with which they can be exported from Red Hat OpenShift Data Science to other platforms.

There are many benefits to using Red Hat OpenShift Data Science for ML. The platform includes a wide range of commercially available partners and open-source tools and frameworks — such as Jupyter Notebooks*, TensorFlow*, PyTorch, and OpenVINO — for data scientists to use in their workflows. Red Hat OpenShift Data Science provides a secure and scalable environment.

Intel® AMX

Intel AMX is a new built-in accelerator that improves the performance of deep learning training and inference on the CPU. It accelerates AI operations and improves performance up to 3x. It is ideal for workloads like NLP, recommendation systems, and image recognition. Performance on 4th Generation Intel Xeon Scalable processors can be fine-tuned using the Intel® oneAPI Deep Neural Network Library (oneDNN), which is part of the Intel® oneAPI Toolkit and integrated into TensorFlow and PyTorch AI frameworks and with the Intel® Distribution of OpenVINO toolkit. Those toolkits can be used with Red Hat OpenShift Data Science.

Implementation Example

This example uses a simple website describing the Super Shoes! Store as a base (Figure 1). A retailer could use their own website or generate a document containing important information about the company. The following example shows how to develop a simple chatbot that can answer questions, therefore decreasing response time from the customer’s perspective.

Figure 1. Part of the website used in our example

To start creating the chatbot, prepare an image registry for the Red Hat OpenShift cluster. This example also requires storage to provide persistent volumes (e.g., OpenShift Data Foundation) and Node Feature Discovery Operator to detect CPUs that support Intel AMX. The kernel detects Intel AMX at run-time, so there is no need to enable and configure it separately. Check the node’s labels to verify that Intel AMX is available:

 
feature.node.kubernetes.io/cpu-cpuid.AMXBF16=true 
feature.node.kubernetes.io/cpu-cpuid.AMXINT8=true 
feature.node.kubernetes.io/cpu-cpuid.AMXTILE=true

Red Hat OpenShift Data Science and OpenVINO Toolkit Operator must be installed from OperatorHub, available via the OpenShift Container Platform web console (Figure 2). The default settings are sufficient, but please keep the proper order of installation: OpenShift Data Science first, OpenVINO Toolkit Operator second. Then, ensure that both operators are listed in the Installed Operators tab in the redhat-ods-applications project, and that the status is Succeeded.

Figure 2. Screenshot of the OpenShift* console showing the status of installed operators

The OpenVINO Toolkit Operator requires additional configuration. Make sure that a redhatodsapplications project is selected. Click on the OpenVINO Toolkit Operator and choose a Notebook tab. Now, create a new notebook with default settings. After these steps are finished, verify that the openvino-notebooks-v2022.3-1 build is completed by going to Builds > Builds from the main menu.

Use the menu in the top-right corner to go to the Red Hat OpenShift Data Science dashboard (Figure 3).

Figure 3. OpenShift* Managed Services menu

In the Red Hat OpenShift Data Science interface, choose the Applications > Enabled tab. Launch a Jupyter Notebook* application using the OpenVINO Toolkit v2022.3 image. Change the container size to Large (Figure 4).

Figure 4. Creating a Jupyter Notebook* in Red Hat OpenShift* Data Science dashboard

Choose Terminal in the Launcher window (Figure 5).

Figure 5. Launcher window

Clone the Open Model Zoo GitHub repository, which contains the source code of the demos:

 
git clone --recurse-submodules https://github.com/openvinotoolkit/open_model_zoo.git

To see all compiled instructions and control the usage of Intel AMX, you can optionally set the ONEDNN_VERBOSE environment variable:

 
export ONEDNN_VERBOSE=1

As mentioned, this example is based on a BERT Question Answering Python Demo. However, instead of BERT-small, it uses BERT-large.

In the directory open_model_zoo/demos/bert_question_answering_demo/python, there is a models.lst file that contains the list of models supported by the demo and can be used to download them with the following command:

 
omz_downloader --list models.lst

As you see, one of the most important advantages of using Red Hat OpenShift Data Science is that all necessary tools (like the Model Downloader used above) and Python packages are built in! Thanks to the OpenVINO Toolkit Operator, you can avoid the long, tedious, and error-prone process of installing components and preparing your development environment.

When the model is downloaded, we are ready to run our first chatbot! Let’s call the script:

 
python3 bert_question_answering_demo.py --vocab=/opt/app-root/src/open_model_zoo/demos/bert_question_answering_demo/python/intel/bert-large-uncased-whole-word-masking-squad-int8-0001/vocab.txt --model=/opt/app-root/src/open_model_zoo/demos/bert_question_answering_demo/python/intel/bert-large-uncased-whole-word-masking-squad-int8-0001/FP32-INT8/bert-large-uncased-whole-word-masking-squad-int8-0001.xml --input_names="input_ids,attention_mask,token_type_ids" --output_names="output_s,output_e" --input="https://grabuszynski.com/myshoesemporium.html" -c

Instead of passing the example page as an input, the retailer can use examples from their own website. Now, the chatbot can answer questions about the company and its products (Figure 6).

Figure 6. Examples of questions that can be asked

If ONEDNN_VERBOSE is set to 1, you should see an avx_512_core_amx in the log that confirms Intel AMX instructions are being used:

 
onednn_verbose,info,cpu,isa:Intel AVX-512 with float16, Intel DL Boost and bfloat16 support and Intel AMX with bfloat16 and 8-bit integer support

It is possible to extend this example. The model could be served using a Model Server. The application that provides an easy-to-use and user-friendly interface would be a cherry on top of this project.

Concluding Remarks

Red Hat and Intel are constantly working on new solutions, technologies, and improvements in AI. This article demonstrated how Red Hat OpenShift Data Science can change the retail sector by combining with the OpenVINO toolkit and Intel AMX acceleration. Using these cutting-edge technologies with the BERT model in a chatbot solution, retailers can:

  • Lower the costs of customer service
  • Improve customer satisfaction by decreasing response time
  • Potentially increase sales

Retailers can handle and analyze massive volumes of data quickly because of the combined strength of Red Hat OpenShift Data Science and Intel AMX acceleration, which results in better decisions and optimized operations. In the end, this technological convergence gives retailers the resources they need to maintain competitiveness in a rapidly changing market environment.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

 
Written By
 
United States United States
You may know us for our processors. But we do so much more. Intel invents at the boundaries of technology to make amazing experiences possible for business and society, and for every person on Earth.

Harnessing the capability of the cloud, the ubiquity of the Internet of Things, the latest advances in memory and programmable solutions, and the promise of always-on 5G connectivity, Intel is disrupting industries and solving global challenges. Leading on policy, diversity, inclusion, education and sustainability, we create value for our stockholders, customers and society.

AI를 통한 비즈니스 강화

 
2023년 11월 18일CPOL7분 읽기1.5K  
Red Hat OpenShift Data Science 및 Intel® 아키텍처를 통해 오픈소스 AI 기술 활용

이 글은 협찬받은 글입니다. 이와 같은 기사는 개발자에게 유용하고 가치 있다고 생각되는 제품 및 서비스에 대한 정보를 제공하기 위한 것입니다.

AI는 우리의 미래가 아니라 현재의 현실입니다. 소매, 은행 및 금융, 보안, 거버넌스, 의료 및 산업은 AI가 매일 사용되는 영역 중 일부에 불과합니다. AI가 제작한 콘텐츠와 인간이 제작한 콘텐츠가 구별 불가능한 시점에 가까워지고 있습니다. 자연어 처리(NLP)는 기계와 인간의 상호 작용이 두 사람의 상호 작용과 유사한 수준으로 진화하고 있습니다. 이는 금융 및 보건 분야의 정부, 기업가, 기업에 새로운 기회를 열어줍니다.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

머신러닝(ML) 작업을 더 쉽게 만들기 위해 Intel과 Red Hat은 새로운 솔루션을 개발하고 있습니다. 데이터 마이닝, 모델 배포, 교육, 프로세스 자동화 및 데이터 전송은 모두 Red Hat OpenShift* Data Science와 같은 제품을 통해 향상됩니다. 성능을 높이기 위해 인텔은 인텔® 고급 매트릭스 확장(인텔® AMX)을 포함한 새로운 기술과 가속기를 동시에 도입하고 있습니다.

문제 설명

AI는 기업이 다양한 방식으로 사용할 수 있는 비즈니스 이점을 제공합니다. NLP는 대규모 텍스트 데이터를 효율적으로 분석하여 사기 탐지에 도움을 줄 수 있습니다. 감정 분석을 수행하고 의료 지원을 수행할 수 있습니다. NLP는 보다 자연스러운 형태의 인간-기계 상호 작용을 가능하게 합니다. 이 기사에서는 회사에 관한 질문에 답하기 위해 AI 모델을 간단하게 사용하는 방법을 보여줍니다. 지능형 비서를 사용하면 응답 시간이 단축되고 고객 서비스에 필요한 인력이 줄어들어 고객 편의성이 향상되어 비용이 절감됩니다.

접근하다

이 경우 제품, 가격, 매출, 회사 자체에 대한 고객의 질문에 답변하는 것이 목표입니다. 다음 예에서는 고객과 상호 작용할 수 있는 오픈 소스 구성 요소를 사용하여 챗봇을 설정하는 간단한 방법을 보여줍니다. 일부 프로그래밍 및 개발을 통해 비즈니스를 지원하는 완전한 기능을 갖춘 프로덕션 지원 애플리케이션으로 확장하고 변환할 수 있습니다.

이 목표를 달성하기 위해 우리는 BERT(Bidirection Encoder Representations from Transformers)와 오픈 소스 BERT Question Answering Python* Demo를 사용하고 있습니다 . 다음 예는 더 빠른 응답을 제공하기 위해 OpenVINO* Toolkit Operator와 함께 Red Hat OpenShift Data Science 플랫폼을 사용하고 Intel AMX가 탑재된 4세대 Intel® Xeon® Scalable 프로세서를 사용하여 제시됩니다.

기술

Red Hat OpenShift 데이터 과학

Red Hat OpenShift Data Science는 자체 관리형 또는 관리형 클라우드 플랫폼으로 제공되는 지능형 애플리케이션의 데이터 과학자 및 프로그래머를 위한 서비스입니다. ML 모델을 실제 환경에 배포하기 전에 신속하게 개발, 교육 및 테스트할 수 있는 완벽하게 지원되는 환경을 제공합니다. Red Hat OpenShift Data Science에서 다른 플랫폼으로 쉽게 내보낼 수 있기 때문에 팀은 온프레미스, 퍼블릭 클라우드, 데이터 센터, 엣지 등 컨테이너의 프로덕션 환경에 ML 모델을 배포할 수 있습니다.

ML용 Red Hat OpenShift Data Science를 사용하면 많은 이점이 있습니다. 플랫폼에는 데이터 과학자가 워크플로에서 사용할 수 있는 Jupyter Notebooks*, TensorFlow*, PyTorch, OpenVINO 등 다양한 상용 파트너와 오픈 소스 도구 및 프레임워크가 포함되어 있습니다. Red Hat OpenShift Data Science는 안전하고 확장 가능한 환경을 제공합니다.

인텔® AMX

Intel AMX 는 CPU에서 딥 러닝 훈련 및 추론 성능을 향상시키는 새로운 내장형 가속기입니다. AI 운영을 가속화하고 성능을 최대 3배 향상시킵니다 . NLP, 추천 시스템, 이미지 인식과 같은 워크로드에 이상적입니다. 4세대 인텔 제온 스케일러블 프로세서의 성능은 인텔® oneAPI 툴킷 의 일부이고 TensorFlow 및 PyTorch AI 프레임워크에 통합된 인텔® oneAPI 심층 신경망 라이브러리(oneDNN)와 인텔® 배포판을 사용하여 미세 조정할 수 있습니다. OpenVINO 툴킷. 이러한 툴킷은 Red Hat OpenShift Data Science와 함께 사용할 수 있습니다.

구현 예

이 예에서는 Super Shoes를 설명하는 간단한 웹사이트를 사용합니다! 베이스로 보관합니다( 그림 1 ). 소매업체는 자체 웹사이트를 사용하거나 회사에 대한 중요한 정보가 포함된 문서를 생성할 수 있습니다. 다음 예에서는 질문에 답할 수 있어 고객 관점에서 응답 시간을 줄일 수 있는 간단한 챗봇을 개발하는 방법을 보여줍니다.

그림 1. 예제에 사용된 웹사이트의 일부

챗봇 생성을 시작하려면 Red Hat OpenShift 클러스터용 이미지 레지스트리를 준비합니다 . 또한 이 예에서는 영구 볼륨(예: OpenShift Data Foundation)을 제공하기 위한 스토리지와 Intel AMX를 지원하는 CPU를 감지하기 위한 Node Feature Discovery Operator가 필요합니다. 커널은 런타임에 Intel AMX를 감지하므로 별도로 활성화하고 구성할 필요가 없습니다. Intel AMX를 사용할 수 있는지 확인하려면 노드의 레이블을 확인하십시오.

 
feature.node.kubernetes.io/cpu-cpuid.AMXBF16=true
feature.node.kubernetes.io/cpu-cpuid.AMXINT8=true
feature.node.kubernetes.io/cpu-cpuid.AMXTILE=true

Red Hat OpenShift Data Science 및 OpenVINO Toolkit Operator는 OpenShift Container Platform 웹 콘솔을 통해 사용할 수 있는 OperatorHub에서 설치해야 합니다( 그림 2 ). 기본 설정이면 충분하지만 적절한 설치 순서를 유지하십시오. OpenShift Data Science를 먼저, OpenVINO Toolkit Operator를 두 번째로 설치하십시오. 그런 다음 redhat-ods-applications 프로젝트의 Installed Operators 탭 에 두 운영자가 모두 나열되어 있고 상태가 성공인지 확인하세요.

그림 2. 설치된 운영자의 상태를 보여주는 OpenShift* 콘솔의 스크린샷

OpenVINO Toolkit Operator에는 추가 구성이 필요합니다. 프로젝트가 선택되어 있는지 확인하세요 redhatodsapplicationsOpenVINO Toolkit Operator를 클릭 하고 노트북 탭을 선택합니다. 이제 기본 설정으로 새 노트북을 만듭니다. 이 단계가 완료된 후 기본 메뉴에서 빌드 > 빌드openvino-notebooks-v2022.3-1 로 이동하여 빌드가 완료되었는지 확인하세요.

오른쪽 상단에 있는 메뉴를 사용하여 Red Hat OpenShift Data Science 대시보드로 이동합니다( 그림 3 ).

그림 3. OpenShift* 관리 서비스 메뉴

Red Hat OpenShift Data Science 인터페이스 에서 애플리케이션 > 활성화됨 탭을 선택합니다 OpenVINO Toolkit v2022.3 이미지를 사용하여 Jupyter Notebook* 애플리케이션을 실행합니다. 컨테이너 크기를 Large로 변경합니다( 그림 4 ).

그림 4. Red Hat OpenShift* Data Science 대시보드에서 Jupyter Notebook* 생성

시작 관리자 창에서 터미널을 선택합니다 ( 그림 5 ).

그림 5. 실행기 창

데모 의 소스 코드가 포함된 Open Model Zoo GitHub 리포지토리를 복제합니다 .

 
git clone --recurse-submodules https://github.com/openvinotoolkit/open_model_zoo.git

컴파일된 모든 지침을 보고 Intel AMX의 사용을 제어하려면 선택적으로 ONEDNN_VERBOSE환경 변수를 설정할 수 있습니다.

 
ONEDNN_VERBOSE=1 내보내기

언급한 대로 이 예제는 BERT 질문 응답 Python 데모를 기반으로 합니다. 그러나 BERT-small 대신 BERT-large를 사용합니다.

open_model_zoo/demos/bert_question_answering_demo/python 디렉터리에는 데모에서 지원하는 모델 목록이 포함된 models.lst 파일이 있으며 다음 명령을 사용하여 해당 모델을 다운로드하는 데 사용할 수 있습니다.

 
omz_downloader --list models.lst

보시다시피 Red Hat OpenShift Data Science를 사용할 때의 가장 중요한 이점 중 하나는 필요한 모든 도구(예: 위에 사용된 Model Downloader )와 Python 패키지가 내장되어 있다는 것입니다! OpenVINO Toolkit Operator 덕분에 구성 요소를 설치하고 개발 환경을 준비하는 데 있어 길고 지루하며 오류가 발생하기 쉬운 프로세스를 피할 수 있습니다.

모델이 다운로드되면 첫 번째 챗봇을 실행할 준비가 된 것입니다! 스크립트를 호출해 보겠습니다.

 
python3 bert_question_answering_demo.py --vocab=/opt/app-root/src/open_model_zoo/demos/bert_question_answering_demo/python/intel/bert-large-uncased-whole-word-masking-squad-int8-0001/vocab.txt -- 모델=/opt/app-root/src/open_model_zoo/demos/bert_question_answering_demo/python/intel/bert-large-uncased-whole-word-masking-squad-int8-0001/FP32-INT8/bert-large-uncased-whole -word-masking-squad-int8-0001.xml --input_names="input_ids,attention_mask,token_type_ids" --output_names="output_s,output_e" --input="https://grabuszynski.com/myshoesemporium.html" - 씨

예시 페이지를 입력으로 전달하는 대신 소매업체는 자체 웹사이트의 예시를 사용할 수 있습니다. 이제 챗봇은 회사와 제품에 대한 질문에 답할 수 있습니다( 그림 6 ).

그림 6. 질문할 수 있는 질문의 예

1로 설정 되면 Intel AMX 지침이 사용되고 있음을 확인하는 로그가 ONEDNN_VERBOSE표시됩니다 .avx_512_core_amx

 
onednn_verbose,info,cpu,isa:float16을 지원하는 Intel AVX-512, Intel DL Boost 및 bfloat16을 지원하고 bfloat16 및 8비트 정수를 지원하는 Intel AMX

이 예제를 확장하는 것이 가능합니다. 모델 서버를 사용하여 모델을 제공할 수 있습니다. 사용하기 쉽고 사용자 친화적인 인터페이스를 제공하는 애플리케이션은 이 프로젝트의 핵심이 될 것입니다.

끝 맺는 말

Red Hat과 Intel은 AI의 새로운 솔루션, 기술, 개선을 위해 지속적으로 노력하고 있습니다. 이 기사에서는 Red Hat OpenShift Data Science가 OpenVINO 툴킷 및 Intel AMX 가속과 결합하여 소매 부문을 어떻게 변화시킬 수 있는지 보여주었습니다. 챗봇 솔루션의 BERT 모델과 함께 이러한 최첨단 기술을 사용하여 소매업체는 다음을 수행할 수 있습니다.

  • 고객 서비스 비용 절감
  • 응답 시간 단축으로 고객 만족도 향상
  • 매출 증대 가능성

소매업체는 Red Hat OpenShift Data Science와 Intel AMX 가속화의 결합된 강점으로 인해 대량의 데이터를 신속하게 처리하고 분석할 수 있으며, 이를 통해 더 나은 의사결정과 최적화된 운영이 가능해집니다. 결국 이러한 기술 융합은 소매업체가 급변하는 시장 환경에서 경쟁력을 유지하는 데 필요한 리소스를 제공합니다.

특허

이 기사는 관련 소스 코드 및 파일과 함께 The Code Project Open License(CPOL) 에 따라 라이센스가 부여됩니다.

 
작성자
 
미국 미국
귀하는 당사의 프로세서에 대해 알고 계실 것입니다. 하지만 우리는 훨씬 더 많은 일을 하고 있습니다. 인텔은 비즈니스와 사회, 그리고 지구상의 모든 사람에게 놀라운 경험을 제공하기 위해 기술의 한계를 뛰어넘고 있습니다.

인텔은 클라우드의 기능, 사물 인터넷의 편재성, 메모리 및 프로그래밍 가능 솔루션의 최신 발전, 상시 연결성 5G 연결의 약속을 활용하여 업계를 혁신하고 글로벌 과제를 해결하고 있습니다. 정책, 다양성, 포용성, 교육 및 지속 가능성을 선도하여 주주, 고객 및 사회를 위한 가치를 창출합니다.
 
[출처] https://www.codeproject.com/Articles/5372209/Boosting-Business-with-AI
 
 
 
 
 
 

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
105 [startup/창업] 첫해에 실패하는 스타트업 기업의 수 (+생존 팁) : How Many Startup Businesses Fail in The First Year (+Survival Tips) file 졸리운_곰 2025.01.13 216
104 [startup/창업, kmong, 크몽비지니스] 재능마켓 크몽, 판매자에 대한 갑질 이대로 괜찮을까? file 졸리운_곰 2024.11.12 198
103 [startup/창업, kmong, 크몽비지니스] 크몽 디자인 외주 진상 유형3탄 (부재:먹튀) file 졸리운_곰 2024.10.31 190
102 [startup/창업, kmong, 크몽비지니스] 크몽 디자인 외주 진상 2탄 (미리 퇴치하기) file 졸리운_곰 2024.10.31 185
101 [startup/창업, kmong, 크몽비지니스] 크몽 디자인 외주 진상 골라내는 법 1탄 file 졸리운_곰 2024.10.31 210
100 [startup/창업] 개발자가 연봉 1억을 넘길 수 있는 5가지 방법 졸리운_곰 2024.01.17 184
99 [startup/창업] 개발자 모시기 옛말… 게임 취업시장 `급랭` file 졸리운_곰 2024.01.09 168
98 [startup/창업] [수익] [1인기업] [디지털 노마드] 패시브 인컴은 쉽지 않았다 졸리운_곰 2023.12.18 146
» [startup/창업] Boosting Business with AI : AI를 통한 비즈니스 강화 file 졸리운_곰 2023.11.25 194
96 [startup/창업] [IT] 사기꾼 개발자 - 오랄 코더를 소개합니다 졸리운_곰 2023.03.25 218
95 [startup/창업] 주니어 개발자에서 미드레벨 개발자로 도약하기 위한 7단계 file 졸리운_곰 2022.11.15 169
94 [startup/창업] 영리한 개발자와 현명한 개발자의 차이점 file 졸리운_곰 2022.11.15 153
93 [startup/창업] 악마의 시너지, 더닝-크루거와 호손 효과 file 졸리운_곰 2022.11.15 151
92 [startup/창업] 회사 다니면서 바쁜 와중에도 성장하는 팁 file 졸리운_곰 2022.11.07 197
91 [IT] 개발자에게 물어봤습니다: ① 함께 일하고 싶은 개발자 file 졸리운_곰 2022.09.22 174
90 나에게 맞는 웹 기술 스택을 고르는 방법 file 졸리운_곰 2022.08.21 246
89 [startup 창업] 4 Easy Passive Income Sources for Programmers file 졸리운_곰 2022.02.13 202
88 [Startup/창업] 스타트업, 그렇게 대부분 실패하더라 file 졸리운_곰 2021.04.29 170
87 중국 11곳, 일본 5곳인데.. 한국, 10년간 글로벌 100대 기업 진입 '0곳' file 졸리운_곰 2020.12.13 182
86 [김경환 변호사의 IT on IP] 제안서 아이디어 탈취, 법적 구제 가능하다 file 졸리운_곰 2020.12.06 177
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED