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
| 2019-05-19 11:06:51.590 14508-15246/one.block.androidexampleapp W/System.err: one.block.eosiojava.error.session.TransactionSignAndBroadCastError: one.block.eosiojava.error.session.TransactionCreateSignatureRequestRpcError: Error happened on calling getRequiredKeys RPC call. | |
| 2019-05-19 11:06:51.590 14508-15246/one.block.androidexampleapp W/System.err: at one.block.eosiojava.session.TransactionProcessor.signAndBroadcast(TransactionProcessor.java:483) | |
| 2019-05-19 11:06:51.591 14508-15246/one.block.androidexampleapp W/System.err: at one.block.androidexampleapp.TransactionTask.doInBackground(TransactionTask.java:140) | |
| 2019-05-19 11:06:51.591 14508-15246/one.block.androidexampleapp W/System.err: at one.block.androidexampleapp.TransactionTask.doInBackground(TransactionTask.java:34) | |
| 2019-05-19 11:06:51.591 14508-15246/one.block.androidexampleapp W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:345) | |
| 2019-05-19 11:06:51.591 14508-15246/one.block.androidexampleapp W/System.err: at java.util. |
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 arrayToCSV (twoDiArray) { | |
| // Modified from: http://stackoverflow.com/questions/17836273/ | |
| // export-javascript-data-to-csv-file-without-server-interaction | |
| var csvRows = []; | |
| for (var i = 0; i < twoDiArray.length; ++i) { | |
| for (var j = 0; j < twoDiArray[i].length; ++j) { | |
| twoDiArray[i][j] = '\"' + twoDiArray[i][j] + '\"'; // Handle elements that contain commas | |
| } | |
| csvRows.push(twoDiArray[i].join(',')); | |
| } |
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
| import java.io.BufferedInputStream; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStream; | |
| import java.io.OutputStreamWriter; | |
| import java.io.PrintWriter; |
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
| /** Creating and Deploying using Git, Github and PHP **/ | |
| Prerequisites: | |
| Server: SSH Acces, PHP, Git | |
| Local: SSH, Git | |
| 0.Create a PHP file in your project called "deploy.php" with this content: /*<?php `git pull`;*/ | |
| 1. Create Your Github Repo | |
| 2. Go to your project folder and initiate a git repository |
NewerOlder