Skip to content

Instantly share code, notes, and snippets.

View nadiamoe's full-sized avatar

Nadia Santalla nadiamoe

View GitHub Profile
@roycewilliams
roycewilliams / hashcat-opencl-memory-allocatable.txt
Last active August 6, 2025 01:02
hashcat-opencl-memory-allocatable.txt
#----------------------------------------------------------------------
# Survey of known allocatable memory as reported to hashcat by OpenCL.
# Varies by OpenCL runtime family (NVIDIA, AMD, Intel, pocl, etc.) and version.
# Triggered by curiosity about OpenCL maximum memory allocation.
# Compiled by Royce Williams / @tychotithonus
# As originally referenced in https://devtalk.nvidia.com/default/topic/992502/cuda-programming-and-performance/why-is-cl_device_max_mem_alloc_size-never-larger-than-25-of-cl_device_global_mem_size-only-on-nvidia-/
# Updated URL 2025: https://forums.developer.nvidia.com/t/why-is-cl-device-max-mem-alloc-size-never-larger-than-25-of-cl-device-global-mem-size-only-on-nvidia/47745
#
# Please send new entries (even with minor variations) to [email protected]
#----------------------------------------------------------------------
@mp4096
mp4096 / ppt2pdf.ps1
Created April 28, 2016 10:56
Batch convert PowerPoint files to PDF
# Batch convert all .ppt/.pptx files encountered in folder and all its subfolders
# The produced PDF files are stored in the invocation folder
#
# Adapted from http://stackoverflow.com/questions/16534292/basic-powershell-batch-convert-word-docx-to-pdf
# Thanks to MFT, takabanana, ComFreek
#
# If PowerShell exits with an error, check if unsigned scripts are allowed in your system.
# You can allow them by calling PowerShell as an Administrator and typing
# ```
# Set-ExecutionPolicy Unrestricted