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
// ==UserScript== | |
// @name Kenjo Attendance Fill Month | |
// @namespace attendance.kenjo.sconde.net | |
// @version 1.1 | |
// @description Fill Kenjo Attendance month with templates | |
// @author Sergio Conde, Juan Domínguez Jara | |
// @match https://app.kenjo.io/* | |
// @match https://app.orgos.io/* | |
// @grant GM.getValue | |
// @grant GM.setValue |
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
// Proivder usage example: | |
// <ContextProvider> <MyApp></MyApp> </ContextProvider> | |
// TIP: The ContextProvider component must be placed above the router component if you use a router. | |
// Consumer usage example: | |
// export default withContext(MyComponent); | |
// now `context` gets passed to `MyComponent` as a prop. | |
// the context prop has two methods `get` and `set` that can read and update the state of the context provider component | |
import React, { createContext, Component } from 'react'; |
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 angular from 'angular' | |
export default angular.module('obs.apiMiddleware', []) | |
.factory('apiMiddleware', ($http, config) => { | |
'ngInject'; | |
return ({dispatch}) => next => action => { | |
const {type = "", meta = {}, payload = {}} = action | |
if(!meta.async) { | |
return next(action) |
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
// this script requires a `.env` file with a `NOW_TOKEN` to work | |
// it also requires the npm packages `dotenv` and `axios` | |
require('dotenv').config() | |
const pkg = require('./package.json') | |
const axios = require('axios').create({ | |
baseURL: "https://api.zeit.co/now", | |
headers: { | |
Authorization: `Bearer ${process.env.NOW_TOKEN}` | |
} |
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
%APELLIDOS, NOMBRE: Domínguez Jara, Juan | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
%Ejercicio 1: | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% NOTA: Este codigo ha sido desarrollado con GNU Octvae | |
% para cualquier duda envie un email a [email protected] |
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
swagger: '2.0' | |
info: | |
title: Uber API | |
description: Move your app forward with the Uber API Rober | |
version: 1.0.0 | |
host: api.uber.com | |
schemes: | |
- https | |
basePath: /v1 | |
produces: |
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
clear | |
w = 500; | |
h = 500; | |
x = 0; | |
y = 0; | |
bg = 'white'; | |
marco(x,y,w,h, bg); | |
ventana(0.1, 0.1, 0.8, 0.8, -6,6, -1,9, -2,2); |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package javatdt; | |
import java.awt.Color; |
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
module.exports = { | |
config: { | |
windowSize: [720, 456], | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks | |
fontFamily: 'Consolas, "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) |
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 got = require("got"); | |
var cheerio = require("cheerio"); | |
var Fuzzy = require("fuzzy-search"); | |
var base_url = "https://www.tusubtitulo.com"; | |
var links = []; | |
module.exports = { | |
index: index, |
NewerOlder