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

Organizations

@unit-LAEDS

Block or report CiceroLino

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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,
  turnOnComputer,
  getConnection,
  getBackToWork,
} from './shared/utils/environment';

interface SoftwareDeveloper {
  readonly age: number;
  readonly languages: readonly string[];
  readonly knowledge: readonly string[];
  readonly hobbies: readonly string[];
  readonly whoami: readonly string[];
}

type WorkingStatus = 'productive' | 'distracted' | 'offline';

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

export async function getWorkingStatus(programmer: SoftwareDeveloper): Promise<WorkingStatus> {
  try {
    const [coffee, computer, wifi] = await Promise.all([
      getCoffee(),
      turnOnComputer(),
      getConnection(),
    ]);

    return await getBackToWork(programmer, coffee, computer, wifi);
  } catch (error) {
    console.error('Error getting working status:', error);
    return 'offline';
  }
}

// This code works on all machines, not just mine! 😎🚀

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.6k 2.5k

  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