This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#=========================================================================== | |
# Works only with the official image available in the Mac App Store. | |
# Make sure you download the official installer before running this script. | |
#=========================================================================== | |
DISK_SIZE="${2:-16016m}" | |
VERSION="${1:-Sequoia}" | |
#=========================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2009-2014 Sébastien Helleu <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
# Copyright (c) 2009 by xt <[email protected]> | |
# Borrowed parts from pagetitle.py by xororand | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
import re | |
import requests | |
import pandas as pd | |
import getopt | |
import sys | |
import unidecode as ud | |
def mainSearch(titleURL, headers): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fecha,MES,Hora,Magnitud,Latitud,Longitud,Profundidad,Referencia de localizacion,Fecha UTC,Hora UTC,Estatus | |
1901-12-08,DICIEMBRE,20:17:00,7,26,-110,33,"83 km al OESTE de AHOME, SIN",1901-12-09,2:17:00,revisado | |
1902-01-16,ENERO,17:19:00,7,17.62,-99.72,33,"21 km al OESTE de ZUMPANGO DEL RIO, GRO",1902-01-16,23:19:00,revisado | |
1902-04-18,ABRIL,20:23:00,7.5,14.9,-91.5,25,"72 km al ESTE de CACAHOATAN, CHIS",1902-04-19,2:23:00,revisado | |
1902-09-23,SEPTIEMBRE,14:18:00,7.7,16.5,-92.5,25,"5 km al SUROESTE de TEOPISCA, CHIS",1902-09-23,20:18:00,revisado | |
1902-12-12,DICIEMBRE,17:10:00,7.1,29,-114,33,"115 km al NORTE de GUERRERO NEGRO, BCS",1902-12-12,23:10:00,revisado | |
1903-01-13,ENERO,19:47:36,7.6,15,-93,33,"50 km al SUR de MAPASTEPEC, CHIS",1903-01-14,1:47:36,revisado | |
1905-10-24,OCTUBRE,11:40:00,6.6,20,-110,33,"320 km al SUR de CABO SAN LUCAS, BCS",1905-10-24,17:40:00,revisado | |
1905-12-16,DICIEMBRE,23:27:00,7.1,17,-113,33,"727 km al SUROESTE de CABO SAN LUCAS, BCS",1905-12-17,5:27:00,revisado | |
1906-04-10,ABRIL,15:18:00,7.1,2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\office\16.0\common\officeupdate] | |
"preventbinginstall"=dword:00000001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Copyright (c) 2017, Anthony DeDominic <[email protected]>, Underdoge | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# ansi2unicode.pl | |
# 4/18/2007 | |
# | |
# convert an ANSI file to unicode, suitable for display in irssi/mirc or html | |
# usage: ansi2unicode.pl inputfile [-tc] [-o outputmode] [outputfile] | |
# -t = terminal output, no color | |
# -o = output mode, currently only html and irc supported, default is irc | |
# outputfile = filename to output to if html specified |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dalle": { | |
"api_url": "https://backend.craiyon.com/generate", | |
"api_request_timeout": 210, | |
"generate_request_timout": 360, | |
"retry_delay": 5 | |
}, | |
"openAI":{ | |
"api_generations_url": "https://api.openai.com/v1/images/generations", | |
"api_variations_url": "https://api.openai.com/v1/images/variations" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import weechat | |
import random | |
SCRIPT_NAME = 'mockme' | |
SCRIPT_AUTHOR = 'hikilaka,underdoge' | |
SCRIPT_VERSION = '1.0.1' | |
SCRIPT_LICENSE = 'none' | |
SCRIPT_DESC = 'Converts your text into a mOcKiNg VeRsIoN' | |
weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, |
NewerOlder