This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Dracula", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.confirmDelete": false, | |
"editor.tabSize": 2, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AppError from '@shared/errors/AppError'; | |
import FakeHashProvider from '../providers/HashProvider/fakes/FakeHashProvider'; | |
import FakeUsersRepository from '../repositories/Fakes/FakeUsersRepository'; | |
import CreateUserService from './CreateUserService'; | |
describe('CreateUser', () => { | |
it('should be able to create a new user', async () => { | |
const fakeUsersRepository = new FakeUsersRepository(); | |
const fakeHashProvider = new FakeHashProvider(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//Themes | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Omni", | |
//Fonts | |
"editor.fontSize": 14, | |
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
//Fonts | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
// Editor config | |
"editor.tabSize": 2, | |
"editor.rulers": [80, 120], | |
"editor.minimap.enabled": false, | |
"editor.trimAutoWhitespace": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "Yd7TzRIAACwAw1Fi", | |
"uid": "fundamento-do-blender", | |
"url": null, | |
"type": "courses", | |
"href": "https://dessrosa.cdn.prismic.io/api/v2/documents/search?ref=YeG41REAAC4A0Q59&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22Yd7TzRIAACwAw1Fi%22%29+%5D%5D", | |
"tags": [], | |
"first_publication_date": "2022-01-12T13:12:59+0000", | |
"last_publication_date": "2022-01-13T12:48:41+0000", | |
"slugs": ["blender"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
# Mapeamento de nomes dos Shape Keys do padrão Default para o padrão ARKit | |
name_mapping = { | |
"Default": "base_pose.001", | |
"Hair_Hat": "Hair_Hat", | |
"C_glabella_down_pose": "browInnerDown", | |
"tongue_up_pose": "tongueOut", | |
"phoneme_mbp_pose": "mouthPressRight", | |
"L_upper_lip_lower_pose": "mouthFrownLeft.001", |