'잡동사니'에 해당되는 글 13031건
- 2023.06.28 더워어어어어
- 2023.06.27 golang echo 서버 이상한 버그 발견?
- 2023.06.26 ubuntu 22.04 wayland vs x.org on 4K dual
- 2023.06.25 6.25
- 2023.06.25 기절
- 2023.06.24 피곤
- 2023.06.23 recv 와 read 차이
- 2023.06.23 shell과 nc를 이용하여 주기적으로 데이터 보내기
- 2023.06.22 intel 내장형 그래픽과 4k60p(DP)
- 2023.06.21 pxe boot
아래와 같이 staticweb을 띠우도록 하고 browse 기능을 켜면 되는데
e := echo.New() e.Use(middleware.StaticWithConfig(middleware.StaticConfig{ Root: "html", Browse: true, })) |
문제는 index.html이 있을 경우
index.html 와 같은 레벨에 있는 sub directory의 경우
들어가서 파일을 보면 경로가 이상하게 작동한다.
머 이런 개뼉다구 같은 버그가 -_-
+
2023.09.13
끝에 / 을 붙여주면 잘 된다.
예를 들어 html/test 라는 디렉토리가 있으면
localhost:5000/test 는 오작동하지만
localhost:5000/test/ 는 정상작동 한다.
directory면 trailing / 정도는 해주란 말이야... ㅠㅠ
'Programming > golang' 카테고리의 다른 글
golang asm (0) | 2023.08.24 |
---|---|
golang goarch=arm64 와 디스어셈블러 (0) | 2023.08.23 |
go ws server client example (0) | 2023.06.08 |
golang waitgroup (0) | 2023.05.24 |
golang echo server middleware (0) | 2023.05.24 |
회사 컴퓨터가 4K dual + FHD 본체 액정으로 쓰는데
일단 케이블의 문제로 인해서 4K 모니터는 전부 30Hz로 사용중인데
화면 찢어짐(tearing)은 확실히 wayland 쪽이 덜하다.
X.org로 구동하면 화면이 이쁘게 찢어진다. -_-
다만 wayland로 하면 barrier 쓸 수가 없고, x.org로 하면 버버버벅.. 우짜냐
'Linux > Ubuntu' 카테고리의 다른 글
htop graph style (0) | 2023.07.07 |
---|---|
mono-complete (0) | 2023.07.05 |
ubuntu 22.04 GUI/CLI 부팅 (0) | 2023.06.18 |
ubuntu dmesg 막혔네? (0) | 2023.06.01 |
python3를 python으로 실행하기 (0) | 2023.02.10 |
flag 안쓰면(NULL) 둘 다 거의 동일하다 라고 보면 될 듯.
The only difference between recv() and read(2) is the presence of flags. With a zero flags argument, recv() is generally equivalent to read(2) (but see NOTES). Also, the following call recv(sockfd, buf, len, flags); is equivalent to recvfrom(sockfd, buf, len, flags, NULL, NULL); NOTES If a zero-length datagram is pending, read(2) and recv() with a flags argument of zero provide different behavior. In this circumstance, read(2) has no effect (the datagram remains pending), while recv() con‐ sumes the pending datagram. The socklen_t type was invented by POSIX. See also accept(2). According to POSIX.1, the msg_controllen field of the msghdr structure should be typed as socklen_t, and the msg_iovlen field should be typed as int, but glibc currently types both as size_t. See recvmmsg(2) for information about a Linux-specific system call that can be used to receive multiple datagrams in a single call. |
[링크 : https://linux.die.net/man/2/recv]
'Linux API > network' 카테고리의 다른 글
bind(): Address already in use (0) | 2023.07.21 |
---|---|
AF_PACKET로 link layer 열기 (0) | 2022.06.09 |
linux tcp server listen accept connect (0) | 2022.05.11 |
ssl socket 예제 (0) | 2022.03.25 |
TCP timeout (0) | 2020.09.29 |
원하는건 좀 달라서 수정이 필요한데.. 아이디어는 아래 글에서 발견
while echo "hello"; do sleep 20 done | nc -q 192.168.100.161 2612 |
[링크 : https://stackoverflow.com/questions/44078540]
echo는 while 문에서 주기적으로 생성하고
done 에서 파이프 라인으로 연결해주면 끝!
$ cat nc2.sh target=192.168.0.100 while [ 1 ] do echo -n -e "\x01\x02\x03\x04\x05\x06" sleep 1 done | nc ${target} 6000 | hexdump -C |
'프로그램 사용 > nc' 카테고리의 다른 글
nc 엔터 없이 보내기 (0) | 2024.01.17 |
---|---|
nc -k 옵션 (0) | 2021.11.19 |
USB C to DP 구매하고(회사돈으로!)
DP 1.4 지원하는 모니터에 연결하니 4k60p잘 나온다.
7 세대, 8 세대, 10세대 모두 ok
좀 비싼 해결책으로는 USB-C to HDMI2.0 을 구매하는건데
dp는 싼건 8천원 선 HDMI2.0은 3~4만원대로 모니터가 지원만 한다면
DP 컨터버로 쓰는게 나을 듯.
그런데 DP 컨버터라 하기도 애매한게..
USB-C ALT DP 로 모드만 설정해주는 IC 하나 들어있으면
DP 선 그대로~ 물리적으로만 연결해주면 될 것 같은데(혹은 Level shifter 정도?)
의외로 싸진 않은 느낌..
'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글
보조배터리 (0) | 2023.07.26 |
---|---|
삼성 always 9 13인치 분해 (0) | 2023.07.12 |
intel 내장 세대별 해상도 (0) | 2023.06.21 |
1050 구매 (0) | 2023.06.20 |
박스 컴퓨터.. 실패? (0) | 2023.06.18 |
'프로그램 사용 > PXE(네트워크 부트)' 카테고리의 다른 글
DHCP hostname (0) | 2020.10.14 |
---|---|
DHCP / BOOTP / TFTP (4) | 2010.04.27 |
PXE 부팅하기 (0) | 2010.04.25 |
PXE를 통한 우분투/XP 설치 (0) | 2009.12.09 |