This file contains 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
document.onmousemove = function(e){ | |
e.target.title = `screenX,Y:\t\t${e.screenX},${e.screenY} | |
pageX,Y:\t\t${e.pageX},${e.pageY} | |
clientX,Y:\t\t${e.clientX},${e.clientY}`; | |
}; |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>WebRTC Webcam Demo</title> | |
</head> | |
<body> | |
<video id="video-preview" muted></video> |
There is an easy fix for the system crash during the latest E-Prime 3 installation running Windows 10 20H1 (Build 19041.X).
The crash report displays: Stop code: PAGE FAULT IN NONPAGED AREA ; What Failed: aksfridge.sy
.
The crash is related to the E-Prime installer which ships with an old driver for the Sentinel HASP/LDK hardware dongle. You can, however, install the update-to-date HASP drivers manually. Follow the steps:
- Download and install Sentinel HASP/LDK - Windows GUI Run-time Installer.
- Install E-Prime
- Profit
This file contains 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
Sub send_email() | |
' Check if Mail was sent (value = 1) if so, do nothing | |
If Range("B5").Value = 1 Then Exit Sub | |
Dim NewMail As Object | |
Dim MailConfig As Object | |
Dim SMTP_Config As Variant | |
Dim strSubject As String | |
Dim strFrom As String |
Microsoft will release GUI app support for WSL in the next Windows 11; more information are here:
This file contains 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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all profiles | |
"colorScheme": "Campbell", | |
"fontFace": "Fira Code", |
This file contains 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
; "Extended"="" requires you holding down shift key to reveal the entry | |
; Terminal Icon https://raw.githubusercontent.com/microsoft/terminal/master/res/terminal.ico | |
; \Directory\ enables Terminal to show when right click on a directory | |
; \Background\ enables Terminal to show when right click within a folder | |
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\shell\wt] | |
@="Open Terminal here" | |
"Extended"="" |