At time of writing elastic.co
does not provide ARM builds for raspberry. This tutorial describes how to compile e.g. filebeat
and run in on Raspberry Pi3.
You'll need Go (>1.8) and Pyhton with virtualenv.
const char *readLine(FILE *file, char* line) { | |
if (file == NULL) { | |
printf("Error: file pointer is null."); | |
exit(1); | |
} | |
int maximumLineLength = 128; | |
char *lineBuffer = (char *)malloc(sizeof(char) * maximumLineLength); |
<?php | |
//runtime | |
$startTime = microtime(); | |
//get url from input | |
$url = $argv[1]; | |
//get array of all links to *.ts files | |
$list = getHlsFiles($url); |
Below is a full tutorial on how to setup and use Googles Firebase push notification API for both Android and iOS. It is based on this | |
earlier implementation of Googles GCM method: https://gist.github.com/prime31/5675017 - FCM is the new method and GCM will eventually be | |
retired. | |
## THE BELOW METHOD IS THE NEWER FCM METHOD: | |
Register your app in the FCM Console: https://console.firebase.google.com (add project) | |
1. Click on the newly added project, in the upper left menu is the "Overview" and Gear Settings. | |
2. Click on the GEAR settings icon, and then on "Project Settings" | |
3. In the main screen, click on "Cloud Messaging" |
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="author" content="Galenic"> | |
<script src="js/jquery-1.9.1.js"></script> | |
<script src="js/knockout-2.1.0.js"></script> | |
<script src="js/Chart.js"></script> | |
<link rel="stylesheet" href="pure-min.css"> |