Skip to content
View CiceroLino's full-sized avatar
⚙️
RTFM and STFW = 42
⚙️
RTFM and STFW = 42

Organizations

@unit-LAEDS
Block or Report

Block or report CiceroLino

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
CiceroLino/README.md

Hi! I write software for web

import {
  getCoffee,
  turnOnTheComputer,
  getConnetion,
  getBackToWork,
} from './shared/utils/environment';

type SoftwareDeveloper = {
  age: number;
  languages: string[];
  knowledge: string[];
  hobbies: string[];
  whoami: string[];
};

type Working = boolean;

const Cicero: SoftwareDeveloper = {
  age: 24,
  languages: ['Portuguese', 'English', 'Japanese'], // Still trying to learn Japanese
  knowledge: [
    'Mostly Backend',
    'Mostly SQL Database',
    'Serverless & Cloud Formation',
    'Message Broker',
    'A bit of frontend',
  ],
  hobbies: [
    'Update my knowledge about tech and science',
    'Upgrade my english and japanese',
    'Watch Animes',
    'Listen music',
    'Read mangas and comics',
  ],
  whoami: [
    'Geek',
    'Computer Science Student',
    'Software Engineer',
    'Linux User',
  ],
};

export async function getResponse(programmer: typeof Cicero): Promise<Working> {
  let coffee = await getCoffee();
  let computer = await turnOnTheComputer();
  let wifi = await getConnetion();

  return await getBackToWork(programmer, coffee, computer, wifi);
}

// This code works only in my machine 😎😎

Lofi vibe

Pinned Loading

  1. community/community community/community Public

    Public feedback discussions for: GitHub Mobile, GitHub Discussions, GitHub Codespaces, GitHub Sponsors, GitHub Issues and more!

    Ruby 6.5k 2.4k

  2. Fluxo de trabalho com git Fluxo de trabalho com git
    1
    # Comandos básicos do [git](https://git-scm.com/)
    2
    
                  
    3
    <img align="center" src="https://www.hostinger.com.br/tutoriais/wp-content/uploads/sites/12/2019/05/Como-utilizar-Git-Hooks-.png" width="500" height="300"/>
    4
    
                  
    5
    ## Configuração inicial
  3. athena-crisis athena-crisis Public

    Forked from nkzw-tech/athena-crisis

    Athena Crisis is a modern-retro turn-based tactical strategy game. Athena Crisis is open core technology.

    TypeScript

  4. My personal config file to vscode My personal config file to vscode
    1
    {
    2
      // Editor
    3
      "editor.fontSize": 13,
    4
      "editor.fontFamily": "Fira Code",
    5
      "editor.fontLigatures": true,
  5. angular-template angular-template Public template

    HTML

  6. project-lab project-lab Public

    Projeto da disciplina de Project Lab do curso de ciências da computação. Discipline project (Project Lab) of computer science course.

    TypeScript 1