| Empresa | Site para mandar currículo |
|---|---|
| Loggi | Vagas da Loggi |
| Moip Pagamentos | Vagas da Moip |
| Lambda3 | Vagas da Lambda |
| ReclameAqui | Vagas do ReclameAqui |
| Leroy Merlin | Vagas da Leroy |
| BIO Ritmo | Vagas na BIO Ritmo |
| ThoughtWorks | Vagas na TW |
| NuBank | Vagas na Nu |
Nós utilizamos o Conventional Commits para padronizar as mensagens de commit, esse documento descreve o funcionamento desse padrão.
No entanto, para facilitar a nossa vida nós também usamos o Commitizen. Essa ferramenta nos ajuda a seguir a padronização através de uma CLI para realizar commits que pode ser acessado através do comando:
npm run commit
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
| ✅ REALITY FILTER — CHATGPT | |
| • Never present generated, inferred, speculated, or deduced content as fact. | |
| • If you cannot verify something directly, say: | |
| - “I cannot verify this.” | |
| - “I do not have access to that information.” | |
| - “My knowledge base does not contain that.” | |
| • Label unverified content at the start of a sentence: | |
| - [Inference] [Speculation] [Unverified] | |
| • Ask for clarification if information is missing. Do not guess or fill gaps. |
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
| /*bitbucket.org dark css theme*/ | |
| body, aside { | |
| background: #222 !important; | |
| background-color: #222 !important; | |
| color: #bbb !important; | |
| } | |
| h1, h2, h3, h4, h5, span { | |
| background-color: transparent !important; | |
| color: #FFC963 !important; |
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 { | |
| # adjusted nginx.conf to make Laravel 8 apps with PHP 8.0 features runnable on Azure App Service | |
| # @see https://laravel.com/docs/8.x/deployment | |
| listen 8080; | |
| listen [::]:8080; | |
| root /home/site/wwwroot/public; | |
| index index.php; | |
| server_name example.com www.example.com; | |
| location / { |
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
| #!/usr/bin/env ruby | |
| require 'timeout' | |
| members = %w(Gatis Jānis Anna Ilze Ieva Kaspars Juris Klāvs Pēteris) | |
| takers = [] | |
| givers = [] | |
| exceptions = { 'Gatis' => 'Jānis'} | |
| begin | |
| Timeout::timeout(2) do |
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
| # Source: https://gist.github.com/d2f36b05bf959e5fc91497ea3f0dceb3 | |
| ########################################################## | |
| # Should We Replace Docker Desktop With Rancher Desktop? # | |
| # https://youtu.be/bYVfCp9dRTE # | |
| ########################################################## | |
| # Referenced videos: | |
| # - Free Docker Desktop Alternative For Mac And Windows: https://youtu.be/LGNEG-t96eE | |
| # - K3d - How to run Kubernetes cluster locally using Rancher k3s: https://youtu.be/mCesuGk-Fks |
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
| function getJSON(aUrl,sheetname) { | |
| //var sheetname = "test"; | |
| //var aUrl = "http://pipes.yahoo.com/pipes/pipe.run?_id=286bbb1d8d30f65b54173b3b752fa4d9&_render=json"; | |
| var response = UrlFetchApp.fetch(aUrl); // get feed | |
| var dataAll = JSON.parse(response.getContentText()); // | |
| var data = dataAll.value.items; | |
| for (i in data){ | |
| data[i].pubDate = new Date(data[i].pubDate); | |
| data[i].start = data[i].pubDate; | |
| } |
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 'package:fire_table_demo/home_page/landingpage.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:splash_screen_view/SplashScreenView.dart'; | |
| class SplashScreenDemo extends StatefulWidget { | |
| SplashScreenDemo({Key key}) : super(key: key); | |
| @override | |
| _SplashScreenDemoState createState() => _SplashScreenDemoState(); | |
| } |
NewerOlder