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
16:43:02.112 -> Setting up the server for AWS | |
16:43:02.112 -> Wifi CONNECTED | |
16:43:02.144 -> RRSI: -62 | |
16:43:02.144 -> Setting up the server for AWS | |
16:43:02.144 -> [175335][E][NetworkClient.cpp:319] setSocketOption(): fail on 0, errno: 9, "Bad file number" | |
16:43:02.208 -> [175397][E][NetworkClient.cpp:319] setSocketOption(): fail on 0, errno: 9, "Bad file number" | |
16:44:24.597 -> �������0�!�d��10��Јb�Connecting to Wi-Fi...NOT CONNECTED | |
16:44:27.491 -> Connecting to Wi-Fi...E (5499) wifi:sta is connecting, return error | |
16:44:27.554 -> [ 2648][E][STA.cpp:415] connect(): STA connect failed! 0x3007: ESP_ERR_WIFI_CONN | |
16:44:27.587 -> NOT CONNECTED |
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
#ifndef AwsManager_h | |
#define AwsManager_h | |
void setupAws(MQTTClient &client, WiFiClientSecure &net); | |
void subscribeTopic(MQTTClient &client); | |
void setCretifications(WiFiClientSecure &net); | |
void publishMessage(MQTTClient &client, String payload); | |
void messageHandler(String &topic, String &payload); | |
const char* getSerial(); |
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
const fs = require('fs'); | |
const path = require('path'); | |
const nReadlines = require('n-readlines'); | |
const source = './src'; | |
function getFiles() { | |
let arr = []; | |
const fullPath = path.join(__dirname, source); | |
const files = fs.readdirSync(fullPath, { withFileTypes: true }); |
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
import { v4 as uuidv4 } from 'uuid' | |
export namespace Helpers { | |
export function randomUUID() { | |
return uuidv4() | |
} | |
} |
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
function findMultiples(x) { | |
return Math.ceil(x/5)*5 | |
} |
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
ul > li.active { | |
&::before { | |
content: ''; | |
position: relative; | |
border-style: solid; | |
border-width: 25px 0px 28px 2px; | |
border-color: $ligth_blue; | |
display: block; | |
width: 1px; | |
z-index: 1; |
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
// Vue methods | |
saveVehicle() { | |
this.$store.dispatch('vehicles/add_vehicle', this.newVehicle) | |
this.$store.dispatch('vehicles/set_newvehicleform', false) | |
}, | |
// Store | |
async add_vehicle({ commit, dispatch }, payload) { | |
console.log('payload', payload) |
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
<?php | |
define('E_FATAL', E_ERROR | E_USER_ERROR | E_PARSE | E_CORE_ERROR | | |
E_COMPILE_ERROR | E_RECOVERABLE_ERROR); | |
define('ENV', 'dev'); | |
//Custom error handling vars | |
define('DISPLAY_ERRORS', TRUE); | |
define('ERROR_REPORTING', E_ALL | E_STRICT); |
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
#!groovy | |
// imports | |
import jenkins.model.Jenkins | |
// parameter | |
Integer numberOfExecutors = 2 | |
// get Jenkins instance | |
Jenkins jenkins = Jenkins.getInstance() |
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 graph = [ | |
'AB6', | |
'AC3', | |
'BD6', | |
'CD5', | |
'CE9', | |
'DF8', | |
'DE3', | |
'EG8', | |
'FG2' |
NewerOlder