Mysql Secure Installation (Unattended)
NB : MyPass
is your current mysql password
echo -e "MyPass\nn\nY\nY\nY\nY\n" | mysql_secure_installation 2>/dev/null
Result:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
#ifndef HTTPTHREAD_H | |
#define HTTPTHREAD_H | |
#include <QThread> | |
#include <QTcpSocket> | |
class FortuneThread : public QThread | |
{_ | |
Q_OBJECT |
<?php | |
/* | |
* Created by Sucipto | |
* http://www.sucipto.net | |
* June 2015 | |
*/ | |
include 'yandex.php'; |
Mysql Secure Installation (Unattended)
NB : MyPass
is your current mysql password
echo -e "MyPass\nn\nY\nY\nY\nY\n" | mysql_secure_installation 2>/dev/null
Result:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
//09/22/2015/22:54//iframeJs | |
var targetUrl = window.location.href; | |
if (self !== top) { | |
self.location.href = targetUrl | |
} | |
var iframe = iframe || { | |
object: null, | |
init: function init() { | |
this.object = document.getElementById("main-frame") | |
}, |
<?php session_start(); | |
if(isset($_SESSION['username'])){ | |
echo "Hi Admin, user kamu ".$_SESSION["username"]; | |
}else{ | |
header('Location: index.php'); | |
} | |
?> |
package com.pringstudio.cobaandroidtest; | |
import android.test.ActivityInstrumentationTestCase2; | |
import android.test.TouchUtils; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.TextView; | |
/** | |
* Created by sucipto on 4/14/16. |
package com.pringstudio.cobaandroidtest; | |
import org.junit.Test; | |
import static org.junit.Assert.*; | |
/** | |
* To work on unit tests, switch the Test Artifact in the Build Variants view. | |
*/ | |
public class ExampleUnitTest { |
repoObservable = Observable.from(listRepo); | |
repoObservable.subscribe(new Subscriber<GithubRepo>() { | |
@Override | |
public void onCompleted() { | |
Log.d("GithubRepo","Load done"); | |
} | |
@Override | |
public void onError(Throwable e) { |
service.getRepos("showcheap") | |
.subscribeOn(Schedulers.newThread()) | |
.observeOn(AndroidSchedulers.mainThread()) | |
.subscribe(new Subscriber<List<GithubRepo>>() { | |
@Override | |
public void onCompleted() { | |
} | |
@Override |
sudo: required | |
dist: trusty | |
before_install: | |
- sudo add-apt-repository --yes ppa:beineri/opt-qt551-trusty | |
- sudo apt-get update -qq | |
install: | |
- sudo apt-get -y install qt55[QTPACKAGE] |