Skip to content

Instantly share code, notes, and snippets.

View thiagobutignon's full-sized avatar

Thiago Butignon Claramunt thiagobutignon

  • 02:25 (UTC -03:00)
View GitHub Profile
@thiagobutignon
thiagobutignon / boxed-text.json
Last active September 17, 2021 03:57
Zup Innovation - Thiago Butignon Claramunt
{
"_beagleComponent_": "beagle:container",
"style": {
"backgroundColor": "#FF0000",
"padding": {
"all": {
"value": 60,
"type": "REAL"
}
}
{
"name": "Thiago",
"email": "[email protected]"
}
import { HttpClient, HttpStatusCode } from '@/data/protocols'
import { InvalidCredentialError, UnexpectedError } from '@/domain/errors'

import { LoginUsecase } from '@/domain/usecases'

export class RemoteLogin implements LoginUsecase {
  constructor (
    private readonly url: string,
 private readonly httpClient: HttpClient
import { HttpClient, HttpStatusCode } from '@/data/protocols'
import { InvalidCredentialError, UnexpectedError } from '@/domain/errors'

import { LoginUsecase } from '@/domain/usecases'

export class RemoteLogin implements LoginUsecase {
  constructor (
    private readonly url: string,
 private readonly httpClient: HttpClient
/**
* This file is part of the Softbank Robotics tutorial project, specifically focused on animating
* the Pepper robot using the QiSDK framework. It demonstrates how to build and run animations
* alongside playing sound effects and handling robot lifecycle callbacks.
*
* @file AnimateTutorialActivity.kt
* @author Softbank Robotics Europe
* @since 2018
*/