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
Let's assume you alread have a old system running with php5.3 | |
# 1 - Install Remi and Epel repository | |
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm | |
# Install php72 | |
yum install php72-runtime php72-php-common php72 php72-php-fpm php72-php-mysqlnd php72-php-json php72-php-xml php72-php-mbstring php72-php-pdo php72-php-cli |
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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "../utils/Context.sol"; | |
/** | |
* @dev Contract module which provides a basic access control mechanism, where | |
* there is an account (an owner) that can be granted exclusive access to | |
* specific functions. | |
* |
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 xml.etree import ElementTree as et | |
# gamelist.xml generated by emulationstation desktop | |
# ~/.emulationstation/gamelists/mame/gamelist.xml | |
gamelist_path = r"./gamelist.xml" | |
# http://adb.arcadeitalia.net/download.php (mame246-gamelist.xml.zip) | |
mameXXX_gamelist_path = r"./mame246-gamelist.xml" | |
# list of games to hide |
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
package org.ricardoteixeira; | |
import com.stripe.Stripe; | |
import com.stripe.model.checkout.Session; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
public class Main { |