Charles Lee

2024-11-24 살면서 관심가는 잡다한 내용 : web통계 / IT 경제 주말 뉴스 / suno

  • 작성 언어: 한국어
  • 기준국가: 모든 국가country-flag
  • IT

작성: 2024-11-24

작성: 2024-11-24 23:57

Durumis Google Analytics 연결

Data Streams 에 durumis.com durumis로 입력해서 stream 1개를 만들고 , 이때 주어주는 G-??? 에서 ??? 값을 Durumis 설정 -> 통계 에 입력한다.

- 설정이 Tag Manager라는 페이지에서 생성됨.

- 지금 잘 동작하는지를 어떻게 확인할 수 있을까?

참조 : Chrome에서 Google Tag Assistant 확장 프로그램을 설치


세상을 보자. (다양한 뉴스)

경제

불경기를 가늠할 수 있는 전국 외식업 폐업 건수가 역대 최다를 기록했습니다. 올해 외식업 폐업 건수는 자영업이 크게 흔들렸던 코로나19 사태 때와 비교해 30%가 더 늘었습니다. 통상 연말에 폐업이 더 늘어난다는 점을 감안하면, 올해가 역대 최악의 겨울이 될 가능성이 점쳐집니다. (링크 : 한국경제) : 2024-11-24 한국 경기가 진짜 나쁜 것으로 보입니다.

소수 몽키 라이브 : 미국은 규제 철폐를 많이 하므로 이에 대한 기업들이 수혜주 (나는 그냥 S&P500이면 충분) / 트럼프 (규제완화,기술패권,에너지패권) / 빅테크 노젬 / 앞으로 physical AI (로봇) 시대 / SMR 주 강세 / NVIDIA (HW)에서 AI SW(팔란티어)로 갈수 있지 않을까?

2024-11-24 살면서 관심가는 잡다한 내용 : web통계 / IT 경제 주말 뉴스 / suno

정부는 왜 현재의 경제가 왜 괜찮다고 하는가? 실제로는 수요(내수 = 민간소비+소매판매액+건설투자+설비투자: 모두 감소중)가 부진해졌다. / 경제 전망(낙관적)을 잘못해서 세금을 잘못사용함. / 역대급 세수 결손이 왜 보정이 제대로 안되는가? 잘못 전망해서 내수 부양이나 대응력이 약해진다. / (링크 : 김광석) >> 한국이 부동산 공화국에서 못 벗어나는가? 한국은 다 낙관주의자만 사는가? 역시 한국은 세금을 잘 쓰는 정부를 가질 수 없는가?

IT

조코딩 IT News 2024-11-24 : AI 엔지니어의 부상 2003.7 (강추) / GPT wrapper만 되어도 돈 엄청나게 번다. / Gemini API 개발자 대회 결과 / suno.com 음악생성 AI v4 출시 / 사물을 놓치지 않고 잡는다. (가수를 끝까지 쫓아간다. 딸기 잎도 그렇게 쫓아가주지 않을까?) open source SAM2  / Expand Video (세로로 shorts 만들때 유용) / Flux Redux (그림으로부터 기본 frame은 유지한채 다양한 그림을 만들어준다. fal.ai 에서 사용가능) / Audio-Driven Dance Motion / THE MATRIX (모든 게임을 prompt로 만듦) / perplexity (물건을 알아서 쇼핑 리스트 제공) / Conversational AI / MS,google 모두 AI Agent를 출시 (도구들을 연결해서 쓸수 있게,RAG) / MS Teams 에서 실시간 번역이 되면서 톤도 유지 / BMW 휴머노이드 로봇 공장 투입 / >> AI와 동떨어진 삶을 살 수는 없을 듯하여 , 우리도 SW engineer가 아닌 AI engineer에 대한 준비도 해야지 않을까요? 여러가지 AI 기능들을 이용하여 가족 캐릭터를 다양하게 만들어볼수 있을 것으로 생각됨. 쇼핑도 말로 하는 시대가 된 듯! (Google 주식 팔아야 할 듯) AI Agent가 나오면 Airflow같은 것도 대치하지 않을까?

새츄리 노래 AI 생성

suno.com 에 가입 : 노래를 저작해주는 사이트

다음 prompt로"K-POP형식으로 날으는 새츄리에 대한 신나는 노래 하나 만들어주세요. 새츄리는 mini 메츄리이다."
자동으로 만들어진 노래 링크 2개임 :

Linux - Linus Torvalds Lands A 2.6% Performance Improvement With Minor Linux Kernel Patch Written by Michael Larabel in Linux Kernel on 31 October 2024 at 07:10 AM EDT.

Linus Torvalds Lands A 2.6% Performance Improvement With Minor Linux Kernel Patch (21 lines)
Written by Michael Larabel in Linux Kernel on 31 October 2024 at 07:10 AM EDT.  21Comments
LINUX KERNELLinus Torvalds merged a patch on Wednesday that he authored that with reworking a few lines of code is able to score a 2.6% improvement within Intel's well-exercise "will it scale" per-thread-ops benchmark test case.

The patch written by Linux creator Linus Torvalds in turn is based on an earlier patch proposed by kernel developer Josh Poimboeuf. The intent is on avoiding the use of barrier_nospec() within the 64-bit copy_from_user() function.

Linus Torvalds explains in the 21-line kernel patch:
"The barrier_nospec() in 64-bit copy_from_user() is slow. Instead use pointer masking to force the user pointer to all 1's for an invalid address.

The kernel test robot reports a 2.6% improvement in the per_thread_ops benchmark."

With copy_from_user() being used to copy a block of data from user-space to kernel-space, it will be interesting to see if this minor optimization ends up having an impact in any of the other synthetic or real-world workloads. In any event, every little optimization to the kernel adds up... Especially when this optimization is a result of avoiding the overhead of barrier_nospec -- preventing speculative execution past the barrier as part of the Spectre mitigations that have been oh so costly over the years.

This patch is merged to Linux Git and will be part of next Sunday's Linux 6.12-rc6 kernel release ahead of the Linux 6.12 stable release being out in the back half of November.


Airflow : Automation with python code

  • 오퍼레이터(기계) 종류 알기
  • 대그 프로그래밍하기




댓글0