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
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> | |
<script> | |
Date.prototype.addDays = function(days) { | |
var date = new Date(this.valueOf()); | |
date.setDate(date.getDate() + days); | |
return date; | |
} | |
const getStockInformation = async (range) => { |
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
function classifyAttendances($concepts, $attendanceIn, $attendanceOut) { | |
$concepts = json_decode($concepts); | |
$attendanceIn = strtotime($attendanceIn); | |
$attendanceOut = strtotime($attendanceOut); | |
$response = []; | |
foreach ($concepts as $key => $value) { | |
$start = strtotime($value->start); | |
$end = strtotime($value->end); | |
if (($attendanceIn >= $start && $attendanceIn <= $end)) { |
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
require('dotenv').config(); | |
module.exports = { | |
/* | |
** Headers of the page | |
*/ | |
head: { | |
htmlAttrs: { | |
lang: 'de', | |
}, |
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
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library TestsAccounts { | |
function getAccount(uint index) pure public returns (address) { | |
address[15] memory accounts; | |
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; |
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
<a href="<?php echo get_post_meta( get_the_ID(), 'linkp', true ); ?>" > <?php the_title(); ?> </a> |
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
.caja-mentores{ | |
..... | |
/*Agregar al final de esta clase*/ | |
position: relative; | |
text-align: center; | |
} | |
.inner-mentores{ | |
display: inline-block; | |
max-width: 1125px; |
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
<div class="wrap-noticias"> | |
<div class="lean-cavas"> | |
Esto no debe ser un div con background-imagen sino un div q tiene dentro un <img> con la imagen en el src | |
</div> | |
<div class="taller-cont"> | |
<div class="texto-varios"> | |
<div class="tits-azules"> | |
<p>LEAN CAVAS</p> | |
</div> | |
<div class="texto"> |
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
<div class="talleres ...."> | |
<div class="enlinea"> | |
Aqui va todo lo que estaba en el div talleres | |
</div> | |
</div> | |
y en el .css coloca: | |
.talleres{ |
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
public static function makeId() | |
{ | |
$app = JFactory::getApplication(); | |
// Get url parameters set by plugins | |
if(!empty($app->registeredurlparams)) | |
{ | |
$registeredurlparams = $app->registeredurlparams; | |
} | |
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
// Get url parameters set by plugins | |
if(!empty($app->registeredurlparams)) | |
{ | |
$registeredurlparams = $app->registeredurlparams; | |
} | |
// Platform defaults |
NewerOlder