This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Emotional Labor | |
| Intellectual Property | |
| Social Capital | |
| Cognitive Bias | |
| Hermeneutic Circle | |
| Systemic Racism | |
| Creative Destruction | |
| Informed Consent | |
| Narrative Identity | |
| Hedonic Treadmill |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires -RunAsAdministrator | |
| #Create shortcut with target : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -WindowStyle Hidden -File "K:\miHoYo\Honkai Impact 3rd\HonkaiLauncher.ps1" | |
| $currentDir = (Split-Path $script:MyInvocation.MyCommand.Path) | |
| $originalCulture = Get-Culture | |
| Set-Culture 'en-GB' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In this post, .net platform has this pinvoke mechanism where it is allowed that you call into the Native windows . | |
| this is extremely useful when you have some 3rd party libraries or if you try to program against with the low-level windows APIS. | |
| One of the typic application htat utilize the Lowe-level windows apis are those Native win32 applications. Where you creat a message pump with the necessary WNDCLASSEX to represent/register the window message pump and message handler process. What you will deal with the win32 applications include the following. | |
| RegisterClassEx, CreateWindowEx, GetMessage(), TranslateMesage(), and DispatchMessage(...). | |
| to be able to use the Window API, you have to declare tons of Structure and PInvoke Method, while you can find help from the Pinvoke.Net. | |
| First, we will introduce some of the win32/user32 functions and their relative structure definitions. |