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
skill | latest_version | official_source | repository_source | additional_source | |
---|---|---|---|---|---|
Python | 3.13 | https://docs.python.org/3.13/ | https://github.com/python/cpython/tags | ||
JavaScript | ES2024 | https://developer.mozilla.org/en-US/docs/Web/JavaScript/ | https://github.com/tc39/ecma262/releases | ||
Node.js | 22 LTS | https://nodejs.org/docs/latest-v22.x/api/ | https://github.com/nodejs/node/releases | ||
React | 19 | https://react.dev/versions#react-19 | https://github.com/facebook/react/releases | ||
Vue.js | 3 | https://vuejs.org/ | https://github.com/vuejs/core/releases | ||
Angular | 19 | https://v19.angular.dev/ | https://github.com/angular/angular/releases | ||
Django | 5.1 | https://docs.djangoproject.com/en/5.1/ | https://github.com/django/django/tags | ||
Flask | 3.1 | https://flask.palletsprojects.com/en/stable/changes/ | https://github.com/pallets/flask/releases | ||
Java | 21 LTS | https://docs.oracle.com/en/java/javase/21 | https://openjdk.org/projects/jdk/21/ | https://www.oracle.com/java/technologies/java-se-support-roadmap.html |
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
# Recebe a entrada do usuário e armazena na variável "entrada" | |
entrada = input() | |
# Função responsável por receber um recurso de texto e retornar sua respectiva descrição. | |
def identificar_recurso_texto(recurso): | |
if recurso == "Geração de conteúdo": | |
return "Desenvolver conteúdo com base em instruções ou diretrizes" | |
elif recurso == "Redação e revisão": | |
return "Auxiliar na criação de textos e revisão de materiais escritos" |
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
graph RL; | |
subgraph "Infrastructure"; | |
Web(Web & Devices) <--> Con | |
UI("User Interface (UI)") <--> Pre | |
DB(Databases & External Integrations) <--> Gat | |
subgraph "Adapters"; | |
Con(Controllers) <--> UC | |
Pre(Presenters) <--> UC | |
Gat(Gateways) -..-> |implements| IGat |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
server.port=8080 | |
# https://www.baeldung.com/spring-boot-h2-database#database-configuration | |
spring.datasource.url=jdbc:h2:mem:dio-game-awards | |
spring.datasource.driverClassName=org.h2.Driver | |
spring.datasource.username=sa | |
spring.datasource.password=password | |
# https://www.baeldung.com/spring-boot-h2-database#h2-console | |
spring.h2.console.enabled=true |
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
<resources xmlns:tools="http://schemas.android.com/tools"> | |
<!-- Base application theme. --> | |
<!-- https://m3.material.io/libraries/mdc-android/getting-started --> | |
<style name="Theme.Banklineandroid" parent="Theme.Material3.Light"> | |
<!-- https://m3.material.io/libraries/mdc-android/color-theming --> | |
<item name="colorPrimary">@color/primary_600</item> | |
<item name="colorPrimaryContainer">@color/primary_100</item> | |
<item name="colorOnPrimaryContainer">@color/primary_900</item> | |
<item name="colorPrimaryInverse">@color/primary_200</item> | |
</style> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:fitsSystemWindows="true" | |
tools:context=".DetailActivity"> | |
<!-- Adding an image to the prominent top app bar: |
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
import java.util.concurrent.Callable; | |
import java.util.concurrent.Future; | |
import java.util.concurrent.ScheduledThreadPoolExecutor; | |
import java.util.concurrent.TimeUnit; | |
/** | |
* Retriable Task, manual solution. | |
* | |
* @see <a href="https://stackoverflow.com/a/2759040/3072570">ExecutorService that interrupts tasks after a timeout</a> | |
* @see <a href="https://stackoverflow.com/a/4738630/3072570">Retry Task Framework</a> |
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
public class AuthActivity extends BaseActivity implements AuthContract.View { | |
@BindView(R.id.ivGitHubStatus) ImageView mImgStatusImage; | |
@BindView(R.id.tvGitHubStatus) TextView mLblStatusText; | |
@BindView(R.id.tilUsername) TextInputLayout mWrapperTxtUsername; | |
@BindView(R.id.tilPassword) TextInputLayout mWrapperTxtPassword; | |
@BindView(R.id.btOAuth) Button mBtnOAuth; | |
@Inject @Named("secret") SharedPreferences mSharedPrefs; | |
@Inject AppHelper mAppHelper; //TODO Dagger! |
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
import java.util.Arrays; | |
import java.util.List; | |
import rx.Observable; | |
import rx.Observer; | |
/** | |
* Created by falvojr on 1/11/17. | |
* | |
* @see <a href="https://github.com/ReactiveX/RxJava/wiki//Alphabetical-List-of-Observable-Operators"> |
NewerOlder