Skip to content

Instantly share code, notes, and snippets.

View Ravlissimo's full-sized avatar
🧑‍🦯
sergeant (UA Armed Forces)

Ravlissimo Ravlissimo

🧑‍🦯
sergeant (UA Armed Forces)
View GitHub Profile
@Ravlissimo
Ravlissimo / Comment.js
Created October 5, 2025 17:30 — forked from jangbl/Comment.js
Youtube Comment
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>
My youtube scripts/extensions
@Ravlissimo
Ravlissimo / llama_sizes.txt
Created September 26, 2025 13:35 — forked from shawwn/llama_sizes.txt
The size of each file distributed with LLaMA, for reference. See https://github.com/shawwn/llama-dl
./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
{
"notifications": [
{
"id": "update-v1-3-announcement",
"type": "success",
"priority": "normal",
"targetVersion": "all",
"title": {
"en": "New Version 1.3 Available!",
"uk": "Нова версія 1.3 Опублікована!"
@Ravlissimo
Ravlissimo / LunchTelegtam.md
Created January 28, 2025 20:24 — forked from ali-master/LunchTelegtam.md
Lunch telegram link with installed Telegram application

Lunch telegram link with installed Telegram application

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 has been truncated, but you can view the full file.
<!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
@Ravlissimo
Ravlissimo / hotkeys.ahk
Created November 11, 2024 15:51 — forked from chloe-626/hotkeys.ahk
Hotkeys AHK
; 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
@Ravlissimo
Ravlissimo / Active Directory Cheat Sheet
Created November 8, 2024 22:54 — forked from githubfoam/Active Directory Cheat Sheet
Active Directory Cheat Sheet
----------------------------------------------------------------------------------------------------
#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.
@Ravlissimo
Ravlissimo / buildHTML utility
Created October 15, 2024 07:35 — forked from 0xdevalias/buildHTML utility
Simple little method to build a html element form the given data object.
/* 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 + '>' : '/>';
@Ravlissimo
Ravlissimo / DevAlias-PentestEnvironmentSetup.sh
Created October 15, 2024 07:27 — forked from 0xdevalias/DevAlias-PentestEnvironmentSetup.sh
My steps to setup a new pentest environment
# /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