This file contains 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
dedi2169.your-server.de/plussftp_db5/tx_plussapplication_domain_model_coreinfo/ https://konsoleh.your-server.de/phpmyadmin4/sql.php?db=plussftp_db5&table=tx_plussapplication_domain_model_coreinfo&pos=0 | |
Showing rows 0 - 394 (395 total, Query took 0.0938 seconds.) | |
SELECT gtm, FROM_UNIXTIME(tstamp) FROM `tx_plussapplication_domain_model_coreinfo` WHERE FROM_UNIXTIME(tstamp) >= "2019-09-12 00:00:00" AND FROM_UNIXTIME(tstamp) < "2019-09-19 00:00:00" AND gtm <> "" AND gtm <> "tk" AND gtm <> "init" ORDER BY `FROM_UNIXTIME(tstamp)` ASC | |
gtm FROM_UNIXTIME(tstamp) | |
27d665b9-4ae9-4894-b798-0ad8c073716d 2019-09-12 00:13:04 | |
8717a547-9499-4dc9-a1a2-8bf437409b13 2019-09-12 06:42:59 | |
8717a547-9499-4dc9-a1a2-8bf437409b13 2019-09-12 06:43:05 |
This file contains 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
var gulp = require('gulp'); | |
var browserSync = require('browser-sync').create(); | |
var sass = require('gulp-sass'); | |
// Compile sass into CSS & auto-inject into browsers | |
gulp.task('sass', function() { | |
return gulp.src(['node_modules/bootstrap/scss/bootstrap.scss', 'src/scss/*.scss']) | |
.pipe(sass()) | |
.pipe(gulp.dest("src/css")) | |
.pipe(browserSync.stream()); |