@jjlmoya/utils-science 1.19.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/category/i18n/de.ts +1 -1
- package/src/category/i18n/fr.ts +6 -6
- package/src/category/i18n/ru.ts +1 -1
- package/src/category/index.ts +3 -1
- package/src/category/seo.astro +2 -2
- package/src/entries.ts +5 -1
- package/src/index.ts +2 -0
- package/src/pages/[locale]/[slug].astro +32 -15
- package/src/tests/locale_completeness.test.ts +5 -22
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/seo_length.test.ts +5 -3
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/title_quality.test.ts +1 -1
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/asteroid-impact/bibliography.astro +2 -2
- package/src/tool/asteroid-impact/bibliography.ts +24 -0
- package/src/tool/asteroid-impact/component.astro +16 -9
- package/src/tool/asteroid-impact/i18n/de.ts +4 -24
- package/src/tool/asteroid-impact/i18n/en.ts +4 -24
- package/src/tool/asteroid-impact/i18n/es.ts +4 -24
- package/src/tool/asteroid-impact/i18n/fr.ts +10 -30
- package/src/tool/asteroid-impact/i18n/id.ts +4 -24
- package/src/tool/asteroid-impact/i18n/it.ts +4 -24
- package/src/tool/asteroid-impact/i18n/ja.ts +4 -24
- package/src/tool/asteroid-impact/i18n/ko.ts +4 -24
- package/src/tool/asteroid-impact/i18n/nl.ts +4 -24
- package/src/tool/asteroid-impact/i18n/pl.ts +4 -24
- package/src/tool/asteroid-impact/i18n/pt.ts +4 -24
- package/src/tool/asteroid-impact/i18n/ru.ts +8 -28
- package/src/tool/asteroid-impact/i18n/sv.ts +4 -24
- package/src/tool/asteroid-impact/i18n/tr.ts +4 -24
- package/src/tool/asteroid-impact/i18n/zh.ts +4 -24
- package/src/tool/asteroid-impact/index.ts +1 -0
- package/src/tool/asteroid-impact/script.ts +13 -7
- package/src/tool/asteroid-impact/seo.astro +1 -1
- package/src/tool/cellular-renewal/bibliography.astro +2 -2
- package/src/tool/cellular-renewal/bibliography.ts +24 -0
- package/src/tool/cellular-renewal/i18n/de.ts +3 -24
- package/src/tool/cellular-renewal/i18n/en.ts +3 -24
- package/src/tool/cellular-renewal/i18n/es.ts +3 -24
- package/src/tool/cellular-renewal/i18n/fr.ts +16 -37
- package/src/tool/cellular-renewal/i18n/id.ts +3 -24
- package/src/tool/cellular-renewal/i18n/it.ts +3 -24
- package/src/tool/cellular-renewal/i18n/ja.ts +3 -24
- package/src/tool/cellular-renewal/i18n/ko.ts +3 -24
- package/src/tool/cellular-renewal/i18n/nl.ts +3 -24
- package/src/tool/cellular-renewal/i18n/pl.ts +3 -24
- package/src/tool/cellular-renewal/i18n/pt.ts +3 -24
- package/src/tool/cellular-renewal/i18n/ru.ts +20 -41
- package/src/tool/cellular-renewal/i18n/sv.ts +3 -24
- package/src/tool/cellular-renewal/i18n/tr.ts +3 -24
- package/src/tool/cellular-renewal/i18n/zh.ts +12 -33
- package/src/tool/cellular-renewal/index.ts +1 -0
- package/src/tool/cellular-renewal/seo.astro +2 -1
- package/src/tool/colony-counter/bibliography.astro +2 -2
- package/src/tool/colony-counter/bibliography.ts +12 -0
- package/src/tool/colony-counter/i18n/de.ts +3 -12
- package/src/tool/colony-counter/i18n/en.ts +3 -12
- package/src/tool/colony-counter/i18n/es.ts +3 -12
- package/src/tool/colony-counter/i18n/fr.ts +3 -12
- package/src/tool/colony-counter/i18n/id.ts +3 -12
- package/src/tool/colony-counter/i18n/it.ts +3 -12
- package/src/tool/colony-counter/i18n/ja.ts +3 -12
- package/src/tool/colony-counter/i18n/ko.ts +3 -12
- package/src/tool/colony-counter/i18n/nl.ts +3 -12
- package/src/tool/colony-counter/i18n/pl.ts +3 -12
- package/src/tool/colony-counter/i18n/pt.ts +3 -12
- package/src/tool/colony-counter/i18n/ru.ts +8 -17
- package/src/tool/colony-counter/i18n/sv.ts +3 -12
- package/src/tool/colony-counter/i18n/tr.ts +3 -12
- package/src/tool/colony-counter/i18n/zh.ts +5 -14
- package/src/tool/colony-counter/index.ts +1 -0
- package/src/tool/colony-counter/seo.astro +1 -1
- package/src/tool/cosmic-inflation/bibliography.astro +14 -0
- package/src/tool/cosmic-inflation/bibliography.ts +12 -0
- package/src/tool/cosmic-inflation/component.astro +270 -0
- package/src/tool/cosmic-inflation/cosmic-inflation-calculator.css +277 -0
- package/src/tool/cosmic-inflation/entry.ts +26 -0
- package/src/tool/cosmic-inflation/i18n/de.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/en.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/es.ts +168 -0
- package/src/tool/cosmic-inflation/i18n/fr.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/id.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/it.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ja.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ko.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/nl.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/pl.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/pt.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ru.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/sv.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/tr.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/zh.ts +188 -0
- package/src/tool/cosmic-inflation/index.ts +11 -0
- package/src/tool/cosmic-inflation/logic/CosmicInflationEngine.ts +21 -0
- package/src/tool/cosmic-inflation/seo.astro +15 -0
- package/src/tool/microwave-detector/bibliography.astro +2 -2
- package/src/tool/microwave-detector/bibliography.ts +16 -0
- package/src/tool/microwave-detector/component.astro +9 -7
- package/src/tool/microwave-detector/i18n/de.ts +3 -16
- package/src/tool/microwave-detector/i18n/en.ts +3 -16
- package/src/tool/microwave-detector/i18n/es.ts +3 -16
- package/src/tool/microwave-detector/i18n/fr.ts +7 -20
- package/src/tool/microwave-detector/i18n/id.ts +3 -16
- package/src/tool/microwave-detector/i18n/it.ts +3 -16
- package/src/tool/microwave-detector/i18n/ja.ts +3 -16
- package/src/tool/microwave-detector/i18n/ko.ts +3 -16
- package/src/tool/microwave-detector/i18n/nl.ts +3 -16
- package/src/tool/microwave-detector/i18n/pl.ts +3 -16
- package/src/tool/microwave-detector/i18n/pt.ts +3 -16
- package/src/tool/microwave-detector/i18n/ru.ts +21 -34
- package/src/tool/microwave-detector/i18n/sv.ts +3 -16
- package/src/tool/microwave-detector/i18n/tr.ts +3 -16
- package/src/tool/microwave-detector/i18n/zh.ts +13 -26
- package/src/tool/microwave-detector/index.ts +1 -0
- package/src/tool/microwave-detector/logic/MicrowaveEngine.ts +5 -1
- package/src/tool/microwave-detector/microwave-leak-detector.css +22 -25
- package/src/tool/microwave-detector/seo.astro +2 -1
- package/src/tool/simulation-probability/bibliography.astro +2 -2
- package/src/tool/simulation-probability/bibliography.ts +24 -0
- package/src/tool/simulation-probability/i18n/de.ts +3 -24
- package/src/tool/simulation-probability/i18n/en.ts +3 -24
- package/src/tool/simulation-probability/i18n/es.ts +3 -24
- package/src/tool/simulation-probability/i18n/fr.ts +8 -29
- package/src/tool/simulation-probability/i18n/id.ts +3 -24
- package/src/tool/simulation-probability/i18n/it.ts +3 -24
- package/src/tool/simulation-probability/i18n/ja.ts +3 -24
- package/src/tool/simulation-probability/i18n/ko.ts +3 -24
- package/src/tool/simulation-probability/i18n/nl.ts +3 -24
- package/src/tool/simulation-probability/i18n/pl.ts +3 -24
- package/src/tool/simulation-probability/i18n/pt.ts +3 -24
- package/src/tool/simulation-probability/i18n/ru.ts +10 -31
- package/src/tool/simulation-probability/i18n/sv.ts +3 -24
- package/src/tool/simulation-probability/i18n/tr.ts +3 -24
- package/src/tool/simulation-probability/i18n/zh.ts +7 -28
- package/src/tool/simulation-probability/index.ts +1 -0
- package/src/tool/simulation-probability/seo.astro +2 -1
- package/src/tool/temperature-timeline/bibliography.astro +14 -0
- package/src/tool/temperature-timeline/bibliography.ts +12 -0
- package/src/tool/temperature-timeline/component.astro +289 -0
- package/src/tool/temperature-timeline/entry.ts +26 -0
- package/src/tool/temperature-timeline/i18n/de.ts +213 -0
- package/src/tool/temperature-timeline/i18n/en.ts +213 -0
- package/src/tool/temperature-timeline/i18n/es.ts +178 -0
- package/src/tool/temperature-timeline/i18n/fr.ts +213 -0
- package/src/tool/temperature-timeline/i18n/id.ts +213 -0
- package/src/tool/temperature-timeline/i18n/it.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ja.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ko.ts +213 -0
- package/src/tool/temperature-timeline/i18n/nl.ts +213 -0
- package/src/tool/temperature-timeline/i18n/pl.ts +213 -0
- package/src/tool/temperature-timeline/i18n/pt.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ru.ts +213 -0
- package/src/tool/temperature-timeline/i18n/sv.ts +213 -0
- package/src/tool/temperature-timeline/i18n/tr.ts +213 -0
- package/src/tool/temperature-timeline/i18n/zh.ts +213 -0
- package/src/tool/temperature-timeline/index.ts +11 -0
- package/src/tool/temperature-timeline/logic/TemperatureTimelineEngine.ts +58 -0
- package/src/tool/temperature-timeline/planet-temperature-timeline.css +158 -0
- package/src/tool/temperature-timeline/seo.astro +15 -0
- package/src/tools.ts +4 -0
- package/src/types.ts +1 -3
|
@@ -87,7 +87,7 @@ const { ui } = Astro.props;
|
|
|
87
87
|
if (root) {
|
|
88
88
|
const startBtn = document.getElementById("start-btn");
|
|
89
89
|
const modal = document.getElementById("initial-modal");
|
|
90
|
-
const canvas = document.getElementById("interference-canvas");
|
|
90
|
+
const canvas = document.getElementById("interference-canvas") as HTMLCanvasElement | null;
|
|
91
91
|
const ctx = canvas?.getContext("2d");
|
|
92
92
|
|
|
93
93
|
const jitterDisplay = document.getElementById("jitter-value");
|
|
@@ -104,7 +104,7 @@ const { ui } = Astro.props;
|
|
|
104
104
|
const engine = new MicrowaveEngine(currentLang);
|
|
105
105
|
let running = false;
|
|
106
106
|
let audioEnabled = true;
|
|
107
|
-
let audioCtx = null;
|
|
107
|
+
let audioCtx: AudioContext | null = null;
|
|
108
108
|
|
|
109
109
|
const history = new Array(60).fill(0);
|
|
110
110
|
|
|
@@ -143,10 +143,12 @@ const { ui } = Astro.props;
|
|
|
143
143
|
ctx.fill();
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
async function playClick(_intensity) {
|
|
146
|
+
async function playClick(_intensity: number) {
|
|
147
147
|
if (!audioEnabled) return;
|
|
148
|
-
if (!audioCtx)
|
|
149
|
-
|
|
148
|
+
if (!audioCtx) {
|
|
149
|
+
const AudioContextClass = window.AudioContext || (window as unknown as { webkitAudioContext: typeof AudioContext }).webkitAudioContext;
|
|
150
|
+
audioCtx = new AudioContextClass();
|
|
151
|
+
}
|
|
150
152
|
|
|
151
153
|
const osc = audioCtx.createOscillator();
|
|
152
154
|
const gain = audioCtx.createGain();
|
|
@@ -176,7 +178,7 @@ const { ui } = Astro.props;
|
|
|
176
178
|
};
|
|
177
179
|
|
|
178
180
|
if (verdictContainer) {
|
|
179
|
-
const colors = colorMap[level.color] || colorMap.emerald;
|
|
181
|
+
const colors = colorMap[level.color as keyof typeof colorMap] || colorMap.emerald;
|
|
180
182
|
verdictContainer.style.backgroundColor = colors.bg;
|
|
181
183
|
verdictContainer.style.borderColor = colors.border;
|
|
182
184
|
verdictContainer.style.color = colors.text;
|
|
@@ -189,7 +191,7 @@ const { ui } = Astro.props;
|
|
|
189
191
|
orange: "#f97316",
|
|
190
192
|
red: "#dc2626",
|
|
191
193
|
};
|
|
192
|
-
statusDot.style.backgroundColor = colorValues[level.color] || colorValues.emerald;
|
|
194
|
+
statusDot.style.backgroundColor = colorValues[level.color as keyof typeof colorValues] || colorValues.emerald;
|
|
193
195
|
}
|
|
194
196
|
}
|
|
195
197
|
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Ständige Spitzen während des Mikrowellenbetriebs deuten darauf hin, dass das elektromagnetische Signal "entweicht" und die Luft sättigt, wodurch WLAN-Datenpakete nicht rechtzeitig ankommen können.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Häufig gestellte Fragen',
|
|
47
|
-
bibliographyTitle: 'Bibliografie',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Kopiert',
|
|
50
49
|
noHistory: 'Kein Verlauf',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Constant spikes during microwave operation suggest that the electromagnetic signal is "escaping" and saturating the air, preventing WiFi data packets from arriving on time.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Frequently Asked Questions',
|
|
47
|
-
bibliographyTitle: 'Bibliography',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Copied',
|
|
50
49
|
noHistory: 'No history',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Los picos constantes durante el funcionamiento del microondas sugieren que la señal electromagnética está "escapando" y saturando el aire, impidiendo que los paquetes de datos WiFi lleguen a tiempo.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Preguntas Frecuentes',
|
|
47
|
-
bibliographyTitle: 'Bibliografía',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Copiado',
|
|
50
49
|
noHistory: 'No historial',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const description = 'Analysez si votre micro-ondes perd des radiations en mesurant l\'interférence en temps réel sur votre réseau WiFi. Outil de sécurité scientifique.';
|
|
2
|
-
const title = 'Détecteur de Fuites Micro ondes
|
|
2
|
+
const title = 'Détecteur de Fuites Micro ondes: Visualiseur d\'Interférences WiFi';
|
|
3
3
|
const slug = 'detecteur-fuites-micro-ondes';
|
|
4
4
|
const howTo = [
|
|
5
5
|
{
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Des pics constants pendant le fonctionnement du micro-ondes suggèrent que le signal électromagnétique "s\'échappe" et sature l\'air, empêchant les paquets de données WiFi d\'arriver à temps.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Questions Fréquemment Posées',
|
|
47
|
-
bibliographyTitle: 'Bibliographie',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Copié',
|
|
50
49
|
noHistory: 'Pas d\'historique',
|
|
@@ -80,7 +79,7 @@ export const content: ToolLocaleContent = {
|
|
|
80
79
|
seo: [
|
|
81
80
|
{
|
|
82
81
|
type: 'title',
|
|
83
|
-
text: 'PHYSIQUE DES ONDES
|
|
82
|
+
text: 'PHYSIQUE DES ONDES: Votre micro-ondes fuit-il réellement des radiations ?',
|
|
84
83
|
level: 2,
|
|
85
84
|
},
|
|
86
85
|
{
|
|
@@ -89,7 +88,7 @@ export const content: ToolLocaleContent = {
|
|
|
89
88
|
},
|
|
90
89
|
{
|
|
91
90
|
type: 'paragraph',
|
|
92
|
-
html: 'D\'un point de vue purement physique, un four à micro-ondes est un <strong>résonateur à cavité</strong> conçu pour bombarder les molécules d\'eau de radiations électromagnétiques à une fréquence très spécifique
|
|
91
|
+
html: 'D\'un point de vue purement physique, un four à micro-ondes est un <strong>résonateur à cavité</strong> conçu pour bombarder les molécules d\'eau de radiations électromagnétiques à une fréquence très spécifique: <strong>2,45 GHz</strong>. Cette fréquence n\'est pas arbitraire ; elle est nécessaire pour provoquer l\'oscillation dipolaire des particules d\'eau, générant de la chaleur par friction. Le problème est que c\'est exactement la même fréquence que celle utilisée par la norme WiFi 802.11b/g/n.',
|
|
93
92
|
},
|
|
94
93
|
{
|
|
95
94
|
type: 'title',
|
|
@@ -129,7 +128,7 @@ export const content: ToolLocaleContent = {
|
|
|
129
128
|
type: 'list',
|
|
130
129
|
items: [
|
|
131
130
|
'<strong>"Le micro-ondes altère la structure moléculaire de l\'eau"</strong> - FAUX. Le rayonnement micro-ondes est <em>non ionisant</em>. Il n\'a pas assez d\'énergie pour rompre les liaisons chimiques ou altérer l\'ADN. Il fait simplement vibrer les molécules d\'eau, augmentant leur énergie cinétique (température).',
|
|
132
|
-
'<strong>"Le rayonnement s\'accumule dans les aliments"</strong> - FAUX. Les micro-ondes sont comme la lumière
|
|
131
|
+
'<strong>"Le rayonnement s\'accumule dans les aliments"</strong> - FAUX. Les micro-ondes sont comme la lumière: une fois que vous éteignez l\'interrupteur, elles disparaissent. Un aliment chaud n\'émet pas de rayonnement micro-ondes, seulement un rayonnement infrarouge (chaleur) tout comme un feu ou une poêle.',
|
|
133
132
|
'<strong>"Regarder le plateau tourner endommage les yeux"</strong> - PARTIELLEMENT VRAI. La vitre de la porte est conçue avec une grille qui bloque les longueurs d\'onde de 2,45 GHz. Cependant, si la grille est endommagée, la vitre n\'arrêtera pas les micro-ondes. Le cristallin de l\'œil est très sensible à la chaleur et a une mauvaise circulation sanguine, donc une exposition directe prolongée (près d\'une fuite) pourrait causer des cataractes thermiques.',
|
|
134
133
|
],
|
|
135
134
|
},
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Lonjakan konstan selama pengoperasian microwave menunjukkan bahwa sinyal elektromagnetik "keluar" dan menjenuhkan udara, mencegah paket data WiFi tiba tepat waktu.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Pertanyaan yang Sering Diajukan',
|
|
47
|
-
bibliographyTitle: 'Bibliografi',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Disalin',
|
|
50
49
|
noHistory: 'Tidak ada riwayat',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Kebocoran Oven Microwave: Standar dan Keamanan - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Kompatibilitas Elektromagnetik Oven Microwave dan WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Sangkar Faraday dan Efektivitas Pelindung RF - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Picchi costanti durante il funzionamento del microonde suggeriscono che il segnale elettromagnetico stia "fuggendo" e saturando l\'aria, impedendo ai pacchetti di dati WiFi di arrivare in tempo.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Domande Frequenti',
|
|
47
|
-
bibliographyTitle: 'Bibliografia',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Copiato',
|
|
50
49
|
noHistory: 'Nessuna cronologia',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: '電子レンジの使用中に継続的なスパイクが発生する場合、電磁信号が「漏れ」て空気を飽和させ、WiFiのデータパケットが予定通りに届くのを妨げていることを示唆しています。',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'よくある質問',
|
|
47
|
-
bibliographyTitle: '参考文献',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'コピー済み',
|
|
50
49
|
noHistory: '履歴なし',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: '電子レンジの漏洩:規格と安全性 - 米国食品医薬品局 (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: '電子レンジとWLANの電磁両立性 - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'ファラデーケージとRFシールドの有効性 - NIST (米国国立標準技術研究所)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: '전자레인지 작동 중에 지속적인 급증이 발생한다면 전자기 신호가 외부로 "누설"되어 공기를 포화시키고 WiFi 데이터 패킷이 제시간에 도착하는 것을 방해하고 있음을 시사합니다.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: '자주 묻는 질문',
|
|
47
|
-
bibliographyTitle: '참고 문헌',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: '복사됨',
|
|
50
49
|
noHistory: '내역 없음',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: '전자레인지 누설: 표준 및 안전 - 미국 식품의약국 (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: '전자레인지와 WLAN의 전자기적 호환성 - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: '파라데이 케이지 및 RF 차폐 효율성 - NIST (미국 국립표준기술연구소)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Constante pieken tijdens het gebruik van de magnetron suggereren dat het elektromagnetische signaal "ontsnapt" en de lucht verzadigt, waardoor WiFi-datapakketten niet op tijd kunnen aankomen.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Veelgestelde Vragen',
|
|
47
|
-
bibliographyTitle: 'Bibliografie',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Gekopieerd',
|
|
50
49
|
noHistory: 'Geen geschiedenis',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Magnetron Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Ciągłe skoki podczas pracy mikrofalówki sugerują, że sygnał elektromagnetyczny "ucieka" i nasyca pasmo, uniemożliwiając pakietom danych WiFi dotarcie na czas.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Często Zadawane Pytania',
|
|
47
|
-
bibliographyTitle: 'Bibliografia',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Skopiowano',
|
|
50
49
|
noHistory: 'Brak historii',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|
|
@@ -37,14 +37,13 @@ const faq = [
|
|
|
37
37
|
answer: 'Picos constantes durante o funcionamento do micro-ondas sugerem que o sinal eletromagnético está a "escapar" e a saturar o ar, impedindo que os pacotes de dados WiFi cheguem a tempo.',
|
|
38
38
|
},
|
|
39
39
|
];
|
|
40
|
+
import { bibliography } from '../bibliography';
|
|
40
41
|
import type { ToolLocaleContent } from '../../../types';
|
|
41
42
|
|
|
42
43
|
export const content: ToolLocaleContent = {
|
|
43
44
|
slug,
|
|
44
45
|
title,
|
|
45
46
|
description,
|
|
46
|
-
faqTitle: 'Perguntas Frequentes',
|
|
47
|
-
bibliographyTitle: 'Bibliografia',
|
|
48
47
|
ui: {
|
|
49
48
|
copied: 'Copiado',
|
|
50
49
|
noHistory: 'Sem histórico',
|
|
@@ -153,20 +152,7 @@ export const content: ToolLocaleContent = {
|
|
|
153
152
|
},
|
|
154
153
|
],
|
|
155
154
|
faq,
|
|
156
|
-
bibliography
|
|
157
|
-
{
|
|
158
|
-
name: 'Microwave Oven Leakage: Standards and Safety - Food and Drug Administration (FDA)',
|
|
159
|
-
url: 'https://www.fda.gov/radiation-emitting-products/resources-you-radiation-emitting-products/microwave-oven-radiation',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
name: 'Electromagnetic Compatibility of Microwave Ovens and WLAN - IEEE Xplore',
|
|
163
|
-
url: 'https://ieeexplore.ieee.org/document/8444555',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
name: 'Faraday Cages and RF Shielding Effectiveness - NIST (National Institute of Standards and Technology)',
|
|
167
|
-
url: 'https://www.nist.gov/topics/electromagnetic-fields',
|
|
168
|
-
},
|
|
169
|
-
],
|
|
155
|
+
bibliography,
|
|
170
156
|
howTo,
|
|
171
157
|
|
|
172
158
|
schemas: [
|
|
@@ -202,3 +188,4 @@ export const content: ToolLocaleContent = {
|
|
|
202
188
|
},
|
|
203
189
|
],
|
|
204
190
|
};
|
|
191
|
+
|