Skip to content

Instantly share code, notes, and snippets.

View djom202's full-sized avatar

Jonathan Olier djom202

View GitHub Profile
@djom202
djom202 / logs.txt
Created November 20, 2024 22:01
Issue with Simultaneous Connections to AWS IoT Core and Arduino Cloud
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
@djom202
djom202 / AwsManager.h
Created November 17, 2024 22:21
AWS Connction with ArduinoCloud
#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();
@djom202
djom202 / pbs_files_convert.js
Last active June 30, 2023 05:22
This script help to convert some file into the https://pokemonessentials.fandom.com/es/wiki/Archivos_PBS to json
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 });
@djom202
djom202 / helpers.ts
Created July 14, 2022 23:15
Paths to the endpoints
import { v4 as uuidv4 } from 'uuid'
export namespace Helpers {
export function randomUUID() {
return uuidv4()
}
}
@djom202
djom202 / findMultiples.js
Created March 24, 2022 18:30
Get a next multiple of 5 in this case
function findMultiples(x) {
return Math.ceil(x/5)*5
}
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;
@djom202
djom202 / code.js
Last active February 27, 2021 03:40
Amplify Schema
// 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)
@djom202
djom202 / gist:c190a1668a11c14d0328dcdc79a42da0
Created October 27, 2020 01:33 — forked from timonweb/gist:3165322
Code to catch all PHP errors which result in 500 Error Code. Include this snippet at the beginning of index.php file
<?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);
@djom202
djom202 / jenkins-set-number-of-executors.groovy
Created October 31, 2019 20:27 — forked from ivan-pinatti/jenkins-set-number-of-executors.groovy
Jenkins - Set number of executors via groovy script - #jenkins #groovy
#!groovy
// imports
import jenkins.model.Jenkins
// parameter
Integer numberOfExecutors = 2
// get Jenkins instance
Jenkins jenkins = Jenkins.getInstance()
@djom202
djom202 / dijkstra.js
Created July 29, 2019 21:17 — forked from nybblr/dijkstra.js
Dijkstra's Algorithm in JavaScript.
var graph = [
'AB6',
'AC3',
'BD6',
'CD5',
'CE9',
'DF8',
'DE3',
'EG8',
'FG2'