See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/bash | |
| # junta todos os arquivos da extensao passada na pasta atual, | |
| # desde que usem os mesmos codecs | |
| # ./ffmpeg_join.sh flv saida.flv | |
| [ -e __list__.txt ] && rm __list__.txt | |
| for f in *."${1}" | |
| do | |
| echo "file $f" >> __list__.txt | |
| done |
| ''' | |
| MIT License | |
| Copyright (c) 2020 Ronald Seoh | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
| // Interval time to check if runtime is disconnected | |
| interval = 1000 * 60; | |
| // Busy/Reconnect button top-right | |
| reloadButton = document.querySelector('#connect > paper-button > span') | |
| setInterval(() => { | |
| if (reloadButton.innerText == 'Reconnect') { | |
| reloadButton.click(); | |
| console.log('Restarting'); |
| The MIT License (MIT) | |
| Copyright (c) Plotly, Inc | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| #!/usr/bin/env python3 | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| see: https://gist.github.com/UniIsland/3346170 | |
| """ | |
| <html> | |
| <head> | |
| <title>Google Maps Multiple Markers</title> | |
| <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="map" style="height: 400px; width: 500px;"> | |
| </div> | |
| <script type="text/javascript"> |
| #!/usr/bin/env python | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| """ |
| var instrutor = function(json, record) { | |
| var nome = ""; | |
| record.instrutores.forEach(function(inst){ nome += (inst.nome + ", ") }); | |
| return nome; | |
| } | |
| var CursoFactory = Ext.data.Record.create(["id", "nome", "descricao", | |
| {name:"instrutores", convert: instrutor}]); | |
| var store = new Ext.data.Store({ |