- História
- Evolução
- Semântica
- Acessibilidade
- API's
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
| https://stackoverflow.com/questions/8223811/a-top-like-utility-for-monitoring-cuda-activity-on-a-gpu | |
| pip install gpustat | |
| pip3 install --upgrade nvitop | |
| nvtop |
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
| <?php | |
| require 'graphql_query.php'; | |
| // Need auth token | |
| define('ENDPOINT', 'https://api.github.com/graphql'); | |
| $query = <<<GRAPHQL | |
| query consulta { | |
| user(login: "torvalds") { |
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
| Ferramentas GraphQL | |
| https://graphiql-online.com/ | |
| https://fakeql.com/placeholder | |
| GitHub GraphQL API | |
| https://docs.github.com/en/free-pro-team@latest/graphql | |
| APIs GraphQL | |
| https://github.com/APIs-guru/graphql-apis | |
| https://api.github.com/graphql |
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
| # edit /etc/mysql/my.cnf and change bind-address=0.0.0.0 | |
| sudo nano /etc/mysql/my.cnf | |
| # restart mysql service | |
| sudo service mysql restart | |
| # enable ufw | |
| sudo ufw enable | |
| # enable 3306 port in ufw |
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
| /** | |
| author: Alisson G. Chiquitto | |
| email: alisson.chiquitto@ifms.edu.br | |
| @TODO: Testar jornada de no máximo 6hrs | |
| @TODO: Testar descanso de pelo menos 1h por dia | |
| @version 2021031201 | |
| */ | |
| (function(input) { |
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
| // Instantiate the RequestQueue. | |
| RequestQueue queue = Volley.newRequestQueue(this); | |
| String url = "https://restcountries.eu/rest/v2/all"; | |
| progressBar.setVisibility(View.VISIBLE); | |
| JsonArrayRequest jsonObjectRequest = new JsonArrayRequest(Request.Method.GET, | |
| url, null, new Response.Listener<JSONArray>() { | |
| @Override | |
| public void onResponse(JSONArray response) { |
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
| # Instalar o Laravel via composer | |
| composer global require "laravel/installer" | |
| # Instalar o Laravel via Composer Create-Project | |
| composer create-project --prefer-dist laravel/laravel blog | |
| # Criar o projeto | |
| laravel new DIRETORIO | |
| # Servir a aplicação |
NewerOlder