var protoUrl = "tg:\/\/resolve?domain=TelegramUserName";
if (false) {
var iframeContEl = document.getElementById('telegramIframe') || document.body;
var iframeEl = document.createElement('iframe');
iframeContEl.appendChild(iframeEl);
var pageHidden = false;
window.addEventListener('pagehide', function () {
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 React from 'react'; | |
| import './Comment.scss'; | |
| import {Button, Image} from "semantic-ui-react"; | |
| import {Rating} from '../../../components/Rating/Rating'; | |
| export function Comment(props) { | |
| return ( | |
| <div className='comment'> | |
| <Image className='user-image' src='http://via.placeholder.com/48x48' circular /> | |
| <div> |
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
| My youtube scripts/extensions |
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
| ./tokenizer_checklist.chk 50 | |
| ./tokenizer.model 499723 | |
| ./7B/checklist.chk 100 | |
| ./7B/consolidated.00.pth 13476939516 | |
| ./7B/params.json 101 | |
| ./13B/checklist.chk 154 | |
| ./13B/consolidated.00.pth 13016334699 | |
| ./13B/consolidated.01.pth 13016334699 | |
| ./13B/params.json 101 | |
| ./30B/checklist.chk 262 |
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
| { | |
| "notifications": [ | |
| { | |
| "id": "update-v1-3-announcement", | |
| "type": "success", | |
| "priority": "normal", | |
| "targetVersion": "all", | |
| "title": { | |
| "en": "New Version 1.3 Available!", | |
| "uk": "Нова версія 1.3 Опублікована!" |
This file has been truncated, but you can view the full file.
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
| <!DOCTYPE html> | |
| <!-- saved from url=(0043)https://www.youtube.com/watch?v=QH2-TGUlwu4 --> | |
| <html invert="" style="font-size: 10px;font-family: Roboto, Arial, sans-serif; background-color: #fafafa;"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!-- Shady DOM styles for custom-style --><!-- Shady DOM styles for dom-template --><!-- Shady DOM styles for dom-repeat --><!-- Shady DOM styles for array-selector --><!-- Shady DOM styles for dom-if --><!-- Shady DOM styles for iron-meta --><!-- Shady DOM styles for iron-a11y-announcer --><style scope="iron-a11y-announcer">iron-a11y-announcer{display:inline-block;position:fixed;clip:rect(0px,0px,0px,0px);}</style><!-- Shady DOM styles for paper-menu-button --><style scope="paper-menu-button">paper-menu-button{display:inline-block;position:relative;padding:8px;outline:none;padding:var(--paper-menu-button_-_padding, 8px);color:var(--paper-menu-button_-_color);}paper-menu-button[disabled]{cursor:auto;color:var(--disabled-text-color);}.dropdown-c |
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
| ; Script for a bunch of a+ hotkeys idek what I would do w/o. | |
| ; There's one to open Volume Mixer, Notepad, Personalization window, Dual Wallpaper, turning the volume up and down, playing and pausing mpc (mpc doesn't need to be active, how gr8), showing and hiding titlebars and moving windows by holding down alt with the left mouse button (basically AltDrag). | |
| ; Remove the semicolons in front of line 61 and 62 if you want to be able to move windows by holding down the left and right click buttons, it's a great hotkey but caused problems for me while playing vidyas, so idk use it if you wish. | |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; Modifiers |
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
| ---------------------------------------------------------------------------------------------------- | |
| #The Active Directory Administrative Center (ADAC) | |
| dsac (cmd) | |
| dsac (pwsh) | |
| ---------------------------------------------------------------------------------------------------- | |
| Extracting password hashes from the NTDS.dit and SYSTEM files is typically performed for security and forensic purposes. These files are part of the Windows operating system and contain user account information and password hashes. There are several tools and techniques that can be used to perform this extraction: | |
| Mimikatz: | |
| Mimikatz is a popular open-source tool for post-exploitation tasks, including extracting password hashes from Windows systems. |
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
| /* buildHtml - Helper method to construct html tags easily */ | |
| var buildHtml = function(tag, attrs, innerHtml) { | |
| var h = '<' + tag; | |
| for (var attr in attrs) { | |
| if(attrs[attr] === false) { | |
| continue; | |
| } | |
| h += ' ' + attr + '="' + attrs[attr] + '"'; | |
| } | |
| return h += innerHtml ? '>' + innerHtml + '</' + tag + '>' : '/>'; |
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
| # /dev/alias Pentest Environment Setup | |
| # Version: 0.2 (20131211) | |
| # Created By: Glenn 'devalias' Grant (http://devalias.net) | |
| # License: The MIT License (MIT) - Copyright (c) 2013 Glenn 'devalias' Grant (see http://choosealicense.com/licenses/mit/ for full license text) | |
| # TODO: | |
| # * Option to check if tools (from this script and external) exist/are already installed and what versions | |
| # * Eg nmap , metasploit, etc | |
| # * Lair: https://github.com/fishnetsecurity/Lair | |
| # * apt-get install python-pip |
NewerOlder