Skip to content

Instantly share code, notes, and snippets.

View bulini's full-sized avatar

Giuseppe Surace bulini

View GitHub Profile
const domande = [
{
question:
"1 Domanda profilo logico?",
answers: [
{
answer: "SI",
tags: [],
profile: ["logico"],
value: 1
const domande = [
{
question:
"Seleziona l'affermazione che più ti descrive: in un progetto la cosa più importante è...",
answers: [
{
answer: "Raccogliere il maggior numero possibile di informazioni utili",
tags: [],
profile: ["logico", "analista", "pioniere"],
question: "Nei miei processi valutativi...",
export const flats = [
{
floor: 1,
options: [
{
van: 1,
cost: 10
},
{
van: 2,
export const distance = [
{
van: 1,
details: [
{
round_trip: 100,
price: 310,
staff: 2,
final_price: 403
},
@bulini
bulini / ssss
Created October 4, 2018 08:07
import
<?php
/**
*
*/
class FeedImport
{
private $xml_url;
function __construct()
{
<!DOCTYPE html>
<html>
<head>
<title>Confindustria SFC - Economia Circolare</title>
<style type="text/css">
footer {
bottom: 0;
position: absolute;
}
<?php
/**
* Template Name: Vendor Products
*/
// File Security Check
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
Vendor::no_vendor_redirect();
<?php
//cambio testo e oggetto email di cambio password
add_filter('password_change_email', 'change_password_mail_message', 10, 3 );
function change_password_mail_message( $pass_change_mail, $user, $userdata ) {
$new_message_txt = __( 'Ciao ###USERNAME###,
ti confermiamo che la tua password è stata modificata.
Se non sei stato tu ad aver cambiato password, scrivici a info@xxxxxxxxx
Saluti.');
$pass_change_mail[ 'subject' ] = 'Hai cambiato la password';
var offset = $("#filter-search").offset();
var topPadding = 100;
$(window).scroll(function() {
if ($(window).scrollTop() > offset.top) {
$("#filter-search").stop().animate({
marginTop: $(window).scrollTop() - offset.top + topPadding
});
} else {
$("#filter-search").stop().animate({
marginTop: 0
<?php
/**
* Insert an attachment from an URL address.
*
* @param String $url
* @param Int $post_id
* @param Array $meta_data
* @return Int Attachment ID
*/