Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 Chroma from "chroma-js"; | |
const ColorPalettes = [ | |
["264653", "2A9D8F", "E9C46A", "F4A261", "E76F51"], | |
["E63946", "F1FAEE", "A8DADC", "457B9D", "1D3557"], | |
["FFCDB2", "FFB4A2", "E5989B", "B5838D", "6D6875"], | |
["003049", "D62828", "F77F00", "FCBF49", "EAE2B7"], | |
["000000", "14213D", "FCA311", "E5E5E5", "FFFFFF"], | |
["FFA69E", "FAF3DD", "B8F2E6", "AED9E0", "5E6472"], | |
[ |
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
"[ | |
{ | |
"id": "10", | |
"name": "REQS", | |
"description": "", | |
"priority": "2", | |
"dateadded": "2020-04-13 12:02:35", | |
"startdate": "2020-04-13", | |
"duedate": null, | |
"datefinished": null, |
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
Prodev | |
- Bad code vs good code | |
- Differences | |
- How does good code looks like? | |
- How to write good code | |
- <RESEARCH> | |
- Opinions (read a lot) | |
- How to deal with bad code? | |
- Avoid? |
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
"Javascript & Drones, el ciclo de desarrollo en el mundo real." | |
En Skycatch desarrollamos tecnología para el levantamiento, procesamiento y entrega | |
de información geográfica e inspección de alta precisión. Para obtener los datos | |
necesarios utilizamos tecnología Drone que transporta un arreglo de sensores y cámaras | |
operadas por controladores y software básado en JS desarrollados por Skycatch. | |
Conoce como llevamos acabo el proceso de desarrollo, desde la identificación del | |
problema hasta el deploy de la solución. Javascript está en todos lados y los | |
drones no es la excepción, el proceso de trabajo que llevamos en Skycatch nos ayuda |
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
// Variable declaration | |
var animalsVectorArray = []; | |
var arraySize = 10; // arbitrary array size | |
var randomPlaceForTheCat = Math.floor(Math.random() * arraySize)-1; | |
console.log('Our cat will be on the: ' + randomPlaceForTheCat + 'index.'); | |
// Generate random values for the `animalsVectorArray` based on the `possibleAnimals` | |
for (var i=0; i<arraySize; i++) { | |
if (i===randomPlaceForTheCat) { |
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
http://www.signall.us/ | |
http://www.temjournal.com/documents/vol3no4/journals/1/articles/vol3no4/SignLanguageRecognitionusingNeuralNetworks.pdf | |
https://pdfs.semanticscholar.org/0dbe/3fedb9660b05932e119e1d7d463a7f8621db.pdf | |
http://ai2-s2-pdfs.s3.amazonaws.com/258f/c3e47f36d0ba3a7f6bcdf6f97bc2f293255d.pdf | |
http://www.jmlr.org/papers/volume13/cooper12a/cooper12a.pdf | |
https://www.idiap.ch/~oaran/publications/aran08phdthesis.pdf | |
http://cs231n.stanford.edu/reports2016/214_Report.pdf |
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
http://www.fpvmodel.com/new-products_c0.html | |
http://www.readymaderc.com/store/index.php?main_page=products_new | |
http://www.getfpv.com/new | |
http://www.rctimer.com/gallery-_ANY_-tp,1_b,_ANY__t,_ANY__p,0-index.html | |
http://www.surveilzone.com/FPV-Products?order=3 | |
http://www.hobbyking.com/hobbyking/store/hobbyking_new_rc_products.asp?showall=5 | |
http://www.asiatees.com/new-products | |
http://quadcopter.nyc/collections/whats-new | |
http://rotorgeeks.com/index.php?route=product/category&path=73 | |
https://newbeedrone.com/ |
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
job uuid from database | |
(metabase get sites with < 3 Layers) | |
get procesing job id (from datacapture in question) | |
procesing jobs table get uuid (uuid = job id) | |
go to papertrail | |
go to events (paste uuid in filter) | |
found out what was the last job who touched it | |
(keep in mind precog is on firebase) | |
get instance id to check the computer logs | |
DLQ (AWS) |
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
/* | |
Descripc´ón de un programa b´ásico en C | |
Hay varias cosas que aclarar pero la m´ás importante es NO PROGRAMES EN ESPA˜NOL JAM´AS | |
se ve mal, naco y de muy mal gusto poner nombres de variables o funcionaes en espa˜ñol, never, | |
pero te lo pongo as´í para que te sea m´ás facil identificar que es "lenguaje" y | |
que queda a tu discreci´ón como coder | |
Este es un programa escrito en C, el pap´á de muchos langs (lenguajes), | |
sigue siendo bien relevante en cosas de juegos, servers, y computo especisalizado |
NewerOlder