none
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 { | |
| ActionRowBuilder as BuilderActionRow, | |
| MessageActionRowComponentBuilder, | |
| blockQuote, | |
| bold, | |
| ButtonBuilder as BuilderButtonComponent, | |
| channelMention, | |
| codeBlock, | |
| EmbedBuilder as BuildersEmbed, | |
| formatEmoji, |
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 countZeros(n: number) { | |
| let count = 0; | |
| let l = 2; | |
| for (let i = 5; i < Math.pow(n, n); i = Math.pow(i, l), l++) { | |
| const s = n / i; | |
| if (s % 1 > 0) { | |
| break; | |
| } | |
| count += s; |
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
| webpackChunkdiscord_app.push([ | |
| ["wp_isdev_patch"], | |
| {}, | |
| (e) => { | |
| for (let c in e.c) | |
| if (e.c[c].exports?.default?.isDeveloper === false) | |
| Object.defineProperty(e.c[c].exports.default, "isDeveloper", { | |
| get: () => true, | |
| }); | |
| }, |
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
| (() => { | |
| // Extracted from Samogot's LibDiscordInternals for BetterDiscord. | |
| const req = typeof(webpackJsonp) === "function" ? webpackJsonp([], { | |
| '__extra_id__': (module, exports, req) => exports.default = req | |
| }, ['__extra_id__']).default : webpackJsonp.push([[], { | |
| '__extra_id__': (module, exports, req) => module.exports = req | |
| }, [['__extra_id__']]]); | |
| delete req.m['__extra_id__']; | |
| delete req.c['__extra_id__']; | |
| const find = (filter, options = {}) => { |
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 login(token) { | |
| setInterval(() => { | |
| document.body.appendChild(document.createElement`iframe`) | |
| .contentWindow.localStorage.token = `"${token}"`; | |
| }, 50); | |
| setTimeout(() => { | |
| location.reload(); | |
| }, 2500); | |
| // я знаю, что ты это используешь чтобы зайти на аккаунт своего друга/подруги | |
| } |
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
| let express = require('express'); | |
| let app = express(); | |
| let color = require('colors'); | |
| app.use(express.static(__dirname + '/public')); | |
| app.listen(9090, function () { | |
| console.log('http://127.0.0.1:9090/'.green + ' Work'.yellow); | |
| }); |
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
| RewriteEngine on | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule . index.php [L] |
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
| <?php //php 7.0.8 | |
| $code = " | |
| var test = 1; | |
| var tgfht = 2; | |
| "; | |
| preg_match_all('/var[ |](\w+)[ |][=,+]+[ |]([0-9]+|\w+|"\w+");/im',$code,$preg,PREG_OFFSET_CAPTURE); | |
| print_r($preg); |
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
| <?php | |
| ## Урок как парсить XML файл? | |
| ## Вся информация была получена с сайта php.net | |
| $xmlstring = file_get_contents("file.xml"); |