Mensagens

App Greves - Postos de Combustível

Imagem
Actualizei a minha App de greves, adicionei uma lista da Rede de Emergência de PAC ‐ Postos de Abastecimento Combustíveis (REPA) - Veículos em Geral. Não tem mapa, apenas uma lista. https://play.google.com/store/apps/details?id=com.Coimbras.Greves http://www.ense-epe.pt/wp-content/uploads/2019/07/REPA-Geral-1.pdf

Código mínimo para HTML

Imagem
Eis um exemplo do código mínimo para um documento em HTML5 . Em cinza são comentários, e as cores correspondem aos blocos de código. (o ´ inicial não faz parte do código, é apenas para o blog não formatar o código automaticamente) This is an example of minimum HTML5 code. In grey are some comments, and the colors match to code blocks. (the initial ´ does not belong to the code itself, is just to prevent auto formatting by the blog) Código em HTML Num editor apropriado o código fica formatado, e mais fácil de ler. In an appropriate code editor, the code is formatted, and easier to read. Vista no Brackets

O que é o Git e GitHub?

Imagem
Encontrei este vídeo que explica o que é o Git e GitHub e para que serve, e uma introdução onde se explicam alguns primeiros conceitos. I found this video that explains what Git and GitHub is and what it's for, and an introduction where some early concepts are explained. 1.1: Introduction - Git and GitHub for Poets Git and GitHub

EPSG Dataset - Sistemas de Coordenadas

Text from the webpage: About the EPSG Dataset The IOGP’s EPSG Geodetic Parameter Dataset is a collection of definitions of coordinate reference systems and coordinate transformations which may be global, regional, national or local in application. New to version 9.7, 2019-07-17 (Registry including SQL scripts, and Access) Changes as documented in Change Records through 2019.053, but with actions still remaining on some change requests. New data for Australia (ACT), Guadaloupe, Israel, Kosovo, Martinique, New Zealand, St Pierre et Miquelon, Europe (EU LAEA and LCC usage extended to Iceland, Portugal (Azores and Madeira), Spain (Canaries) and Turkey), South and Central America (SIRGAS-CON). Minor revision (additional aliases) to data for Japan, New Zealand, WGS 84 G realizations, Europe ETRF realizations. No link abaixo pode fazer o download dos sistemas de coordenadas: In the above link you can download the coordinate systems: http://www.epsg.org/

Nova aplicação - Programação em JavaScript

Imagem
Deixo aqui o texto da aplicação para iniciação à linguagem de programação JavaScript. Programming in JavaScript Part One ------------------------------------------------------------------------- Programming in JS – Part One Introduction What is JavaScript? JS or JavaScript is described as the programming language for the web. It generally runs on a web browser (like Chrome, Mozilla; etc). It is a scripting language build to implement things in web pages. Therefore, it does not “make” an executable file. It runs a program or some instructions by an interpreter by a built-in interpreter (in the web browser) it is not compiled. It´s not similar to Java! Simplifying – Is a programming language that runs over a web browser. It allows to make changes and operations on a web page, but also make calculations, etc. And nowadays you can make a Mobile or Desktop App. First, take notice of some conventions used in this course: File names - index.html Text to type - ...

Nova aplicação Geometry Calculator

Imagem
Está na loja já há alguns dias a aplicação de cálculo geométrico. Calculadora de Geometria calcula ou resolve alguns problemas de geometria plana. Para a escola e Engenharia. É uma aplicação com uma interface simples. Por agora calcula: - Distância entre dois pontos, por coordenadas. - Centro de um círculo, por coordenadas de 3 pontos. - Intersecção entre duas rectas. Serão adicionadas mais funcionalidades em breve. Is in the store already a few days ago the application of geometric calculation. Geometry Calculator, calculates some problems of plane geometry. For school or Engineering. Is a simple app, with a simple interface. It now calculates: - Distance between two points by coordinates (distance DeltaX DeltaY Angle). - Center of a Circle by coordinates of three points. - Interseccion between two lines. Will be added soon more calculations. https://play.google.com/store/apps/details?id=com.Coimbras.GeometryCalculator

Apagar todos os comentários no Excel

Como apagar os comentários de uma folha ou livro Excel? Um é fácil, mas todos? É necessário ter conhecimentos de VBA. How to delete Excel comments, from a whorksheet or workbook? One is easy, but all? It´s necessary know VBA. VBA: Delete comments from a worksheet. Sub Remove_All_Comments_From_Worksheet()   Cells.ClearComments End Sub VBA: Delete all comments from the whole workbook Sub DeleteAllComments()   For Each xWs In Application.ActiveWorkbook.Sheets     For Each xComment In xWs.Comments         xComment.Delete     Next   Next End Sub https://www.extendoffice.com/documents/excel/1744-excel-remove-all-comments.html