This file contains hidden or 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
https://nx39111.your-storageshare.de/s/YsSEYsc4GJssRWt |
This file contains hidden or 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
function artomultiplo_add_sku_woocommerce_emails( $output, $order ) { | |
// set a flag so we don't recursively call this filter | |
static $run = 0; | |
// if we've already run this filter, bail out | |
if ( $run ) { | |
return $output; | |
} | |
This file contains hidden or 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 libraries | |
import requests | |
from bs4 import BeautifulSoup | |
website = 'https://www.sito.it/bombon/bomboniere-matrimonio.html?p=' | |
output_file = open('bomboniere.csv', 'w+') | |
counter = 1 |
This file contains hidden or 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
/* | |
Theme Name: Artomultiplo GP Child | |
Template: generatepress | |
Theme URI: https://generatepress.com | |
Author: Roberto Enrique Briceno Garcia | |
Author URI: https://artomultiplo.eu | |
Description: A woocommerce optimized GP child | |
Version: 1.0 | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains hidden or 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
<?php | |
/** | |
* Cart Page | |
* | |
* This template can be overridden by copying it to yourtheme/woocommerce/cart/cart.php. | |
* | |
* HOWEVER, on occasion WooCommerce will need to update template files and you | |
* (the theme developer) will need to copy the new files to your theme to | |
* maintain compatibility. We try to do this as little as possible, but it does | |
* happen. When this occurs the version of the template file will be bumped and |
This file contains hidden or 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
# This script asumes that you have two directories | |
# One directory called "origin" with your original images | |
# Another directory valled "results" that is going to be filled with your processed images :-) | |
# The name of the directories should be exactly like that "origin" and "results" respectively | |
# The script also need a remove.bg API key, so you should get one of those | |
# https://www.remove.bg/api | |
# it also require "requests" to be installed (see python-requests.org) | |
import requests | |
import os |
This file contains hidden or 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
#inserire il file del vocabolario | |
words = open("zingarelli.txt", "r") | |
# cambiare questo valore per stabilire il numero di lettere delle parole (dev'essere un numero % 2 = 0) | |
maxlenght = 6 | |
wordarray = [] | |
for word in words: | |
if len(word) == maxlenght + 1: |
This file contains hidden or 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 html | |
just_open = open('art.csv', 'r') | |
output_file = open('freshnclean.csv', 'w') | |
i = 0 | |
for row in just_open: | |
if (i >= 0 and i < 5000): | |
lariga = html.unescape(row) |
This file contains hidden or 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
// ==UserScript== | |
// @name Get div contents and print it to console on OAM course | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http://www.myatoma.com/Simulatore/* | |
// @require https://code.jquery.com/jquery-2.2.4.min.js | |
// ==/UserScript== |
NewerOlder