Skip to content

Instantly share code, notes, and snippets.

View nodomw's full-sized avatar
💭
🦁🎤

winterino hakerino nodomw

💭
🦁🎤
View GitHub Profile
@nodomw
nodomw / xampp.ps1
Last active November 29, 2023 11:52
xampp telepítő
# -- HASZNÁLAT --
# 1. Nyiss meg egy PowerShell-t (rendes felhasználóként, nem admin-ként)
# 2. Futtasd le a következőt: Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
# 3. Futtasd le a következőt: irm 'https://gist.githubusercontent.com/nodomw/d879234883acc61c2a6405873fd4a851/raw/xampp.ps1' | iex
# Ha 'mysqli' hibát kapsz akkor a php.ini-ben keresd meg a 'extension=php_mysqli.dll' sort és vedd ki a ';' karaktert a sor elejéről
function WriteToLine ([int]$lineNumber, [string]$filePath, [string]$replacementText) {
$lines = Get-Content $filePath
$lines[$lineNumber - 1] = $replacementText
@nodomw
nodomw / error.txt
Created February 26, 2023 18:29
rofl
Error: Request failed with status code 429
at evalmachine.<anonymous>:1:7730970
at evalmachine.<anonymous>:1:7731154
at XMLHttpRequest.k (evalmachine.<anonymous>:1:7734626) {
config: {
transitional: {
silentJSONParsing: true,
forcedJSONParsing: true,
clarifyTimeoutError: false
},
local Timer = tick()
local CharBytes = {
["a"] = "1",
["b"] = "2",
["c"] = "3",
["d"] = "4",
["e"] = "5",
["f"] = "6",
["g"] = "7",
["h"] = "8",
game:WaitForChild("MarketplaceService")
setwindowtitle("Roblox - " .. (game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)).Name)
Drawing.WaitForRenderer()
TextFont = DrawFont.Register(
game:HttpGet'https://github.com/bluescan/proggyfonts/raw/master/ProggyVector/ProggyVector%20Regular.ttf',
{ PixelSize = 32, UseStb = false, Scale = true, Bold = false }
)
local stats = game:GetService("Stats"):WaitForChild("Network"):WaitForChild("ServerStatsItem")
local camera = workspace.CurrentCamera
local RunService = game:GetService("RunService")
--[[
- [x] Implement caching the emojis file list,
- [x] possibly find a more complete and better list.
- [ ] Implement alternative search algorithm: "Whole word search". Im starting to think this isn't needed. I'll leave it in here just in case tho.
line 73, line 97
]]
if not game:IsLoaded() then
game.Loaded:Wait()
end
if NEON then return end
if not isfile('neon/init.lua')then
makefolder('neon')
local raw = 'https://raw.githubusercontent.com/%s/%s/master/init.lua'
writefile('neon/init.lua',game:HttpGet(raw:format('belkworks','neon')))
end
pcall(loadfile('neon/init.lua'))
game.Players.ChildAdded:Connect(function(player)
game:GetService('StarterGui'):SetCore('SendNotification', {
Title = player.Name,
Text = 'has joined the server. .\n[AGE: ' ..player.AccountAge.. ']',
Icon = [[http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&userName=]]..player.Name..[[&RAND]] .. math.random(1,100000000),
Duration = 5,
})
end)
game.Players.ChildRemoved:Connect(function(player)
game:GetService('StarterGui'):SetCore('SendNotification', {
-- https://v3rmillion.net/showthread.php?tid=1148583
local Environment = getgenv()
local Modules = { List = {} }
local UIS = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local TeleportService = game:GetService("TeleportService")
local RenderStepped = RunService.RenderStepped
local Print = Environment.OriginalPrint or print
local Players = game:GetService("Players")
@nodomw
nodomw / kutya.rs
Last active October 19, 2022 11:08
informatikai alapvizsga feladat gyakorlás
use std::io;
struct Kutya {
name: String,
age: i32,
breed: String,
owner: String,
}
fn main() {