'잡동사니'에 해당되는 글 13033건

  1. 2022.06.08 개발자는 맥을 쓴다? 14
  2. 2022.06.08 weston desktop-shell output destory
  3. 2022.06.07 freeT SKT -> freeT KT 번호이동
  4. 2022.06.07 LG SH5 어댑터 정보
  5. 2022.06.06 LG SH5 스피커 분해
  6. 2022.06.05 일정 끝
  7. 2022.06.04 스피커 가격 하락인데..
  8. 2022.06.03 무선우퍼 줍줍
  9. 2022.06.02 쓰레기를 주웠나...
  10. 2022.06.02 a/w
Apple2022. 6. 8. 14:19

그냥 머랄까.. 개발자도 워낙 분야가 많은데 무슨 개발자를 지칭하는진 모르겠지만

최소한 임베디드 리눅스 와, 임베디드(MCU) 개발자는 맥을 쓸 이유가 없을 듯 하다.

 

개인적으로는 개발자 중에 아래의 직군(?)에는 쓸만하다고 생각된다.

1. 안드로이드 + iOS 앱 개발자

 

아래 직군에게는 굳이? 라는 느낌

1. 웹 개발 (DB, WAS, frontend, backend.. 솔찍히 killer app의 차이, 디자이너 프로젝트 공유라면 조금은 수긍 가능)

2. 파이썬 + 딥러닝 (리눅스나 맥이나..)

3. 유닉스 개발 (바이너리 호환성도 없는데 가능할까?)

 

아래 직군에게는 비추

1. 리눅스 시스템 어플리케이션 개발

2. 윈도우 어플리케이션 개발

3. MCU, FPGA 개발

4. openGL, openCV 개발

5. QT 개발

 

아무튼.. 윈도우에서 맥을 개발할 것을 기대하지 않듯

맥에서 리눅스를 개발할 것을 기대하면 안된다.

bash 쉘이 돌아간다고 해서(zsh이 기본이긴 하지만) 쉘이 전부가 아니기에..

 

 

[링크 : https://heyoonow.tistory.com/53]

[링크 : https://webisfree.com/2020-08-24/개발자에게-맥북-mac-장비가-필요할까]

[링크 : https://m.blog.naver.com/hanbroz/221266822987]

 

비싼 터미널로 쓸거면 왜 굳이 맥을.. 이라는 느낌이 들게 한 글

[링크 : https://greypencil.tistory.com/127]

 

아무튼.. 

윈 <-, -> 처럼 간단하게 창을 나누어서 옮기는 것도 기본 OS 상태에서는 안되고

유틸리티 깔아서 설정해야 되는데 이걸 편하다고 해야할진 모르겠다.

우분투만 해도 기본적으로 gnome에서 제공하고 있는 기능인데 말이다.

[링크 : https://travel.plusblog.co.kr/810]

'Apple' 카테고리의 다른 글

맥 초기화, 설치 usb?  (0) 2022.06.18
USB 이더넷 인식이 맥에서 안되네?  (0) 2022.06.18
맥은 맥이다. (mac is NOT LINUX)  (0) 2022.05.29
.DS_Store 파일 생성 막기  (0) 2022.05.28
mac 창 분할 사용하기  (0) 2022.05.01
Posted by 구차니

drm 에서 HDMI hotplug를 아래 코드에서 처리하는데 shell로 어떻게 넘겨주는진 발견하지 못했다.

static int
udev_drm_event(int fd, uint32_t mask, void *data)
{
struct drm_backend *b = data;
struct udev_device *event;
uint32_t conn_id, prop_id;

event = udev_monitor_receive_device(b->udev_monitor);

if (udev_event_is_hotplug(b, event)) {
if (udev_event_is_conn_prop_change(b, event, &conn_id, &prop_id))
drm_backend_update_conn_props(b, conn_id, prop_id);
else
drm_backend_update_heads(b, event);
}

udev_device_unref(event);

return 1;
}

static void
drm_backend_update_heads(struct drm_backend *b, struct udev_device *drm_device)
{
/* collect new connectors that have appeared, e.g. MST */
for (i = 0; i < resources->count_connectors; i++) {
uint32_t connector_id = resources->connectors[i];

head = drm_head_find_by_connector(b, connector_id);
if (head) {
drm_head_update_info(head);
} else {
head = drm_head_create(b, connector_id, drm_device);
if (!head)
weston_log("DRM: failed to create head for hot-added connector %d.\n",
   connector_id);
}
}
}

static void
drm_head_update_info(struct drm_head *head)
{
drmModeConnector *connector;

connector = drmModeGetConnector(head->backend->drm.fd,
head->connector_id);
if (!connector) {
weston_log("DRM: getting connector info for '%s' failed.\n",
   head->base.name);
return;
}

if (drm_head_assign_connector_info(head, connector) < 0)
drmModeFreeConnector(connector);

if (head->base.device_changed)
drm_head_log_info(head, "updated");
}

static void
drm_head_log_info(struct drm_head *head, const char *msg)
{
if (head->base.connected) {
weston_log("DRM: head '%s' %s, connector %d is connected, "
   "EDID make '%s', model '%s', serial '%s'\n",
   head->base.name, msg, head->connector_id,
   head->base.make, head->base.model,
   head->base.serial_number ?: "");
} else {
weston_log("DRM: head '%s' %s, connector %d is disconnected.\n",
   head->base.name, msg, head->connector_id);
}
}

 

다만.. 아래의 코드에서 등록되어 output이 파괴될때 트리거 되어 작동하는 녀석만 발견함.

static void
handle_output_destroy(struct wl_listener *listener, void *data);

static void
create_shell_output(struct desktop_shell *shell,
struct weston_output *output)
{
struct shell_output *shell_output;

shell_output = zalloc(sizeof *shell_output);
if (shell_output == NULL)
return;

shell_output->output = output;
shell_output->shell = shell;
shell_output->destroy_listener.notify = handle_output_destroy;
wl_signal_add(&output->destroy_signal,
      &shell_output->destroy_listener);
wl_list_insert(shell->output_list.prev, &shell_output->link);

if (wl_list_length(&shell->output_list) == 1)
shell_for_each_layer(shell,
     shell_output_changed_move_layer, NULL);
}

static void
handle_output_create(struct wl_listener *listener, void *data)
{
struct desktop_shell *shell =
container_of(listener, struct desktop_shell, output_create_listener);
struct weston_output *output = (struct weston_output *)data;

create_shell_output(shell, output);
}


static void
setup_output_destroy_handler(struct weston_compositor *ec,
struct desktop_shell *shell)
{
struct weston_output *output;

wl_list_init(&shell->output_list);
wl_list_for_each(output, &ec->output_list, link)
create_shell_output(shell, output);

shell->output_create_listener.notify = handle_output_create;
wl_signal_add(&ec->output_created_signal,
&shell->output_create_listener);

shell->output_move_listener.notify = handle_output_move;
wl_signal_add(&ec->output_moved_signal, &shell->output_move_listener);
}

WL_EXPORT int
wet_shell_init(struct weston_compositor *ec,
       int *argc, char *argv[])
{
setup_output_destroy_handler(ec, shell);
}

'프로그램 사용 > wayland' 카테고리의 다른 글

libwayland debug 메시지  (0) 2022.06.27
libwayland  (0) 2022.06.27
weston debug message  (0) 2022.03.18
weston drm atomic  (0) 2022.03.17
wayvnc 실행 실패  (0) 2022.02.17
Posted by 구차니

어찌어찌 번호이동 성공 -_-

원래는 선개통되서 오더니, 코로나 인력부족인가? 갑자기 자가개통으로 유심만 떨렁 던졌다.

 

오늘 상담원 전화와서 개통했는데

유심재사용 가능하다고한다

다만 선불, 후불 구분이 되어야 하고

가끔 초기화 안되어서 못쓰는 경우가 있으나 가입시 유심번호 적어놔서

조회하고 알려준다고 하니, 다음부터는 유심 구매안하고 점프해봐야 할 듯.

 

앞으로 6개월 이후 점프 예정!

'개소리 왈왈 > 모바일 생활' 카테고리의 다른 글

요금제 변경 시도  (0) 2022.09.05
아이패드 초기화 하기  (0) 2022.07.27
요금제 변경 시도  (0) 2022.06.02
어라 요금제 폭탄?  (0) 2022.05.17
노트5 파.. 쇄?  (0) 2022.05.09
Posted by 구차니

LG 전자 상담해서 획득

어댑터 EAY64290801, 전원코드 EAD61891201

 

그런데.. 해당 코드로 검색을 하니 전압이나 구경은 더 안나오는게 함정 -_ㅠ

나오는 녀석만 주구장창 나오고

[링크 : https://ko.aliexpress.com/i/4000804231906.html]

 

EAY64290801 TV AC Power Supply Adapter

읭.. 티비용 어댑터?

사진이 맞다면 25V 1.52A로 보이는게 맞는것 같긴한데..

[링크 : https://lgparts.com/products/eay64290801]

 

+

번호 이동중에 전화와서 30분 시간 빼앗은 느낌이라 미안하네...

아무튼 어댑터 3.3만, 케이블 8천, 리모컨 2.4만

하아..

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

LG SH5 블루투스, 음악감상  (0) 2022.06.12
LG SH5 사운드바 어댑터/리모컨 구매  (0) 2022.06.11
LG SH5 스피커 분해  (0) 2022.06.06
스피커 가격 하락인데..  (0) 2022.06.04
무선우퍼 줍줍  (0) 2022.06.03
Posted by 구차니

인기없던 모델인지 분해 동영상이나 메뉴얼이 안나와서 부서먹을 각오하고 대충 푸니 어찌어찌 열린다.

하단 나사를 왕창 풀고 들어 올리면 되는데 1m에  달하는 길이라 빼는것도 쉽지 않아

일자 드라이버로 벌리고 어찌어찌 빼냈다.

 

일단 하단 규격으로는 25V 22W 라고 써있어서 발견한 두개의 어댑터 모두 맞지 않는 것 같긴하다.

 

DA-38A25 25V 1.52A 5.5 x 1.5mm

[링크 : http://www.tmon.co.kr/deal/7431560182]

 

DA-50H25 25V 2.0A 6.3 x 1.7mm

[링크 : https://www.11st.co.kr/products/2372323847?trTypeCd=21&trCtgrNo=585021]

 

25V 22W LG SK4D 용

[링크 : https://www.amazon.com/QKKE-Replacement-AC-DC-Adaptor-2-1ch/dp/B089CTPTB4]

 

 

대충 보기에는 HDMI 관련되었을 Silicon image칩

ARM 이라고 써있는 메인 컨트롤러

Crirrus라는 오디오 칩(SPDIF, DTS 등?) 정도가 눈에 띈다.

 

그 망할 DC 잭 부품

 

대충 보기에는 6.5 x 1.0mm 정도로 보이는데

 

silicon image SiI9533CNUC / Port Processor

[링크 : https://datasheet.lcsc.com/lcsc/1912111437_Lattice-SII9533CNUC_C369575.pdf]

 

MB8811C1 / intel Bluetooth 모듈 + 안테나

[링크 : https://fccid.io/VNH-MB8811C1/User-Manual/User-Manual-3307597]

 

MCS LOGIC 사의 프로세서, 내용 없음

[링크 : http://www.mcslogic.com/sub2_001.html]

 

winbond W25Q80DV 8Mbit 80MHz 시리얼 NOR Flash

[링크 : https://www.winbond.com/hq/product/code-storage-flash-memory/serial-nor-flash/?__locale=en&partNo=W25Q80DV]

 

Macronix International Co(MXIC) MX25L6435E 64Mbit 시리얼 NOR Flash

[링크 : https://www.macronix.com/Lists/ApplicationNote/Attachments/1887/AN183V1-MGRT-MX25L6436E%20to%206435E.pdf]

 

동일 제품 검색 실패

PULSUS PS9860 / 92kHz 24bit SoC Audio solution (PS9850)

[링크 : http://www.datasheet-pdf.com/PDF/PS9850-Datasheet-PULSUS-920012]

 

Cirrus logic CS8422 24bit 192kHz AES3, SPDIF 수신기

[링크 : https://www.kr.cirrus.com/products/cs8422/]

 

TI PCM1808 24bit 99dB SNR 96kHz stereo ADC

Line in용 처리인가?

[링크 :https://www.ti.com/product/PCM1808...]

 

뜯기 싫어 정체불명. 우퍼쪽 무선 전송은 아니겠지?

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

LG SH5 사운드바 어댑터/리모컨 구매  (0) 2022.06.11
LG SH5 어댑터 정보  (0) 2022.06.07
스피커 가격 하락인데..  (0) 2022.06.04
무선우퍼 줍줍  (0) 2022.06.03
쓰레기를 주웠나...  (0) 2022.06.02
Posted by 구차니

처갓집, 본가 양쪽 일정 완료

하루는 쉴 수 있... 겠지?

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

6.25  (0) 2022.06.25
어머니 생신  (0) 2022.06.25
빛나는 배드민턴 공  (0) 2022.06.01
피곤  (0) 2022.05.26
어제는.기절  (0) 2022.05.21
Posted by 구차니

ESTLA (이스트라) ES-SB90W

어떻게 저걸 이스트라 라고 읽어야 하는지 감이 안오고.. 90와트 제품인 듯 한데

아래 검색된 세개 글이 리뷰의 전부 -_-

도대체 무슨 장비냐.. 넌...

 

2 구매(그냥저냥 1 나빠 1), 1 이벤트(그냥저냥 1)

흐음.. 미묘하다 미묘해..

[링크 : https://manicue.tistory.com/7]

[링크 : https://blog.naver.com/manicue/222216771613]

[링크 : https://blog.naver.com/dkzmalfmr/222205932891]

 

메뉴얼

[링크 : https://estla.co.kr/49/?q=YToxOntzOjEyOiJrZXl3b3JkX3R5cGUiO3M6MzoiYWxsIjt9&bmode=view&idx=5729970&t=board]

[링크 : http://itempage3.auction.co.kr/DetailView.aspx?itemno=C259829136] tv 구매시 5.9만?

 

아무튼 중고로 2만원 돈 주고 사는게 나을지..

아니면 작동할지도 모르는 LG SH5 어댑터 5만원대 인데 그걸 사는게 나으려나 감이 안오네..

근데 LG 사운드 바 어댑터는 25V 라서 쉽게 구할수 있는 녀석이 아닌데다

DC 잭 쪽도 변태스러운 거라 변환젠더도 잘 안보인다 ㅠㅠ

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

LG SH5 어댑터 정보  (0) 2022.06.07
LG SH5 스피커 분해  (0) 2022.06.06
무선우퍼 줍줍  (0) 2022.06.03
쓰레기를 주웠나...  (0) 2022.06.02
도메인 결제  (0) 2022.06.02
Posted by 구차니

다행히(?) 나무류라서 재활용에서 가져가지 않고 버려져 있어서

잽싸게 줍줍!

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

LG SH5 스피커 분해  (0) 2022.06.06
스피커 가격 하락인데..  (0) 2022.06.04
쓰레기를 주웠나...  (0) 2022.06.02
도메인 결제  (0) 2022.06.02
IE11 도 안녕  (0) 2022.05.25
Posted by 구차니

LG전자 SH5 무선 블루투스 사운드 바

[링크 : http://prod.danawa.com/info/?pcode=3848255]

[링크 : https://www.11st.co.kr/products/1458110651]

[링크 : http://www.wemakeprice.com/deal/adeal/2675819] 위메프 27.9만

 

우퍼가 무선이었네.. 같이 주워다 놓을걸 그랬나..

그런데 어댑터 없음, 리모컨 없음 상태라 과연 쓸 수 있을진 모르겠다.

 

어댑터 25V 1.52W 38W 라는데.. 출력이 200 + 60*2 = 320W

전기가 들어가는것 이상으로 출력이 많이 강하게 나오는게 가능한가?

아무튼 5.5 x 1.5mm 라는 이상한 규격

 

[링크 : http://www.tmon.co.kr/deal/7431560182] 5.7만

[링크 : https://www.11st.co.kr/products/4419426596] 47620.. NB3540

[링크 : https://www.11st.co.kr/products/2372323847?trTypeCd=21&trCtgrNo=585021] 20300 + 2500 / 6.3x1.7

 

[링크 : https://www.lg.com/hk_en/sound-bar/lg-SH5]

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

스피커 가격 하락인데..  (0) 2022.06.04
무선우퍼 줍줍  (0) 2022.06.03
도메인 결제  (0) 2022.06.02
IE11 도 안녕  (0) 2022.05.25
맥 조금 써보고 나서 내린 결론  (0) 2022.05.15
Posted by 구차니

a/w

 

The A/WA/W units refer to the current (in Ampère) produced per Watt of light incident on the photodiode. This current-production happens when the diode operates in the so-called photoconductive mode. Since your question wasn't on the inner workings of a photodiode, I won't expand on this, but Wikipedia contains some more information if desired.

[링크 : https://physics.stackexchange.com/questions/55074]

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

PID 제어... 2?  (0) 2022.06.20
12V 에서 저항으로 5V 만들...기?  (0) 2022.06.16
TR과 저항으로 AND, OR, NOT구현하기  (0) 2022.04.28
AC 전원 N/L/  (0) 2022.03.16
ac dc coupling  (0) 2022.02.23
Posted by 구차니