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
/* | |
* Autor: Luis Alberto Ccalluchi Lopez | |
* | |
* ============================================================================ | |
* COMPILACIÓN: | |
* ============================================================================ | |
* | |
* g++ -o minimizar_afd main.cpp | |
* | |
* ============================================================================ |
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 <iostream> | |
#include <fstream> | |
#include <sstream> | |
#include <string> | |
#include <set> | |
#include <map> | |
#include <vector> | |
#include <queue> | |
#include <algorithm> |
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
pipeline { | |
agent any | |
environment { | |
REPO_DIR = '/home/projects/dock-fastmvp' // Ruta completa a tu proyecto | |
} | |
stages { | |
stage('Prepare Repository') { | |
steps { | |
script { | |
// Verificar si el directorio existe, y si no, crearlo |
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 from "react"; | |
import { FieldError, SubmitHandler, useForm } from "react-hook-form"; | |
import { | |
numberAutoFormat, | |
isNotDate, | |
dateAutoFormat, | |
} from "../../../../../../utilities"; | |
type Inputs = { | |
name: string; |
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.flex-capture div.field>label { | |
display: block; | |
} | |
div.flex-capture form { | |
font-family: var(--font-upch); | |
} | |
div.flex-capture .submit>button:disabled { | |
background: #ced4da !important; | |
border: 1px solid #ced4da !important; |
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
# Fuente: https://github.com/vercel/next.js/blob/canary/examples/with-docker/README.md | |
# Install dependencies only when needed | |
FROM node:16-alpine AS deps | |
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. | |
RUN apk add --no-cache libc6-compat | |
WORKDIR /app | |
COPY package.json yarn.lock ./ | |
RUN yarn install --frozen-lockfile |
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<iostream> | |
#include<glad/glad.h> | |
#include<GLFW/glfw3.h> | |
int main() | |
{ | |
// Inicializar GLFW | |
glfwInit(); | |
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
const data = [ | |
{ x: 4.75, y: 4 }, | |
{ x: 4.5, y: 3 }, | |
{ x: 5, y: 5 }, | |
{ x: 4.25, y: 2 }, | |
{ x: 4, y: 1 }, | |
]; | |
function main() { | |
let xy = 0; |
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
@extends('adminlte::page') | |
@section('title', 'Grupo Colitas Arequipa') | |
@section('content_header') | |
<h1>Listado de Posts</h1> | |
@stop | |
@livewireScripts // Agrega los sripts de liveWire |
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 <atomic> | |
#include <iostream> | |
#include <math.h> | |
using namespace std; | |
template <typename T> | |
T fetch_pow(atomic<T> &, T); | |
int main() | |
{ |
NewerOlder