All public logs
From Lucca's Wiki
Jump to navigationJump to search
Combined display of all available logs of Lucca's Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:28, 11 December 2024 Lucka talk contribs created page Bashrc/Zshrc Setup (Created page with "https://kirbfeels.gianluccapirovano.com/library/ArchivalPurposes/wiki-files/bashrc-zshrc-setup/.bashrc https://kirbfeels.gianluccapirovano.com/library/ArchivalPurposes/wiki-files/bashrc-zshrc-setup/.rc")
- 22:56, 10 December 2024 45.27.172.161 talk created page Clipboardbuffers.py (Created page with "import os import sys from PyHotKey import Key, keyboard from tkinter import * scriptFolder = (os.path.dirname(__file__)) def inputbox(inputBuffer): inputText = "No Input Given Yet" master = Tk() textbox = Entry(master) textbox.pack() textbox.focus_set() def onclick(pos): nonlocal inputText inputText = textbox.get() print(f"Clipboard buffer {inputBuffer} was set to: {inputText}") master.destroy() b = Button(...")
- 22:09, 10 December 2024 45.27.172.161 talk created page Exit Audit Mode (Created page with "Source: https://answers.microsoft.com/en-us/windows/forum/all/how-to-exit-audit-mode/34adf896-a0fb-4972-9d23-e37682029a28 How to Exit Audit Mode If you are having unsuccessful attempts at exiting audit mode and getting "fatal error messages", the following is what I did that worked: Type regedit in the windows search bar and press enter. Navigate to HKEY_LOCAL_MACHINE>SYSTEM>Setup>Status. By clicking on the "Status", you will see a registry key item called "AuditB...")
- 22:09, 10 December 2024 45.27.172.161 talk created page Registry Tweaks/Fixes (Created page with "Exit Audit Mode")
- 17:29, 10 December 2024 45.27.172.161 talk created page CopyResponses.py (Created page with " import pyperclip import os import sys if os.name == 'nt': import win32api myName = win32api.GetUserNameEx(3) else: myName = "Lucca P." supportNumber = "(954) 474 2204" altSupportNumber = "(954) 713 2601" emailFinisher = f""" Thank you and have a wonderful rest of your day! {myName}""" #functions below def copy(content): pyperclip.copy(content) def clear(): if os.name == 'nt': os.system('cls') else: os.system('clear') #functions above clear() #...")
- 17:27, 10 December 2024 45.27.172.161 talk created page Supportdesk.ahk (Created page with " CoordMode, Mouse, Screen ;Pull your full name from AD nSize:= VarSetCapacity(sFull, 1023) + 1 DllCall("secur32\GetUserNameEx", "Uint", 3, "str", sFull, "UintP", nSize) myName := sFull myFirstName := firstWordOfString(myName) ;HOTKEYS f1::SendRaw, %clipboard% Insert::Reload !Scrolllock::showMousePosition() f8::InputBox, callBackNumber, What is the callback number?, cb:,, Width, Height, 640, 480, English, 0 +f8::Send, cb: ``%callBackNumber%`` !f8::Send, cb:...")
- 17:25, 10 December 2024 45.27.172.161 talk created page Focusjump.ahk (Created page with "#Requires AutoHotkey v2.0 ;Make a file in the script's folder called lefthanded.txt if you do want left handed keybinds A_MaxHotkeysPerInterval := 20000 ;CapsLock, Numlock, and ScrollLock state SetCapsLockState "AlwaysOff" SetScrollLockState "AlwaysOff" SetNumLockState "AlwaysOff" ;Screenshot on PrintScreen Key & f14 F14:: PrintScreen::Run "ms-screenclip:" ;ScreenConnect Only Hotkeys: #HotIf WinActive("ahk_exe ScreenConnect.ClientService.exe") or WinActive("ahk_exe S...")
- 17:25, 10 December 2024 45.27.172.161 talk created page Keyboard Navigation Scripts (Created page with "focusjump.ahk")
- 19:03, 6 December 2024 45.27.172.161 talk created page OSX Commands (Created page with "Disable Mac Address Randomization Globally sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist PrivateMACAddressModeSystemSetting -int 1")
- 17:17, 5 November 2024 45.27.172.161 talk created page Example User onboarding & offboarding Scripts (Created page with "<hr>User Onboarding<hr> <hr>User Offboarding<hr> echo "Connecting to 365..." Connect-MgGraph -NoWelcome -TenantId $tenantID Pause echo "Connecting to exchange online..." Connect-ExchangeOnline -UserPrincipalName $tenantAdminUsername Pause echo "Connecting to MSOnline..." Connect-MsolService Pause $user = Get-MgUser -UserId $userEmail echo "Making user a shared mailbox..." Set-Mailbox $userEmail -Type Shared echo "Waiting 60 seconds for the changes to appl...")
- 00:21, 3 November 2024 Lucka talk contribs created page Record Audio Files in the Command Line (Created page with " ffmpeg -f pulse -i default -codec:a flac filename")
- 03:48, 11 September 2024 Lucka talk contribs created page Screen Recording Options (Created page with "I just found out about this git page. It is a clone of shadowplay essentially and there is some very interesting info on the article. https://git.dec05eba.com/gpu-screen-recorder/about/")
- 23:35, 3 September 2024 Lucka talk contribs moved page Alpine on the Bulldozer NUC to Infared Reciever w/ Alpine on the Bulldozer Datto without leaving a redirect
- 18:47, 28 August 2024 Lucka talk contribs created page Type Unicode Characters (Created page with "You press this keycombo, it should place an underlined <code>u</code> Ctrl+Shift+U Then, type a code for your specific character, for instance 00FC<space> will get you a ü https://codepoints.net/")
- 08:45, 20 August 2024 10.0.1.1 talk created page Make a udev rule (Created page with " edit <code>/etc/udev/rules.d/myAwesomeRules.rules</code> <code>SUBSYSTEM=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="3000", GROUP="plugdev"</code> run as root: <code>udevadm control --reload-rules && udevadm trigger</code>")
- 19:52, 4 July 2024 Lucka talk contribs created page Split a monitor in two (Created page with " #!/bin/bash xrandr --delmonitor m1 xrandr --delmonitor m2 xrandr --setmonitor m1 727/1x1080/1+640+0 DisplayPort-0 xrandr --setmonitor m2 2880/1x1080/1+1600+0 none")
- 14:26, 27 June 2024 10.0.1.1 talk created page Numpad hotkeys on linux (Created page with "Making numpad hotkeys on linux is a bit more tricky than it is on windows due to the critical lack of autohotkey ;-;")
- 19:09, 21 June 2024 10.0.1.1 talk created page Domain Setup from Scratch on Server Core (Created page with " Install-ADDSDomainController")
- 14:19, 17 June 2024 45.27.172.161 talk created page Commands (Created page with "COMMON CMD USED <hr> The ipconfig command is a command-line utility used to display and manage the IP address assigned to a machine. It provides information about the current TCP/IP network configuration, including the IP address, subnet mask, and default gateway for all adapters . In Windows, typing ipconfig without any parameters displays the computer's currently assigned IP, subnet mask, and default gateway addresses. Additional parameters can be used to perform var...")
- 18:17, 3 June 2024 45.27.172.161 talk created page Hyper-V on Windows Home (Created page with "dir /b "%SystemRoot%\servicing\Packages\*Hyper-V*.mum" > hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" del hyper-v.txt Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL pause")
- 01:17, 1 June 2024 Lucka talk contribs deleted page Getting New Teams to install when it refuses to (content was: "Open Powershell as admin: <code>Add-ProvisionedAppPackage -Online -PackagePath "{PATH-TO-TEAMS}.msix" -SkipLicense</code>", and the only contributor was "45.27.172.161" (talk))
- 16:45, 24 May 2024 45.27.172.161 talk created page Distro Download Links (Created page with "https://sineware.ca/prolinux/")
- 02:43, 23 May 2024 Lucka talk contribs created page Alpine on the Bulldozer NUC (Created page with "Had some issues with the bootloader, ended up using ventoy's "Local Boot" option to get into my alpine install and then manually installed grub using <code>grub-install</code>")
- 23:21, 16 May 2024 Lucka talk contribs deleted page ZEK Office Printers
- 18:28, 16 May 2024 45.27.172.161 talk created page Docker Installation on Debian (Created page with " sudo apt install docker.io sudo systemctl enable --now docker sudo usermod -aG docker {YOURUSERNAME}")
- 14:32, 15 May 2024 45.27.172.161 talk created page Make CMD Open Faster on Windows 11 (Created page with "https://www.elevenforum.com/t/change-default-terminal-application-in-windows-11.3410/")
- 16:15, 14 May 2024 45.27.172.161 talk created page Getting New Teams to install when it refuses to (Created page with "Add-ProvisionedAppPackage -Online -PackagePath "{PATH-TO-TEAMS}.msix" -SkipLicense")
- 15:58, 13 May 2024 45.27.172.161 talk created page ZEK Office Printers (Created page with ""Printer 1": HP Laserjet Pro 400 Color MFP M475Dn "Printer 2": HP Laserjet P3015 | 10.208.1.41 "Printer 3": HP Laserjet P3015 | 10.208.1.42")
- 17:58, 10 May 2024 45.27.172.161 talk created page Violentmonkey Script Documentation for Whit (Created page with "Open New Tabs: Alt+T: New Ticket Alt+Shift+T: Service Ticket Search")
- 20:47, 6 May 2024 45.27.172.161 talk created page End of Life (Created page with "Version End of Support Windows Server 2022 Oct 14, 2031 Windows Server 2019 Jan. 9, 2029 Windows Server 2016 Jan. 12, 2027 Windows Server 2012 R2 Oct 10, 2023")
- 18:00, 6 May 2024 45.27.172.161 talk created page Talk:VFIO Anti-Cheat Bypass Tools (Created page with "Git gud scrub Ẁ̵̙̩ḫ̶̛͉̝̮͎̻͖̈́̐̀̊͌̉͗͛̄̊̓̈́͂̃͆͂i̵̖̬̓̍̑͠͠c̴̢̧͓͍̳̞̥̣̗̯͉̘͉͎̜̲̈́̄͌̒̄͆̉̆͗̈́̕͝ͅh̸͓͖̜̲̠͍͕̗̮͚̯̉̑͑̍̀̈̓͂̾͐͠ ̴̧͓̝̼̻̘̬̪͖̤̟̭̥͇̟̺̙̔̎̏̿͒͝͠͝d̸̨̬͔͖͓̦̼͈̼͈̭̙͇̱̪̺́̉͗̈́̐̾̂ͅő̵̢̡̺̬͕̭̣͍̖̱̼̹̩̖̫̝̔̆̅ ̵̨͙̲̤̻͕̾̊̃́̂̈́͊̍̕̕y̴̻̙̗̋̓̋͌̈́͆̄̕ở̸͔͙̹̉̐̀̂̈́͗̌͜ǔ̴̩̻̭̬̇̏́̑̈...")
- 17:59, 6 May 2024 45.27.172.161 talk created page VFIO Anti-Cheat Bypass Tools (Created page with "https://github.com/zhaodice/qemu-anti-detection https://github.com/zhaodice/proxmox-ve-anti-detection")
- 16:15, 6 May 2024 45.27.172.161 talk created page Modeline Generators (Created page with "https://arachnoid.com/modelines/index.html")
- 16:14, 6 May 2024 45.27.172.161 talk created page Analog Video Articles (Created page with "https://www.cocopedia.com/wiki/index.php/15kHz_SVGA_Monitors https://www.geocities.ws/podernixie/htpc/modes-en.html#especial")
- 11:37, 3 May 2024 Lucka talk contribs created page VFIO GPU Passthrough Setup (Created page with "/etc/default/grub: GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on iommu=pt modprobe.blacklist=nouveau,amdgpu,radeon" /etc/modprobe.d/vfio.conf: CHANGE IDS TO THOSE OF THE GPU (lspci -nnk) blacklist nouveau blacklist amdgpu blacklist radeon blacklist ohci-pci options nouveau modeset=0 options vfio_pci ids=10de:1b80,10de:10f0,1002:67ef,1002:aae0 set your igpu to the default in bios")
- 14:50, 24 April 2024 Lucka talk contribs created page Ungoogled Chromium Debian (Created page with " echo 'deb http://download.opensuse.org/repositories/home:/ungoogled_chromium/Debian_Sid/ /' | sudo tee /etc/apt/sources.list.d/home:ungoogled_chromium.list curl -fsSL https://download.opensuse.org/repositories/home:ungoogled_chromium/Debian_Sid/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_ungoogled_chromium.gpg > /dev/null sudo apt update sudo apt install ungoogled-chromium Sources: https://software.opensuse.org//download.html?p...")
- 04:57, 24 April 2024 Lucka talk contribs created page Xubuntu Mac Conversion Guide (Created page with "#!/bin/bash sudo apt install mate mate-tweak mate-applet-appmenu git #set cupertino theme in mate-tweak #move menu buttons to the left #reboot/logout to fix global menu cd /usr/share/themes && sudo git clone https://github.com/zayronxio/Os-Catalina-gtk cd ~/.icons && git clone https://github.com/zayronxio/Os-Catalina-icons cd /usr/share/themes && sudo git clone https://github.com/zayronxio/Mkosbigsur-gtk.git cd /usr/share/themes/Mkosbigsur-gtk/metacity-1/ sudo touch meta...")
- 04:48, 24 April 2024 Lucka talk contribs created page Useful Commands (Created page with "<code>docker rmi -f $(docker images -a -q)</code>")
- 15:35, 29 March 2024 45.27.172.161 talk created page Libvirt Setup (Created page with "How to setup Qemu/KVM using Libvirt on debian. <lr> Install Libvirt <code>sudo apt install libvirt-daemon-system</code> <code>sudo apt install virt-manager</code>")
- 15:47, 27 March 2024 45.27.172.161 talk created page Windows Keyboard Shortcuts (Created page with "Open About your PC Win+Pause Win+X --> y Reboot a PC (don't use this when you're remoting on calls because you could accidentally shut down your pc instead) <code>Win+X --> u --> r</code> Shutdown a PC (don't use this when you're remoting on calls because you could accidentally shut down your pc instead) <code>Win+X --> u --> u</code> Logout from a PC (don't use this when you're remoting on calls because you could accidentally log out from your pc instead)...")
- 13:58, 27 March 2024 45.27.172.161 talk created page Remote Desktop Setup (Created page with "This is the page that hosts the download links for the Microsoft Remote Desktop App commonly used for Azure Virtual Desktop. https://learn.microsoft.com/en-us/azure/virtual-desktop/users/connect-windows?pivots=remote-desktop-msi")
- 15:00, 26 March 2024 10.0.1.1 talk created page Talk:Main Page (yolo420blazeit)
- 13:44, 25 March 2024 10.0.1.1 talk created page Win+R Shortcuts (Created page with "Open legacy sound control panel mmsys.cpl Open legacy volume mixer sndvol Open legacy network & sharing center ncpa.cpl Open legacy add or remove programs appwiz.cpl Open admin tools menu control admintools Open bluetooth devices menu bthprops.cpl Open tablet pc settings tabletpc.cpl Open Personalization settings control desktop Open Legacy Device & Printer settings control /name Microsoft.Printers Open Screen Resolution Settings desk.cpl Open taskbar settings...")
- 23:28, 24 February 2024 Lucka talk contribs created page Running Jellyfin on an unprivileged LXC proxmox container (Created page with "THIS POST WAS TAKEN FROM REDDIT: https://old.reddit.com/r/jellyfin/comments/ul0i1a/running_jellyfin_on_lxc_unprivileged_promox_with/ <hr> Hi Folks, just want to share how i managed to run Jellyfin on Proxmox LXC in an unprivileged container. Maybe not everything is necessary (specially the part about drivers), but what i described is working so far. Links https://bookstack.swigg.net/books/linux/page/lxc-gpu-access ---> great source that i use for ID mapping, but se...")
- 17:23, 23 February 2024 98.116.178.154 talk created page Powershell (Created page with "POWERSHELL <hr>")
- 15:41, 23 February 2024 10.0.1.1 talk created page CMD (Popular CMD)
- 15:32, 23 February 2024 Lucka talk contribs moved page Installing MacOS On Proxmox to Installing MacOS Sonoma On Proxmox
- 15:03, 23 February 2024 Lucka talk contribs created page Installing MacOS On Proxmox (Created page with "This is a guide showcasing how to install MacOS [sonoma] on Proxmox.")
- 02:21, 23 February 2024 MediaWiki default talk contribs created page Main Page