Thomas Winkley - www.thomaswinkley.com
π
This file contains hidden or 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
| # create a local .env file with the following 4 properties: | |
| # | |
| # MYSQL_DATABASE=<something> | |
| # MYSQL_USER=<something> | |
| # MYSQL_PASSWORD=<something> | |
| # MYSQL_ROOT_PASSWORD=<something> | |
| # | |
| # Note: I have had a LOT of issues working with anything newer then Docker Desktop v4.26.1 | |
| # If you're on something newer, then double check against this release. | |
| # |
Uma empresa de emprΓ©stimo precisa criar um sistema de anΓ‘lise de solicitaΓ§Γ£o de crΓ©dito. Sua tarefa serΓ‘ criar uma API REST SPRING BOOT E KOTLIN ππ para a empresa fornecer aos seus clientes as seguintes funcionalidades:
-
- Cadastrar:
- Request: firstName, lastName, cpf, income, email, password, zipCode e street Response: String
- Cadastrar:
This file contains hidden or 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
| warning: LF will be replaced by CRLF in .snyk. | |
| The file will have its original line endings in your working directory | |
| warning: LF will be replaced by CRLF in index.html. | |
| The file will have its original line endings in your working directory | |
| warning: LF will be replaced by CRLF in lerna-repo/.lfsconfig. | |
| The file will have its original line endings in your working directory | |
| warning: LF will be replaced by CRLF in lerna-repo/lerna.json. | |
| The file will have its original line endings in your working directory | |
| warning: LF will be replaced by CRLF in lerna-repo/package.json. | |
| The file will have its original line endings in your working directory |
This file contains hidden or 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
| ENDPOINT | |
| -------- | |
| https://data.mongodb-api.com/app/data-amzuu/endpoint/data/beta | |
| API KEY | |
| -------- | |
| 0vaT8d5Vh9cgvm3KdIQJWkl5M8alZgnoOczmApFlWVTMqisg24QWrUfMS0wkQ5Sj | |
I like writing well-formed git commits that explain the intention behind why a code change was made.
Check out Chris Beams excellent How to Write a Git Commit Message if you haven't read it.
Anyway, for a project I've been working on I've gathered up 900+ commits that hold up a pretty high quality (except for one π). Let's look at some trends about these commits!
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Add React in One Minute</title> | |
| </head> | |
| <body> | |
| <h2>Add React in One Minute</h2> | |
| <p>This page demonstrates using React with no build tooling.</p> |
This file contains hidden or 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
| package io.github.ncruces.utils; | |
| import android.graphics.Bitmap; | |
| import android.os.BadParcelableException; | |
| import android.os.Parcel; | |
| import android.os.Parcelable; | |
| public final class CachedParcelable<T extends Parcelable> implements AutoCloseable { | |
| private final Parcelable.Creator<T> creator; | |
| private Parcel cache; |
This file contains hidden or 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
| $userPath = $env:USERPROFILE | |
| $pathExclusions = New-Object System.Collections.ArrayList | |
| $processExclusions = New-Object System.Collections.ArrayList | |
| $pathExclusions.Add('C:\Windows\Microsoft.NET') > $null | |
| $pathExclusions.Add('C:\Windows\assembly') > $null | |
| $pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null | |
| $pathExclusions.Add('C:\ProgramData\Microsoft\VisualStudio\Packages') > $null | |
| $pathExclusions.Add('C:\Program Files (x86)\MSBuild') > $null | |
| $pathExclusions.Add('C:\Program Files (x86)\Microsoft Visual Studio 14.0') > $null |
This file contains hidden or 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
| sudo add-apt-repository ppa:ubuntu-lxc/lxd-stable | |
| sudo apt-get update | |
| sudo apt-get -y upgrade | |
| sudo apt-get install golang | |
| # Usually this is good to install golang, but alas the apt-get repo is usually out of sync with the latest. |
NewerOlder