Mozg

 https://habr.com/ru/company/ruvds/blog/582126/


четверг, 7 октября 2021 г.

Раскрас

https://habr.com/ru/article/581654/

Но нейросети действительно умеют раскрашивать чёрно-белые фотографии — и довольно неплохо! Если ты давно хотел раскрасить портрет бабушки в юности и узнать, какого цвета были ягодки на её платке, то вот репозиторий с исходным кодом и готовый сервис, построенный на этой нейросети.


https://github.com/jantic/DeOldify


https://deepai.org/machine-learning-model/colorizer

Windows 11

https://3dnews.ru/1050468?topblock

-----------

slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX

slmgr.vbs /skms kms8.msguides.com

slmgr.vbs /ato

-----------

https://getproductkey.net/free-windows-11-product-key/

slmgr.vbs /skms s8.now.im

---------

https://support.microsoft.com/en-us/windows/ways-to-install-windows-11-e0edbbfb-cfc5-4011-868b-2ce77ac7c70e

Registry Key: HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup

Name: AllowUpgradesWithUnsupportedTPMOrCPU

Type: REG_DWORD

Value: 1


----------

[HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig]
"BypassTPMCheck"=dword:00000001
"BypassSecureBootCheck"=dword:00000001

-----------
https://rutracker.org/forum/viewtopic.php?t=6079355

FAQ

Как установить Windows 11 без TPM 2.0 и Secure Boot

Примечание:
1. Вы можете не использовать reg-файл, а внести изменения в реестр самостоятельно.
2. В этом случае вместо команды «notepad» нужно выполнить «regedit».
3. После этого с помощью редактора реестра нужно перейти в раздел «HKEY_LOCAL_MACHINE\SYSTEM\Setup» -> создать там папку «LabConfig» -> создать в ней два новых параметра:
  1. BypassTPMCheck=dword:00000001
  2. BypassSecureBootCheck=dword:00000001

--------
appraiserres.zip




-------
Раздел реестра: HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup
Имя: AllowUpgradesWithUnsupportedTPMOrCPU
Тип: REG_DWORD
Значение: 1

HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig
BypassTPMCheck=dword:00000001
BypassSecureBootCheck=dword:00000001

BypassRAMCheck


echo Adding key "BypassCPUCheck" into registry...
reg add "HKLM\SYSTEM\Setup\LabConfig" /v "BypassCPUCheck" /f /t REG_DWORD /d 1 > nul

echo Adding key "BypassStorageCheck" into registry...
reg add "HKLM\SYSTEM\Setup\LabConfig" /v "BypassStorageCheck" /f /t REG_DWORD /d 1 > nul

echo Adding key "BypassRAMCheck" into registry...
reg add "HKLM\SYSTEM\Setup\LabConfig" /v "BypassRAMCheck" /f /t REG_DWORD /d 1 > nul

echo Adding key "BypassTPMCheck" into registry...
reg add "HKLM\SYSTEM\Setup\LabConfig" /v "BypassTPMCheck" /f /t REG_DWORD /d 1 > nul

echo Adding key "BypassSecureBootCheck" into registry...
reg add "HKLM\SYSTEM\Setup\LabConfig" /v "BypassSecureBootCheck" /f /t REG_DWORD /d 1 > nul

echo Adding additional key "AllowUpgradesWithUnsupportedTPMOrCPU" into registry...
reg add "HKLM\SYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /f /t REG_DWORD /d 1 > nul


понедельник, 4 октября 2021 г.

md5 google disk

 

  1. Click the link : https://developers.google.com/drive/v3/reference/files/list

  2. Click the Try it now link in the middle.

    ( An active window appears in the middle )

  3. Scroll down the left pane in the active window.

  4. Under fields section on the left pane, fill

    files(md5Checksum,originalFilename)

  5. Now we will limit access scopes :

    (i) leave the Google OAuth 2.0 selected & clear the box against API key.

    (ii) Expand Show scopes under Google OAuth 2.0

    (iii) Clear all the scopes but keep this one selected:

     **https: //www.googleapis.com/auth/drive.metadata.readonly**
    
  6. Now click EXECUTE in blue.

    (A new Google Sign In Window will open)

  7. Use that window to Sign in with the respective google account & click Allow to permit the Google APIs Explorer access files in your google drive.

    It's done! A new window will open with the results in lower right code pane. It will provide the names & md5Checksums for all the files in the respective google drive account.

  8. Click outside of the active window to close the window & close the Google Drive API tab. Now you can sign out of the google account if you want!



суббота, 2 октября 2021 г.

asm128

Компиляторы GCC и Clang имеют встроенную поддержку типа int128, в отличие от MSVC под Windows.

https://itnan.ru/post.php?c=1&p=560274

https://habr.com/ru/company/pvs-studio/blog/560274/