Script

Filter
2025-06-04

Förhindra översättning

Html
Vissa webbläsare översätter automatiskt webbsidor till det lokala språket. Det går att förhindra med några extra taggar. 3 exempel här:
<html translate="no">
<head>
  <meta name="google" content="notranslate">
  <meta charset="UTF-8">
  <title>Min sida</title>
</head>
<body>
  <div translate="no">
    <p>Originaltext som inte ska översättas.</p>
  </div>
</body>
</html> 
2025-03-31

Disable autostart

Windows
How to disable autostarting programs in Windows 11
1. Press Ctrl+Shift+Esc to open Task Manager
2. Switch to the Startup tab on the left side, number four from the top (Looks like a little speedometer)
3. Select the row of the program you want to change and make th adjustment in the upper right corner
2025-03-26

Emojis for Windows

Windows
Show the emojipanel in Windows
Win +. (period) or Win +; (semicolon) keys
2025-03-08

Favicon

Html
How to include a favicon to your site.
<!-- jpg, png, ico, gif, svg - 96 x 96 or bigger -->
<link rel="icon" type="image/jpg" href="favicon.jpg"> 
2025-02-18

NSLookup

Windows
Hur hittar man ip-adress från domännamn, eller domännamn från ip-adress?
1
# Get ip:
nslookup rosiro.com

# Get domain:
nslookup -type=PTR 85.118.206.138

# Get DNS:
nslookup -type=NS rosiro.se

# Get domain from a specific dns-server:
nslookup -type=PTR <IP-adress> <DNS-server>
🙂