Skip to content

Instantly share code, notes, and snippets.

package net.spaceinfinity.sp.app.aplicacoes.workflow
import net.spaceinfinity.sp.app.aplicacoes.dto.AdicionarComentarioDTO
import net.spaceinfinity.sp.app.aplicacoes.dto.AplicacaoID
import net.spaceinfinity.sp.app.aplicacoes.dto.AtualizarEstagioDTO
import net.spaceinfinity.sp.app.aplicacoes.models.Estagio
import net.spaceinfinity.sp.common.workflow.Workflow
import net.spaceinfinity.sp.common.workflow.workflow
object AplicacaoWorkflow {
-- Entidades
CREATE TABLE Contacts
(
ContactID SERIAL PRIMARY KEY
);
CREATE TABLE Deals
(
DealID SERIAL PRIMARY KEY
2023-10-25T22:58:24.249-07:00 DEBUG [mts-app,653a0000c1d736730123719932c3f6db,b37798605cdc8338] 83428 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to net.spaceinfinity.mts.app.pesquisas.controllers.PesquisaPopularController#buscarPesquisas()
2023-10-25T22:58:24.249-07:00 DEBUG [mts-app,653a0000c1d736730123719932c3f6db,b37798605cdc8338] 83428 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to net.spaceinfinity.mts.app.pesquisas.controllers.PesquisaPopularController#buscarPesquisas()
2023-10-25T22:58:24.250-07:00 DEBUG [mts-app,653a0000c1d736730123719932c3f6db,b37798605cdc8338] 83428 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to net.spaceinfinity.mts.app.pesquisas.controllers.PesquisaPopularController#buscarPesquisas()
2023-10-25T22:58:24.250-07:00 DEBUG [mts-app,653a0000c1d736730123719932c3f6db,b37798605cdc8338] 83428 --- [nio-8080-exec-8] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to net.spaceinfinity.mts.app.pesquisas.cont
{
"schema": "1",
"solution": {
"name": "Real Estate Platform",
"description": "Default schema used for testing",
"status": "IN_DEVELOPMENT",
"domain": "real-estate.com",
"repository": {
"id": "real-estate-service",
"organization": "general-services",
import { useState } from 'react'
import { RadioGroup } from '@headlessui/react'
const colors = [
{ name: 'Pink', bgColor: 'bg-pink-500', selectedColor: 'ring-pink-500' },
{ name: 'Purple', bgColor: 'bg-purple-500', selectedColor: 'ring-purple-500' },
{ name: 'Blue', bgColor: 'bg-blue-500', selectedColor: 'ring-blue-500' },
{ name: 'Green', bgColor: 'bg-green-500', selectedColor: 'ring-green-500' },
{ name: 'Yellow', bgColor: 'bg-yellow-500', selectedColor: 'ring-yellow-500' },
]
!include https://raw.githubusercontent.com/adrianvlupu/C4-PlantUML/latest/C4.puml
' uncomment the following line and comment the first to use locally
' !include C4.puml
' Scope: A single software system.
' Primary elements: The software system in scope.
' Supporting elements: People and software systems directly connected to the software system in scope.
' Intended audience: Everybody, both technical and non-technical people, inside and outside of the software development team.
' Colors
import { sleep, group } from "k6";
import http from "k6/http";
export const options = {
ext: {
loadimpact: {
distribution: {
"amazon:us:ashburn": { loadZone: "amazon:us:ashburn", percent: 100 },
},
},
<div id="smart-button-container">
<div style="text-align: center;">
<div id="paypal-button-container"></div>
</div>
</div>
<script src="https://www.paypal.com/sdk/js?client-id=AQWLz3vKbMe_IgBuGxCM6oJeQ40-n9nzBL5M47ITCEjY3oMtWqqaGuCIUU5XJj-piDPXvuZXOAi0awWg&currency=BRL" data-sdk-integration-source="button-factory"></script>
<script>
function initPayPalButton() {
paypal.Buttons({
style: {
### Keybase proof
I hereby claim:
* I am tiarebalbi on github.
* I am tiare (https://keybase.io/tiare) on keybase.
* I have a public key whose fingerprint is 7437 477E F52C EF9A 9B68 60B4 394B 17D7 6AAC ECFF
To claim this, I am signing this object:
// @flow
import type { AuthConfig, AuthTokenType, Storage } from '../types';
import axios, { Axios, AxiosXHRConfigBase } from 'axios';
import { AuthenticationError } from './authenticationError';
import { decode } from '../helpers/htmlEntitiesEncoding';
import { LocalStorage } from '../helpers/storage';
import Authentication from './authentication';
import ErrorMapping from './errorMapping';