Skip to content

Instantly share code, notes, and snippets.

View roniewill's full-sized avatar

Ramon William roniewill

View GitHub Profile
@roniewill
roniewill / zssn.md
Created May 19, 2025 20:00 — forked from eduardoazevedo3/zssn.md
Zombie Survival Social Network

ZSSN (Zombie Survival Social Network)

Descrição do Problema

O mundo finalmente atingiu o seu estado apocalíptico, onde uma pandemia causada por um virus de laboratório transforma seres humanos e animais em zumbis, seres sedentos por carne.

Você, como membro da resistência (e último sobrevivente com conhecimentos em desenvolvimento de software) foi incubido à desenvolver um sistema para compartilhamento de recursos entre os humanos não infectados.

Funcionalidades

# frozen_string_literal: true
module BankAccounts
class PerformTransaction < ApplicationService
BASE_FEE = 5
HIGHER_FEE = 7
ADIOTIONAL_FEE = 10
BUSINESS_HOURS = 9..18
def initialize(transaction_params)
const permissionsWithoutDescription = [
{
"id": 4957457360355328,
"name": "ERP_DEVICES",
"parent": "ERP_WEB",
"accessGroup": 6196405537603584,
"type": "DENIED",
"version": 0
},
{
{
"content": [
{
"name": "ERP_WEB",
"editable": true,
"visible": true,
"description": "Aplicativo ERP (Web)",
"type": "DENIED",
"version": 0
},
import React, { useState, useEffect } from 'react'
import {
Table,
TableBody,
TableCell,
TableContainer,
TableHead,
TableRow,
Icon,
function dataImport(db, callback) {
var students = db.collection('students');
var courses = db.collection('courses');
var instructors = db.collection('instructors');
// create student records
students.insertMany([
{
"_id": "john.shore",
{
"response": "success",
"data": {
"total": 75,
"content": [
{
"userName": "Lucas Campos Falcão",
"sessionId": 1,
"startDateTime": "2019-08-17 13:07:48",
"endDateTime": "2019-08-19 17:45:09",
type Product @model {
createdAt: DateTime!
id: ID! @isUnique
description: String!
price: String!
updatedAt: DateTime!
}
type Deliveryman @model {
createdAt: DateTime!
confirmSelectedAll() {
const modalRef = this.modalConfirm.open(ModalConfirmComponent);
modalRef.componentInstance.message = `Deseja realmente carregar todos as ${
this.pagination.total_count
} Cobranças?`;
modalRef.result.then(result => {
if (result) {
this.paramsUpdate = {
import React, { Component } from 'react';
import styled from 'styled-components';
import PropTypes from 'prop-types';
import { CircularProgress } from 'material-ui';
import Modal from 'react-responsive-modal';
import { CHANGE_PASSWORD } from '../../../constants/feedbackMessages';
import Submit from '../../../components/Button/Submit';
import InputText from '../../../components/InputText/InputText';
import InputPassword from '../../../components/InputText/InputPassword';