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
package fpmax | |
import scala.util.Try | |
import scala.io.StdIn.readLine | |
object App0 { | |
def main: Unit = { | |
println("What is your name?") | |
val name = readLine() |
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
<?xml version="1.0" encoding="utf-8"?> | |
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://3DSI.org/WebServices/CreditCardTransaction" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" name="CreditCardTransactionService" targetNamespace="http://3DSI.org/WebServices/Cr |
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
<?xml version="1.0" encoding="utf-8"?> | |
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://3DSI.org/WebServices/CreditCardManagement" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" name="CreditCardManagementService" targetNamespace="http://3DSI.org/WebServices/Cred |
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
CREATE DATABASE IF NOT EXISTS `paradigmroot` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_general_ci */; | |
USE `paradigmroot`; | |
-- MySQL dump 10.13 Distrib 5.5.41, for debian-linux-gnu (i686) | |
-- | |
-- Host: 50.63.244.143 Database: paradigmroot | |
-- ------------------------------------------------------ | |
-- Server version 5.0.96-log | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
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
INSERT INTO `corporate_member_info` (`licence_ID`, `load_order`, `mng_lms`, `mng_group`, `group_id`, `manage_list`, `LMSlogin`, `LMSpass`, `tna_req`, `tna_apr`, `PathIdFK`, `r_comp`, `o_comp`, `limited_acess`, `course_access`, `f_name`, `l_name`, `Nname_f`, `Nname_l`, `login_name`, `password`, `email`, `language_preference`, `report_send`, `report_frequency`, `report_start_date`, `report_last_date`, `report_CC`, `report_recipients`, `WK_company`, `company`, `division`, `position`, `phone`, `portal_id`, `total_time_spent`, `last_login`, `current_login`, `logins`, `duration`, `transactions`, `activate_date`, `subscription_start_date`, `subscription_end_date`, `standby`, `paycode`, `completed`, `test_pass`, `in_progress`, `active`, `test_user`) | |
VALUES ('izdehar15000',15000,NULL,'test_users',290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'"BUS1058":{"startDate":"","timeLimit":"","startDateLock":"","hasPreRequisite":"","list":"assigned"},"BUS1008":{"startDate":"","timeLimit":"","startDateLock":"","hasPreRequisite |
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 | |
//write to log | |
if (filesize('ipn-log.json')) { | |
$log = file_get_contents('ipn-log.json'); | |
$log = json_decode($log,true); | |
} | |
else { | |
$log = array(); | |
} |
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 sendmail($aim,$from,$subject,$text, $touid = 0, $attachfile=array()) | |
{ | |
if(!$aim) return 0; | |
$originalsubj = $subject; | |
$charset = "utf-8"; | |
$boundary = "--".md5(uniqid(time())); // любая строка, которой не будет ниже в потоке данных. | |
$EOL = "\r\n"; // ограничитель строк, некоторые почтовые сервера требуют \n - подобрать опытным путём |