Skip to content

Instantly share code, notes, and snippets.

<?php
$base64_usrpwd = base64_encode($_POST['user'].':'.$_POST['pass']);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://localhost:8080/rest/api/2/issue/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json',
'Authorization: Basic '.$base64_usrpwd));
<html>
<head>
<script src="jquery-2.1.4.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="wrapper">
<h1>Create Issue</h1>
<form id="create-form">
Summary: <input type="text" name="summary" id="summary" value=""/>
RewriteEngine On
RewriteRule ^rest/(.*)$ api.php?data=$1
<?php
$index = $_GET['data'];
//accessing database
$database = Array (
"SP500"=>2128.19,
"DOW"=>18150.44,
"NASDAQ"=>5194.41
@theredstapler
theredstapler / gendocx.php
Last active December 19, 2017 19:15
Source code of PHPWord Tutorial by Red Stapler. View Tutorial at: https://redstapler.co/tutorials/phpword-intro/
<?php
require_once 'vendor/autoload.php';
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
\PhpOffice\PhpWord\Shared\Html::addHtml($section, $_POST['htmlstring']);
$fancyTableStyleName = 'Fancy Table';
$fancyTableStyle = array('borderSize' => 1, 'borderColor' => 'd2d2d2', 'cellMargin' => 40, 'alignment' => \PhpOffice\PhpWord\SimpleType\JcTable::CENTER);
<?php
$ch = curl_init('http://redstapler-pc:8080/rest/api/2/user?username='.$_POST['username']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
if(isset($_COOKIE['JSESSIONID']))
$cookiestr='JSESSIONID='.$_COOKIE['JSESSIONID'];
else
$cookiestr="";
<?php
$ch = curl_init('http://redstapler-pc:8080/rest/auth/1/session');
$jsonData = array(
'username' => $_POST['username'],
'password' => $_POST['password'] );
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
#!/bin/sh
echo "Start Auto Deployment"
git --work-tree=//computer-name/deployment --git-dir=//computer-name/myrepo checkout -f
echo "Deployment Finished"
<html>
<head>
<script src="jquery-2.1.4.js"></script>
<script src="jquery.autocomplete.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
h1 { text-align: center; margin: 20px 20px; }
#autocomplete { margin: 0 auto; }
</style>
<html>
<head>
<script src="jquery-2.1.4.js"></script>
<script src="jquery.autocomplete.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
h1 { text-align: center; margin: 20px 20px; }
#autocomplete { margin: 0 auto; }
</style>