This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define true 1 | |
| #define false 0 | |
| typedef struct lista { | |
| int valor; | |
| struct lista *sig; | |
| } lista; |
This file contains hidden or 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 serial | |
| s = serial.Serial('COM3') | |
| print(s.name) | |
| print(s.is_open) | |
| s.write(b'Hello Omar') | |
| s.close() | |
| print(s.is_open) | |
| //python -m serial.tools.list_ports | |
| // pyuic5 -x bingo.ui -o ui.py |
This file contains hidden or 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
| //escala | |
| [ | |
| { | |
| min_escala: | |
| max_escala: | |
| criterio_exito: | |
| } | |
| ] |
This file contains hidden or 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_contrato: | |
| fecha_emision: | |
| exclusivo_contrato: | |
| id_proveedor: | |
| nombre_proveedor: | |
| web_proveedor: | |
| email_proveedor: | |
| } |
This file contains hidden or 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
| { | |
| nota_evaluacion: | |
| tipo_evaluacion: | |
| id_productor: | |
| id_proveedor: | |
| } |
This file contains hidden or 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
| Req body: | |
| { | |
| tipo_evaluacion: 'renovacion' //o 'inicial | |
| id_productor: | |
| criterios: [ { | |
| id_criterio_evaluacion: | |
| peso_prctj__eval_crit: | |
| }, { | |
| //otros objetos asi... | |
| } |
This file contains hidden or 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
| Start pg admin | |
| sudo pg_ctlcluster 10 main start | |
| Drop tables | |
| DROP TABLE public."Contractor", public."Freelancer",public."User", public."SequelizeMeta", public."Project",public."IntPostulationProject", public."ProjectStage", public."Experiencia",public."Review",public."Educacion"; | |
| Migraciones | |
| npx sequelize-cli db:migrate | |
| Seeders |
This file contains hidden or 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 React, {Component} from 'react'; | |
| class Login extends Component{ | |
| render(){ | |
| return <div>hola </div> | |
| } | |
| } | |
| export default Login; |
This file contains hidden or 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
| define(["sugar-web/activity/activity", "sugar-web/env", "sugar-web/graphics/icon", "webL10n", "sugar-web/graphics/presencepalette"], function (activity,env,icon, webL10n, presencepalette) { | |
| // Manipulate the DOM only when it is ready. | |
| requirejs(['domReady!'], function (doc) { | |
| // Initialize the activity. | |
| activity.setup(); | |
| // Welcome user |
This file contains hidden or 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
| query { | |
| Business{ | |
| businessId | |
| businessName | |
| ratings{ | |
| ratingGroup { | |
| overallRatingDomain{ | |
| mean | |
| } | |
| businessRatingDomain{ |
NewerOlder