Harvested on
| | 11 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 12 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 15 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 17 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 30 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 5 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 57 | | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
| | 6 | Migros Ostschweiz, welcome and thank you for your trust and partnership #fuelcell #futuremobility... 10 comments on LinkedIn
17
17
3 Shares
Like
Comment
Share
Comments
Write a comment...
MAXIMATOR GmbH
October 8
·
Today is the biggest Hydrogen Online fair of this year and we are there too. 24 hours we will give our visitors a live chat with us, inform about our hydrogen technology and our ′′ hydrogen ′′ visions.
If you want to visit us, you will find us in hall 3 of the Hydrogen Online Conference. Tickets are available here: https://hydrogen-online-conference.com/
#hydrogenmobility #hydrogen #Wasserstoff #H2Mobilitaet
#elektrolyseur #infrastruktur #maxprodukt #maximatorteam
· See original
· Rate this translation
19
19
4 Shares
Like
Comment
Share
Comments
Write a comment...
MAXIMATOR GmbH is feeling hopeful.
October 6
·
A spontaneous meeting of two hydrogen specialists - they met in Stuttgart and exchanged their knowledge about hydrogen technologies, future plans and visions.
Dr. Stefan Kaufmann (MdB), innovation officer ′′ Green Hydrogen ′′ of the federal government and our René Himmelstein spoke intensively about the company #Maximator, its #hydrogen filling stations and electrolysis processes as well as about existing hurdles, which, for example, still have to be skipped when expanding t… See More
· See original
· Rate this translation
28
28
1 Comment
Like
Comment
Share
Comments
Most Relevant
Write a comment...
Peter Letecky
Weshalb wird nicht von den Herstellern bundesweit in ihren vertrags Werkstätten wasserstoff gefordert, ich denke hyundai machts gut vor, siehe Schweiz.... Wir könnten schon viel weiter sein mit wasserstoff, Elektro ist nur ein Übergang um die Kohle vom… See More
Like
· Reply · See Translation · 4w
MAXIMATOR GmbH
September 29
·
Hydrogen Online Conference - HOC 2020
We are part of it and would like to invite all interested to talk to us about the world-famous topic of energy transition, climate control and of course Maximator's know-how in hydrogen technology.
We look forward to your visit and good conversations!
#hydrogenmobility #hydrogen #Wasserstoff #pressure #hochdruck #H2Mobilitaet #Elektrolyseur #infrastruktur #testinglab #testingservices
· See original
· Rate this translation
12
12
1 Comment
3 Shares
Like
Comment
Share
Comments
Most Relevant
Write a comment...
Carolin De
Macht eine Veranstaltung draus und erinnert eure Abonnenten so an die Veranstaltung
Like
· Reply · See Translation · 7w
MAXIMATOR GmbH is feeling fantastic.
September 26
·
https://www.nnz-online.de/news/news_lang.php?ArtNr=281412
NNZ-ONLINE.DE
Airhockeytisch für Bertolt-Brecht-Schule : 26.09.2020, 15.32 Uhr
26.09.2020, 15.32 Uhr : Airhockey kommt aus den USA und ist ein Geschicklichkeitsspiel, das dem Eis-Curling nachempfunden ist, für zwei bis vier Spieler. In Mannschaften oder auch im Einzelwettbewerb dürfen die Grundschüler der Bertolt-Brecht-Schule ab sofort ihr Können zeigen...
13
13
Like
Comment
Share
Comments
Write a comment...
MAXIMATOR GmbH
September 18
·
Usage:
Pressure increase and pressure control in hydraulic systems.
The #test bench tests #hydraulic hoses of different sizes for #agricultural machinery.
Features:… See More
· See original
· Rate this translation
31
31
3 Shares
Like
Comment
Share
Comments
Write a comment...
41' rel='nofollow' target='_blank'>
9+
9+
1
MAXIMATOR GmbH
@MAXIMATOR.GmbH
· Industrial Company
Send Message
MAXI... | https://www.facebook.com/MAXIMATOR.GmbH | https://www.facebook.com/MAXIMATOR.GmbH | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 | 2020-11-18 19:02:19 |
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference
our WebHook API guide
Integrating with Java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
try {
URL urlCSV = new URL(
"https://cache.getdata.io/n80079_5b608571812872129c20312b62953539eses/latest_all.csv"
);
URLConnection urlConn = urlCSV.openConnection();
InputStreamReader inputCSV = new InputStreamReader(
((URLConnection) urlConn).getInputStream()
);
BufferedReader br = new BufferedReader(inputCSV);
String line;
String[] fields;
while ((line = br.readLine()) != null) {
// Each row
fields = line.split(",");
System.out.println(Arrays.toString(fields));
}
// clean up buffered reader
br.close();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
Integrating with NodeJs
const csv = require('csv-parser');
const https = require('https');
const fs = require('fs');
const file = fs.createWriteStream("temp_download.csv");
const request = https.get(
"https://cache.getdata.io/n80079_5b608571812872129c20312b62953539eses/latest_all.csv",
function(response) {
response.pipe(file);
}
);
file.on('finish', function() {
file.close();
fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => {
// Each row
console.log(row);
}).on('end', () => {
console.log('CSV file successfully processed');
});
});
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n80079_5b608571812872129c20312b62953539eses/latest_all.csv");
$rows = explode("\n",$data);
$s = array();
foreach($rows as $row) {
# Each row
var_dump( $row);
}
Integrating with Python
import csv
import urllib2
url = 'https://cache.getdata.io/n80079_5b608571812872129c20312b62953539eses/latest_all.csv'
response = urllib2.urlopen(url)
cr = csv.reader(response)
for row in cr:
# Each row
print row
Integrating with Ruby
require 'open-uri'
require 'tempfile'
require 'csv'
temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit')
temp_file << open("https://cache.getdata.io/n80079_5b608571812872129c20312b62953539eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end