Skip to content

Instantly share code, notes, and snippets.

View luojunyuan's full-sized avatar
🏠
have a good day

k1mlka luojunyuan

🏠
have a good day
View GitHub Profile
@cnbluefire
cnbluefire / Directory.Build.props
Last active April 20, 2026 15:33
Enable the "MSIX packaging" context menu in Visual Studio.
<Project>
<PropertyGroup>
<EnableMsixTooling>true</EnableMsixTooling>
<LogSDKReferenceResolutionErrorsAsWarnings>true</LogSDKReferenceResolutionErrorsAsWarnings>
<RuntimeIdentifier Condition="'$(Platform)' == 'x86'">win-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(Platform)' == 'win32'">win-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(Platform)' == 'x64'">win-x64</RuntimeIdentifier>
<RuntimeIdentifier Condition="'$(Platform)' == 'arm64'">win-arm64</RuntimeIdentifier>
<_PublishProfileFileName>win-$(Platform).pubxml</_PublishProfileFileName>
<PublishProfile Condition="'$(_PublishProfileFileName)' != '' and Exists('$(MSBuildProjectDirectory)\Properties\PublishProfiles\$(_PublishProfileFileName)')">$(_PublishProfileFileName)</PublishProfile>
@dantmnf
dantmnf / Huawei MateBook E Go (Wi-Fi).md
Last active March 20, 2026 14:51
Huawei MateBook E Go (Wi-Fi)

The Huawei MateBook E Go (Wi-Fi) is a Windows on ARM device based on Qualcomm Snapdragon 8cx Gen 3 platform at a reasonable price compared to Surface and ThinkPad.

Before you purchase…

Caveats

  • The native orientation of the display panel is portrait.
  • The keyboard cover doesn’t outperform 2015 Surface.
    • No backlight
    • No wired connection - lags
    • Doesn’t get disabled when flipped to back
  • The quality of touch panel and pen driver is questionable.
@taskylizard
taskylizard / fmhy.md
Last active May 15, 2026 05:18
/r/freemediaheckyeah, in one single file (view raw)
@wldevries
wldevries / Program.cs
Last active April 30, 2023 20:56
Disable touch and gesture feedback in Windows
using System;
using System.Runtime.InteropServices;
namespace SetTouchSettings
{
class Program
{
private static class NativeMethods
{
[DllImport("user32.dll", EntryPoint = "SystemParametersInfo", SetLastError = true)]
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active May 15, 2026 06:22
Conventional Commits Cheatsheet
> dumpbin /exports .\twitter.dll
Microsoft (R) COFF/PE Dumper Version 14.10.25019.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file .\twitter.dll
File Type: DLL
Section contains the following exports for twitter.dll
@btfak
btfak / useHexo.md
Created May 26, 2016 09:41
How to use Hexo and deploy to GitHub Pages
@famousgarkin
famousgarkin / powershell-proxy-set-clear.ps1
Last active July 24, 2024 17:04
PowerShell Set-Proxy, Clear-proxy
# NOTE: registry keys for IE 8, may vary for other versions
$regPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings'
function Clear-Proxy
{
Set-ItemProperty -Path $regPath -Name ProxyEnable -Value 0
Set-ItemProperty -Path $regPath -Name ProxyServer -Value ''
Set-ItemProperty -Path $regPath -Name ProxyOverride -Value ''
[Environment]::SetEnvironmentVariable('http_proxy', $null, 'User')
@fyears
fyears / generate.sh
Created November 2, 2014 06:31
pyside+qml+pyinstaller
pyinstaller -F -w --noupx main.spec