Apache2 나 기타 웹서버를 그 컴퓨터에서 돌리고 있으면 login 이 안되고 먹통 또는 이상한 페이지로 redirect 되면서 안된다.

 

Stop 하고 진행하면 잘 된다. Windows XAMPP 나 Linux Apache2 모두 해당.

,

모니터가 없는 headless 로 부팅하면 gui 가속 즉 2d 가속이 안된다. Dummy hdmi 를 구입해서 붙이거나 부팅시에 모니터 물려야. Headless driver 로는 해결안됨

,

일반 드라이버는 모든 것을 포함히고 지원은 1년

Server 는 i386 같은 일부가 빠지고 지원은 2년

Headless 는 display 가 모두 빠진 드라이버

 

,

winsat disc -drive c 

,

1) "Ubuntu-24.04" 부분은 다른 것으로 대체 가능

c:\wsl.exe -l

해서 인스톨된 wsl 의 list 중에서 선택하면 된다. 

2) ports 부분도 바꾼다.

3) 작업스케줄러 -> 시스템시작시에 등록.

 

wsl-connect-external.ps1

#PowerShell.exe -ExecutionPolicy Bypass -File .\wsl-forward-server.ps1
$remoteport = wsl.exe -d Ubuntu-24.04 -e bash -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';

if( $found ){
  $remoteport = $matches[0];
} else{
  echo "The Script Exited, the ip address of WSL 2 cannot be found";
  exit;
}

#[Ports]

#All the ports you want to forward separated by coma
$ports=@(80,443,10000,3000,5000);


#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";


#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";

#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";

for( $i = 0; $i -lt $ports.length; $i++ ){
  $port = $ports[$i];
  iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
  iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}
,

https://dermnetnz.org/cme/dermoscopy-course/pattern-analysis

 

Dermoscopy. Pattern analysis

Dermoscopy. Pattern analysis. Authoritative facts about the skin from DermNet New Zealand.

dermnetnz.org

 

Global pattern

  • Reticular pattern (diffuse or patchy network)
  • Globular pattern (globules in shades of brown)
  • Homogeneous pattern (diffuse colour)
  • Starburst pattern (uniform peripheral radial streaks, dots or globules)
  • Parallel pattern (along furrows; palms and soles only)
  • Complex pattern (2 patterns within a single lesion, usually symmetrically or regularly distributed)
  • Multicomponent pattern (3 patterns, usually concentric)

Local features

  • Pigment network, evenly spaced, fading out
  • Dots/globules distributed regularly
  • Streaks distributed regularly
  • Central hypopigmentation
  • Symmetrical blotches
  • Comma-like regular vasculature
  • On face: regular pseudonetwork
  • On palms/soles: Parallel furrow, lattice-like or fibrillar pattern

Melanoma

Global pattern

  • Multicomponent pattern (3 or more patterns)
  • Unspecific pattern (mainly structureless or 2 patterns, irregular)
  • Parallel pattern (along ridges; palms and soles only)

Local features

  • Atypical pigment network (branched, broken-up, thickened, asymmetrical)
  • Dots/globules distributed irregularly and of different sizes and shapes
  • Asymmetrical blotches (featureless colours)
  • Focal irregular streaking or peripheral linear projections (radial streaming and pseudopods)
  • Five or six colours (black, brown, tan, grey, blue, red, white)
  • Blue-white veil over part of the lesion
  • White scar-like depigmentation
  • Blue pepper-like granules
  • Irregular linear or dotted vessels, or polymorphous vascular pattern especially with milky-red areas
  • On face: grey dots, pseudonetwork, rhomboidal structures, asymmetrical pigmented follicles, annular-granular structures
  • On palms/soles: parallel ridge, irregular

 

 

 

 

 

 

,

 

(더모스코피 검사의 급여기준)

1. 나661-2 더모스코피 검사는 피부암 등의 감별진단을 목적으로 시행하는 검사로 다음과 같은 질환이 의심되는 피부병변에 시행한 경우에 요양급여를 인정함. 다만, 동 인정기준 외 조갑(손․발톱)질환에 시행하는 경우에는「선별급여 지정 및 실시 등에 관한 기준」에 따라 본인부담률을 80%로 적용함

 

- 다 음 -

 

가. 피부의 양·악성 종양

나. 피부전구암

다. 상기 가., 나.와 관련된 색소성 피부질환

 

2. 실시 횟수 : 진단 시 최초 1회 인정함. 다만, 치료에도 불구하고 해당 병변 위치에 상기 1.가.~다.의 재발이 의심되는 경우 감별진단 목적으로 시행한 경우 추가 인정함

 

3. 실시 기록 : 진료 의사가 더모스코피 검사 소견(병변의 색상, 양상 등)을 진료기록부에 상세히 기록하여야 함.

(고시 제2019-28호, ’19.3.1.)

,

https://github.com/jncraton/languagemodels

 

GitHub - jncraton/languagemodels: Explore large language models in 512MB of RAM

Explore large language models in 512MB of RAM. Contribute to jncraton/languagemodels development by creating an account on GitHub.

github.com

 

상용인듯 한데 그래도 쉽게 써볼 있는 장점이 있다.

max_ram 을 512M ~ 8G 까지 조정해서 여러 모델을 쉽게 사용할 수 있는듯.

 

max_ram

0.5 LaMini-Flan-T5-248M 0.248
1.0 LaMini-Flan-T5-783M 0.783
2.0 LaMini-Flan-T5-783M 0.783
4.0 flan-alpaca-gpt4-xl 3.0
8.0 openchat-3.5-0106 7.0

 

,

https://pureinfotech.com/disable-lock-screen-windows-10/#disable_lockscreen_windows10_regedit

 

Disable Windows 10 Lock Screen from Registry

Windows 10 Home doesn’t include the Local Group Policy Editor, but it is still possible to disable the feature by modifying the Registry. This method works in the Home edition as well as on Windows 10 Pro, Enterprise, and Education.

To disable the Lock Screen through the Registry, use these steps:

  1. Open Start.
  2. Search for regedit, and select the top result to open the Registry.
  3. Browse the following path:
  4. HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows
  5. Right-click the Windows key (folder), select the New submenu, and choose the Key option.
  6. Name the key Personalization and press Enter.
  7. Right-click the Personalization folder, select the New submenu, and choose the DWORD option.
  8. Name the key Nolockscreen and press Enter.
  9. Double-click the Nolockscreen key and set its value data from 0 to 1 to disable the Lock Screen.
  10. Click the OK button.
  11. Reboot the computer.

After you restart your computer, Windows 10 will bypass the Lock Screen and go straight to the sign-in screen.

If you prefer accessing your account without typing a password and skipping the signing-in screen, you can use these instructions to remove the login password in three different ways.

'컴퓨터 이야기~ > 소프트웨어' 카테고리의 다른 글

WSL2 port forwarding script  (0) 2024.09.30
512 메가 램에서도 써볼 수 있는 LLM  (0) 2024.07.14
이미지 뷰어 - FastStone  (0) 2024.06.15
js obfuscator  (0) 2024.06.06
js 로만 이루어진 captcha 인듯  (0) 2024.06.06
,

위 사진처럼 발톱무좀인지 아닌지 맞춰 보는 퀴즈입니다. 10문제를 풀면 정답이 나옵니다.

 

 

같은 문제를 푼 피부과 전문의 / 일반인의 성적과 비교해서 알려줍니다. 피부과 전문의는 70~80 점 정도 맞습니다.

아래 링크클 클릭하면 입장합니다. 도전해 보세요~~

 

https://www.modelderm.com/#quiz2

'피부 이야기~' 카테고리의 다른 글

Dermoscopy Pattern  (0) 2024.09.09
더모스코피 보험 기준  (1) 2024.09.09
피부질환 퀴즈  (0) 2024.07.14
피부질환 퀴즈 - https://www.modelderm.com/#quiz  (0) 2024.06.23
피부 질환 정보 인공지능 – Model Dermatol  (0) 2023.11.19
,