Your account at civihr has been activated.
You may now log in by clicking this link or copying and pasting it into your browser:
Your account at civihr has been activated.
You may now log in by clicking this link or copying and pasting it into your browser:
// one to many result
{
"id": 1,
"first_name": "john",
"phones": [
{
"id": 1,
"number": "40939394"
}
<?php | |
$pairs = []; | |
$dataSet = []; | |
const SCHOOL_ID_COL = 0; | |
const GROUP_ID_COL = 1; | |
// load data | |
$fileName = __DIR__ . '/matching_problem.csv'; |
echo "mysql-server-5.5 mysql-server/root_password password root" | sudo debconf-set-selections | |
echo "mysql-server-5.5 mysql-server/root_password_again password root" | sudo debconf-set-selections | |
sudo apt-get update | |
sudo apt-get install -y \ | |
curl \ | |
vim \ | |
man-db \ | |
mysql-server \ | |
git \ | |
php5 \ |
javascript:( | |
function(){ | |
var links = document.getElementsByClassName("bV"); | |
for(var i = 0; i < links.length; i++) | |
{ | |
var link = (links.item(i)); | |
if (link.text == 'View ticket') { | |
window.open(link.getAttribute('href')); | |
} else { | |
console.log('not expected' + link.text); |