Skip to content

Instantly share code, notes, and snippets.

View darwing1210's full-sized avatar

Darwing Medina darwing1210

  • Handraise
  • Austin, TX
  • 01:15 (UTC -04:00)
  • LinkedIn in/dmedina93
View GitHub Profile
Canal 2: http://138.117.4.70:8079/streams/d/Canal-2/playlist.m3u8
Canal 4: http://138.117.4.70:8079/streams/d/Canal-4/playlist.m3u8
Canal 6: http://138.117.4.70:8079/streams/d/Canal-6/playlist.m3u8
Canal 8: http://138.117.4.70:8079/streams/d/Canal-25/playlist.m3u8
Canal 9: http://138.117.4.70:8079/streams/d/Canal-9/playlist.m3u8
Canal 10: http://138.117.4.70:8079/streams/d/Canal-10/playlist.m3u8
Canal 11: http://138.117.4.70:8079/streams/d/Canal-11/playlist.m3u8
Canal 12: http://138.117.4.70:8079/streams/d/Canal-12/playlist.m3u8
Canal 13: http://138.117.4.70:8079/streams/d/Canal-13/playlist.m3u8
Canal 15: http://138.117.4.70:8079/streams/d/Canal-15/playlist.m3u8
@ericrobskyhuntley
ericrobskyhuntley / README.md
Last active March 22, 2020 00:26 — forked from rgdonohue/README.md
Batch Geocoding Script with GeoPy
@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active April 26, 2024 18:53
crack activate Office on mac with license file
@int-ua
int-ua / import_file.py
Created December 28, 2017 19:38
Import management command for django-import-export
# https://gist.github.com/bmihelac/434fceb6ba8e752f08d3
# https://github.com/django-import-export/django-import-export/issues/332
from __future__ import unicode_literals
import mimetypes
from django.core.management.base import BaseCommand, CommandError
from django.utils import termcolors
from django.utils.encoding import force_text
@nrollr
nrollr / MySQL_macOS_Sierra.md
Last active January 31, 2024 14:45
Install MySQL on Sierra using Homebrew

Install MySQL on macOS Sierra

This procedure explains how to install MySQL using Homebrew on macOS Sierra 10.12

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.

Install MySQL

At this time of writing, Homebrew has MySQL version 5.7.15 as default formulae in its main repository :

@mrkdevelopment
mrkdevelopment / In your social icons file
Last active July 29, 2022 00:25
Divi social icons extension
<?php if ( 'on' === et_get_option( 'divi_show_linkedin_icon', 'on' ) ) : ?>
<li class="et-social-icon et-social-linkedin">
<a href="<?php echo esc_url( et_get_option( 'divi_linkedin_url', '#' ) ); ?>" class="icon">
<span><?php esc_html_e( 'Linked In', 'Divi' ); ?></span>
</a>
</li>
<?php endif; ?>
<?php if ( 'on' === et_get_option( 'divi_show_youtube_icon', 'on' ) ) : ?>
<li class="et-social-icon et-social-youtube">
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@eliangcs
eliangcs / pyenv+virtualenv.md
Last active June 8, 2023 07:46
Cheatsheet: pyenv, virtualenvwrapper, and pip

Cheatsheet: pyenv, virtualenvwrapper, and pip

Installation (for Mac OS)

Install pyenv with brew

brew update
brew install pyenv
@bsweger
bsweger / useful_pandas_snippets.md
Last active April 19, 2024 18:04
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)