Holy cows. Mac Mini M1 16GB, 2020 model with only 8/8 cores.
Has a native Mac port. Just run through Mac Steam. Smooth as butter on a 8/8 core M1.
- Use Whisky.
- Use Windows 10, set version to
14494
; | |
; Guild Wars Mouselook Toggle v1.2b | |
; | |
; - Toggle Mouselook with Tab key | |
; | |
; >> While Mouselook is on use the mouse wheel for Camera Zoom In/Out | |
; | |
; >> While Mouselook is on, press Interract key to select the entity in front of the character | |
; and automatically turn off Mouselook - very handy to loot chest, start a NPC dialogue etc. | |
; |
1296c1296 | |
< 35588 facsimilie 謄 トウ 1211 1296 17 | |
--- | |
> 35588 facsimile 謄 トウ 1211 1296 17 | |
3682c3682 | |
< 20842 Unicode #20842 兪 ツ 20842 20842 9 | |
--- | |
> 20842 Unicode #20842 兪 ユ 20842 20842 9 | |
5469c5469 | |
< 23032 Unicode #23032 姸 ケンゲン 23032 23032 8 |
jekyll
for Github Pages.Double check the pre-installed version of RUBY we DONT want (version 2.6)
$ ruby -v
;==================================================================== | |
; | |
; EverQuest II ( EQ2 ) Better Mouse Look Toggle | |
; | |
; | |
; INSTALL (do this once) | |
; 1. launch game, go to Options > Performance | |
; - UNCHECK "fullscreen" (we want "windowed" mode) | |
; - SELECT the desktop resolution | |
; 2. Exit game |
// first attempt : but why? | |
const log = (...args: [any?, ...any[]]) => { console.log.apply(console, args) } | |
// better : use console.log() signature | |
const log = (msg?: any, ...params: any[]) => { console.log.apply(console, [msg, params]) } | |
// test | |
log('document is %o', document) |
/** | |
* A tiny jQuery inspired library for common DOM manipulation. | |
* | |
* BROWSER SUPPORT | |
* | |
* Recent versions of Edge, Chrome, Safari, iOS Safari, Chrome for Android (as per caniuse.com) | |
* NOT supported: IE <= 9, Opera Mini. | |
* | |
* | |
* NOTES |
// Add some sizes to tailwind text-* utilities | |
// | |
// Outputs eg: | |
// | |
// .text-3\.5 { | |
// font-size: 3.5rem; | |
// } | |
$textExtraSizes: (('2' 2), ('3\\.5' 3.5), ('4\\.3', 4.3)); | |
@each $size in $textExtraSizes { | |
.text-#{nth($size, 1)} { |
<!-- some page content --> | |
<!-- buttons, that will stick to top as the user keeps scrolling --> | |
<div id="JsPreshopSticky"> | |
<button>Sign up</button> | |
<button>Sign in</button> | |
</div> | |
<!-- more page content --> |
; | |
; VMRC "Maximizer" | |
; | |
; Simple procedure to maximize VMRC's desktop area, while keeping the Windows 10 | |
; taskbar docked to the side. Remove the VMRC window titlebar, and the toolbar. | |
; | |
; SETUP | |
; | |
; - Set Windows Taskbar docked to the right | |
; |