Skip to content

Instantly share code, notes, and snippets.

View dnlsrl's full-sized avatar
🕶️
Please kill me

Israel Torres dnlsrl

🕶️
Please kill me
View GitHub Profile
@dnlsrl
dnlsrl / image_mod.py
Created June 9, 2019 06:24 — forked from another-junior-dev/image_mod.py
A script to extract images from .zip, .docx, .xlsx, and .pptx
#!/usr/bin/python3
import os
import shutil
import logging
import argparse
import tempfile
from pathlib import Path
from zipfile import ZipFile
@dnlsrl
dnlsrl / CHANGELOG
Created December 4, 2017 23:16
Specschecker. A python script to query the detailed specs for your computer (only Windows - for now)
Specschecker - A python script to check a computer's most basic specifications.
Changelog:
# v1
Creation!
#v1.1
- Fixed an error causing the program to crash on systems below Windows 10
* SystemSKUNumber property of Win32_ComputerSystem WMI Class is not supported in other systems
- Fixed an error causing the program to show wrong numbers in RAM and HDD specs
@dnlsrl
dnlsrl / dropcap.css
Last active August 29, 2015 14:25
Add drop caps to your Wordpress site.
/*Dropcaps*/
.entry-content article > p:first-of-type:first-letter {
float: left;
/*You can change these parameters to adjust the drop
cap to your site's needs*/
color: #E6A117;
font-size: 5em;
line-height: .85em;
padding-right: .1em;
}

Dropcap

Show the first letter of the first paragraph larger and in a different color than the rest of the text, using the ::first-letter selector.

A Pen by Nico Haemhouts on CodePen.

License.