- 📺 Young Jedi Adventures (2023–...) — (анимация, для детей)
- 🎬 The Acolyte (2024) — (live-action приквел к саге)
🔗 Происходит за ~100 лет до приквелов
This file contains hidden or 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
function calculateEuroRateByPPP() { | |
// Данные для России | |
const pricesRussia = { | |
bigMac: 200, | |
nike: 11000, | |
rent: 30000, | |
salary: 49000 | |
}; | |
// Данные для Франции |
This file contains hidden or 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
function timeSinceUpload(args) { | |
const currentDate = new Date(); | |
const videoUploadDate = new Date("2022-10-03T19:07:54+03:00"); // UTC+3 (Europe/Moscow) | |
if (isNaN(videoUploadDate.getTime())) { | |
return 'Некорректная дата загрузки видео FeelsDankMan'; | |
} | |
// Если передан параметр 'date', выводим дату в формате Europe/Moscow | |
if (args[0] === 'date') { |
This file contains hidden or 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
import axios from "axios"; | |
import api from './../../utils/api.js'; | |
const USERNAME_REPLACEMENTS = { | |
'killhuestro': 'exoneges', | |
'linaryx': 'l__linar__l', | |
'digidro_': 'digidr0', | |
'leysonmart_': 'leysonmart', | |
'0_nekopara_0': 'bromin_8_800' | |
}; |
This file contains hidden or 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
function getRandElement(elements) { | |
return elements[Math.floor(Math.random() * elements.length)]; | |
} | |
function r() { | |
const elements = ["😀", "😋", "🤮", "💀"]; | |
return getRandElement(elements); | |
} | |
function generateMessage() { |
This file contains hidden or 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
function main(args) { | |
const currentDate = new Date(); | |
let gmtHours = customData.get("gmtHoursALIASny"); | |
let newYearDate = new Date(); | |
if(gmtHours == undefined) | |
newYearDate = new Date(`Jan 14 ${currentDate.getFullYear() + 1} 00:00:00 GMT+0`); | |
else if(gmtHours >= 0) | |
newYearDate = new Date(`Jan 14 ${currentDate.getFullYear() + 1} 00:00:00 GMT+${gmtHours}`); | |
else |
This file contains hidden or 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
import axios from "axios"; | |
import api from './../../utils/api.js'; | |
const replaces = { | |
'killhuestro': 'exoneges', | |
'linaryx': 'l__linar__l', | |
'digidro_': 'digidr0', | |
'leysonmart_': 'leysonmart', | |
'0_nekopara_0': 'bromin_8_800' | |
}; |
This file contains hidden or 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
function encodeString(args) { | |
let encoded = []; | |
const combinedStr = args.join('').toUpperCase().replace(/\s+/g, ''); | |
for (let i = 0; i < combinedStr.length; i++) { | |
const char = combinedStr[i]; | |
if (char.match(/[A-Z]/)) { | |
encoded.push((char.charCodeAt(0) - 64)); |
NewerOlder