특이점 주의자들이 말하는 그 특이점의 첫 발자국을 지금 보고 있는게 아닐까 라는 생각이 든다.

[링크 : https://v.daum.net/v/20230315061432560]

 

아직은 거짓이라고 생각하지만

더 많은 데이터를 통해서 검증을 해보면 실은 그게 정답이어야 했다던가

그런 차원이라면 이미 그 경계를 넘은걸지도 모르겠다.

(그래도 세종대왕 맥북던진 사건은 좀 아니지)

'개소리 왈왈 > 인공지능' 카테고리의 다른 글

클로드 괜찮네?  (0) 2024.08.14
GPT-4o?  (0) 2024.05.27
대 AI시대, 프로그래머란...?  (2) 2023.02.08
시소러스 (thesaurus)  (0) 2020.01.19
우버 자동운전 차량 첫 사고 동영상 공개  (4) 2018.03.22
Posted by 구차니
Programming/web 관련2023. 3. 15. 11:25

chatGPT 님에게 server push 예제를 알려줘라고 했더니 아래와 같이 알려주신다.

Server push is a technique that allows a server to push data to a client without the client first making a request for the data. In JavaScript, this can be achieved using the Server-Sent Events (SSE) API.
Here's an example of how you can use SSE to implement server push in JavaScript:
On the server side, you need to create an endpoint that will send the SSE messages. In this example, we'll create a simple Node.js server:
const http = require('http');

const server = http.createServer((req, res) => {
  if (req.url === '/sse') {
    res.writeHead(200, {
      'Content-Type': 'text/event-stream',
      'Cache-Control': 'no-cache',
      'Connection': 'keep-alive'
    });

    setInterval(() => {
      res.write(`data: ${new Date().toISOString()}\n\n`);
    }, 1000);
  } else {
    res.writeHead(404);
    res.end();
  }
});

server.listen(3000);
const source = new EventSource('/sse');

source.onmessage = (event) => {
  console.log(event.data);
};

 

아무튼 SSE를 검색해보는데.. jquery 연관은 잘 안보이고

EventSource.onmessage() 로 처리 가능만 하다면야 머...

[링크 : https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events]

 

 

+

golang의 REST / websocket 제거하고 cgi로 돌리려는 어마어마한 음모가! ㅠㅠ

'Programming > web 관련' 카테고리의 다른 글

webGPU  (0) 2023.05.18
chart.js log 스케일  (0) 2023.03.31
JWT 로그인 예제  (0) 2022.08.24
quirks mode  (0) 2022.08.08
grid와 flex  (0) 2022.07.04
Posted by 구차니
개소리 왈왈/블로그2023. 3. 14. 10:59

한때 블로그의 한 축으로 20년을 버텨왔던 다른 사이트가 사라진다는 말이 슬프구나..

예전 마비노기 하던 시절의 인장이랑 스샷들을 좀 빼놔야 하나?

 

그나저나 서비스 종료일 이후에 백업 관련 공지를 한다고 하다니.. 불안하다?

[이글루스 서비스 종료 및 백업 관련 일정 안내]

1. 서비스 종료일: 2023년 6월 16일

2. 신규 회원가입 및 블로그 신규 개설 중단: 2023년 3월 13일

3. 일부 기능 중지: 2023년 3월 13일 

구글 애드센스, 마이리더(RSS), API 센터, 개인 도메인 등

4. 블로그 데이터 백업: 2023년 6월 16일~2023년 12월 18일

*서비스 운영 상황에 따라 위 일정은 다소 조정될 수 있으며, 백업 관련 상세 안내는 6월 16일 다시 안내 드리도록 하겠습니다.

[링크 : http://ebc.egloos.com/8780]

'개소리 왈왈 > 블로그' 카테고리의 다른 글

블로그 방문자 수  (2) 2023.05.08
티스토리 로고변경  (4) 2023.03.29
해피빈 기부  (0) 2023.02.17
티스토리 약관 개정.. 이것 봐라?  (0) 2023.01.04
블로그 공개는 2주나 한달에 한번?  (0) 2022.12.06
Posted by 구차니
embeded/esp322023. 3. 13. 19:33

특이하게(?)

abs

add2,4,8  y = x + 2

이런 명령어가 추가되어있다

 

다만 neon 같은 simd 명령어는 없고

shift, add, sub는 있지만 mul, div가 없다.

 

https://0x04.net/~mwk/doc/xtensa.pdf

https://www.esp32.com/viewtopic.php?t=6477

'embeded > esp32' 카테고리의 다른 글

esp32 bt hid  (0) 2023.11.30
esp32-cam에 lcd 달기  (0) 2023.11.18
esp32cam ptz 카메라 완료  (0) 2021.12.30
esp32 servo와 flash  (0) 2021.11.28
esp32 flash on/off 버전  (0) 2021.11.27
Posted by 구차니
이론 관련/전기 전자2023. 3. 13. 17:53

잘 만들면 -3dB의 감쇠만을 가지는 분배기 만들때 들어가는 회로

원형으로 생겼고 끝에는 다시 저항으로 묶여 있는 신기한 구조다.

 

[링크 : http://www.rfdh.com/bas_rf/begin/coupler.php3]

 

[링크 : https://en.wikipedia.org/wiki/Wilkinson_power_divider]

'이론 관련 > 전기 전자' 카테고리의 다른 글

진폭 복조  (0) 2023.06.09
인덕턴스  (0) 2023.04.20
RC / RCD 스너버  (0) 2023.03.04
스위칭 파워 노이즈  (0) 2023.03.04
밴드패스 필터  (0) 2023.03.03
Posted by 구차니

'Programming > javascript & HTML' 카테고리의 다른 글

javascript 정수는 정수가 아니다  (0) 2023.04.06
websocket binarytype  (0) 2023.04.04
Math.min.apply()  (0) 2023.02.07
web 렌더러 벤치마크  (0) 2022.12.22
웹에서 f5 갱신 막기  (0) 2019.06.04
Posted by 구차니

등쪽이 뭉쳐서 그런가 자도 자고 피곤하고 자더라도 자꾸 깬다.

마음 같아서는 충격파 치료 3일에 한번은 가고 싶은데 돈도 돈이고

시간이.. 쩝..

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

리듬.깨짐  (0) 2023.03.26
외근 외근.야근  (0) 2023.03.21
피곤  (0) 2023.03.11
피곤피곤 개피곤  (0) 2023.03.09
듀유유유  (0) 2023.03.07
Posted by 구차니

피곤

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

외근 외근.야근  (0) 2023.03.21
언제나 피곤  (0) 2023.03.12
피곤피곤 개피곤  (0) 2023.03.09
듀유유유  (0) 2023.03.07
집정리  (0) 2023.03.06
Posted by 구차니
Programming/chart.js2023. 3. 10. 16:23

클릭하면 당연히(?) 줄 그어져서 죽는데

코드로 처음부터 해당 항목을 hidden 상태로 표시하려니 먼가 묘하게 어렵다?

 

function(e, legendItem, legend) {
    const index = legendItem.datasetIndex;
    const ci = legend.chart;
    if (ci.isDatasetVisible(index)) {
        ci.hide(index);
        legendItem.hidden = true;
    } else {
        ci.show(index);
        legendItem.hidden = false;
    }
}

[링크 : https://www.chartjs.org/docs/latest/configuration/legend.html]

 

매우 귀찮으니(!)

chart 라는 변수에 chart.js 객체가 존재한다면

아래의 legned.chart.hide(index) 로 끄고 legned.chart.show(index) 로 표시할 수 있다.

index 이니 0부터 시작함에 주의!

//var chart = new chart()
chart.legend.chart.hide(1)
chart.legend.chart.show(1)

'Programming > chart.js' 카테고리의 다른 글

chart.js 반응형 설정시 작아지는데 안커지는 문제  (0) 2024.06.27
chart.js multi y axis  (0) 2023.09.27
chart.js 수직 도움선  (0) 2023.01.27
Posted by 구차니
Linux2023. 3. 10. 14:29

전원키 5초 이상 누르고 끄는 것 처럼 키 조합을 통해 종료하는게 있는건 처음 알았네

 

 Alt+PrtSc and pressed R, E, I, S, U, B.

[링크 : https://unix.stackexchange.com/questions/696886/altprtscreisub-doesnt-shut-down-computer]

 

The key combination consists of Alt+SysRq and another key, which controls the command issued

[링크 : https://en.wikipedia.org/wiki/Magic_SysRq_key]

 

qwerty는 상관없는데 dvorak 으로 쓰면 이상하게 꺼지는 경우가 있는 듯?

쿼티로 reisub 은, 드보락으로 p.cogx 가 된다

[링크 : https://www.nemonein.xyz/2023/01/7453/]

 

unRaw      (take control of keyboard back from X),
 tErminate (send SIGTERM to all processes, allowing them to terminate gracefully),
 kIll      (send SIGKILL to all processes, forcing them to terminate immediately),
  Sync     (flush data to disk),
  Unmount  (remount all filesystems read-only),
reBoot.

[링크 : https://askubuntu.com/questions/926461/whats-the-difference-between-the-magic-reisub-reset-and-holding-down-the-power]

'Linux' 카테고리의 다른 글

리눅스 커맨드 라인에서 몇줄씩 건너뛰고 출력하기  (0) 2023.03.30
bash completion  (0) 2023.03.27
shopt nohup  (0) 2023.01.27
리눅스 배터리 wear level  (0) 2023.01.04
mpx - Multi-pointer X  (0) 2022.12.27
Posted by 구차니