Visual Studio Community 2022 조직에서의 사용권 범위는 다음과 같습니다.


· OSI(오픈소스 이니셔티브)에서 승인한 오픈소스 소프트웨어 라이선스에 따라 출시된 응용 프로그램의 개발 및 테스트를 목적으로 소프트웨어 사용 가능
· Visual Studio에 대한 확장 기능의 개발 및 테스트 목적으로 소프트웨어 사용 가능
· Windows 운용 체제에 대한 장치 드라이버의 개발 및 테스트 목적으로 소프트웨어 사용 가능
· Microsoft SQL Server Data Tools 또는 "Microsoft Analysis Services Projects" / "Microsoft Reporting Services Projects" 또는 "SQL Server Integration Services Projects" 확장 기능을 사용하여 Microsoft SQL Server 데이터베이스 프로젝트 또는 Analysis Services / Reporting Services / Power BI Report Server 또는 Integration Services 프로젝트를 개발할 때 Microsoft SQL Server 개발에만 소프트웨어 사용 가능
· 강의실 교육(온라인 또는 직접)의 일환으로 응용 프로그램의 개발 및 테스트 목적 또는 교육 연구 수행 목적으로 소프트웨어 사용 가능


Visual Studio Community 2022 라이선스 약관 내 기업의 정의는 다음과 같습니다.
· 250대보다 많은 PC 또는 250명 보다 많은 사용자가 있는 조직
· 연간 매출이 미화 1백만 달러(또는 다른 통화에서 이와 동등한 금액) 이상을 초과하는 조직 및 계열사
※계열사: 조직을 통제하거나(과반수 소유권을 통해) 조직의 통제를 받거나 조직과 공동 통제권을 가지고 있는 모든 업체


만일, 라이선스 약관 내 정의된 기업에 해당되는 경우라면 상기 안내드린 5가지 경우로만 Visual Studio Community 2022를 사용하여야 하며, 일반 응용 프로그램 개발 및 테스트 목적으로는 사용 불가합니다.
또한, 기업의 정의에 해당되지 않는 경우라면 최대 5명의 개별 사용자가 응용 프로그램 개발 및 테스트 목적으로 사용 가능합니다.

 

,

Brotli 압축이 적용된 인코딩, TLS v1.3

Argo Smart Routing

 

https://ridicorp.com/story/cloudflare-dos-and-donts/

 

Cloudflare 도입 후기 - 리디주식회사 RIDI Corporation

5년간의 Cloudflare 사용 후기를 공유합니다.

ridicorp.com

 

,

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://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
,

정말 빠르다. AcdSee 보다 빠른듯한 느낌.

 

https://www.faststone.org/FSIVDownload.htm

,