Windows 10: Está a ficar sem espaço em disco?

Com o Windows 10 a Microsoft implementou um conjunto vasto de funcionalidades que visam simplificar cada vez mais a acção dos utilizadores.

No que diz respeito à gestão de espaço em disco, a Microsoft também inovou e com o novo Windows 10 disponibiliza agora uma interface totalmente renovada e até bastante parecida com a que é disponibilizada no iOS. Se está a ficar sem espaço em disco, saiba o que apagar.

O Windows 10 oferece agora uma interface totalmente renovada no que diz respeito à informação sobre a gestão de espaço em disco.

O utilizador continua a poder fazer a gestão via Explorer/Meu computador, existe agora também uma funcionalidade dentro das definições de sistema.

w10_001

Depois basta escolher no menu lateral esquerdo a opção Armazenamento.

w10_002

Carregando na drive, o utilizador passa a ter uma noção de espaço ocupado por tipo de conteúdo (músicas, fotografias, documentos, apps, jogos, etc).

w10_003

Carregando, por exemplo, em Sistema e Reservado conseguimos ainda saber quando ocupa o sistema, qual o espaço usado para memória virtual, etc.

w10_004

Em termos de Aplicações e Jogos, o sistema consegue listar tudo o que está instalado e facilmente podemos desinstalar o que quisermos.

w10_005

Como viram, com as novas funcionalidades disponibilizadas nesta nova versão do Windows o utilizar passa a ter uma percepção/visão do que tem instalado e o que ocupa mais espaço. Obviamente continuam a existir apps de terceiros para o efeito mas estas “novas ferramentas” desempenham bem o seu trabalho.

Fonte: Windows 10: Está a ficar sem espaço em disco? – Pplware

Unboxing: bq Aquaris A4.5, o Android One chegou a Portugal

A bq, a empresa espanhola que se dedica essencialmente à produção de smartphones de entrada de gama e gama média, juntou-se recentemente à Google para trazer para a Península Ibérica um dos interessantes projectos da Google, o Android One.

Além de outras características, este projecto visa oferecer aos utilizadores Android um smartphone a preço acessível com a garantia de que receberá atempadamente todas as actualizações ao sistema operativo. Assim, chegou recentemente ao mercado o bq Aquaris A4.5 e o Pplware já o está a testar!

Equipado com o Android 5.1.1 Lollipop, o BQ Aquaris A4.5 traz um ecrã IPS de 4,5″, de resolução 540×960 píxeis, um SoC MediaTek MT6735M com um CPU Quad-core Cortex-A53 a 1 GHz e GPU Mali T720-MP1. Tem 1 GB de memória RAM e 16 GB de armazenamento interno (10,5 GB disponíveis ao utilizador), com suporte para cartão microSD até 64GB. É totalmente compatível com as redes 4G LTE nacionais.

Quanto a câmaras, oferece uma câmara traseira de 8 MP com dual-flash LED e gravação de vídeo a 720p, e uma câmara frontal de 5 MP com flash LED, tudo alimentado por uma bateria Li-Po de 2470 mAh. As dimensões são 63,48 x 131,77 x 8,75 mm e pesa 115g.

Além da garantia de actualização para a nova versão do Android Marshmallow, o Aquaris A4.5 tem ainda 5 anos de garantia e 90 dias de música grátis e ilimitada através do Google Play Music.

Assista ao vídeo de unboxing que preparámos:

Especificações

  • Ecrã: 4,5″ IPS de resolução 540 x 960 px, 244ppp
  • Dimensões: 63,48 x 131,77 x 8,75 mm
  • Peso: 115 g
  • CPU: MediaTek MT6735M Quad Core Cortex A53 até 1 GHz
  • GPU: ARM Mali T720-MP1 até 450 MHz
  • Memória RAM: 1 GB
  • Memória interna: 16 GB, expansível através de cartão microSD
  • Conectividade: Wi-Fi 802.11 b/g/n, Bluetooth 4.0 LE
  • Câmaras:: traseira de 8 MP e frontal de 5 MP (com flash)
  • Sistema Operativo: Android 5.1.1 Lollipop, com actualizações garantidas durante 24 meses a partir do lançamento do produto.
  • Bateria: 2470 mAh removível
  • Preço: 179,90€

bq Aquaris A4.5

Fonte: Unboxing: bq Aquaris A4.5, o Android One chegou a Portugal

How to use Chrome DevTools like a Pro

As the name implies Chrome Developer Tools is a tool that allows web developers to interfere and manipulate applications via the browser. With this tool you can:

  • Manage interface problems
  • Debug Javascript Code with using breakpoints
  • Optimize your code

To open DevTools, you can right-click anywhere on the page and select inspect element or you can choose the “tools > developer tools” option from the top right menu.

The following examples are using the Canary version of Google Chrome.

1. Quick-edit a HTML Element

To try it:

  • Select the “Elements” panel.
  • Choose a DOM element within the Elements Panel editor.
  • Double click on the opening tag and edit it.

When you are finished, the closing tag is automatically updated.

2. Go to a Line Number

You can use this feature in the “:linenumber:columnnumber” format from the Sources panel.

To try it:

  • CMD + O

3. Expand All Child Nodes

To try it:

  • Select the “Elements” panel.
  • Choose a DOM element and Alt + Click the arrow within the Elements Panel editor to expand all child nodes.

4. Change DevTools Positions

To try it:

  • CMD + Shift + D

Dock options:

  • Undock DevTools
  • Dock to bottom
  • Dock to right

5. DOM Search by CSS Selectors

To try it:

  • CMD + F / CTRL + F and enter your class name or id name base search selector.

6. Material and Custom Color Palettes

You can click on the little switcher icon in front of hex code. you can choose from the following:

  1. Page Colors: This palette is auto generated from your web site (in your CSS).
  2. Material Design: This palette automatically generates primary colors from The Material Design palette.

7. Multiple Cursor

Move the cursor with the CMD + Click to add multiple cursors. You can alsoundo your last selection with CMD + U.

8. Copy Image as Data URI

To try it:

  • Select “Network” panel.
  • Choose your image within the Resources Panel
  • Right click and copy it as a Data URI (base 64 encoded)

9. Triggering of Pseudo Classes

To try it:

  • Right click in the left panel and select “Force Element State”.
  • Alternatively, the toggle element state icon can be clicked in the right panel.

10. Column Selection by Dragging

To try it:

  • Select “Sources” panel.
  • Choose your file within the Sources Panel editor.
  • Hold Alt and dragging the mouse.

11. Get the current element with “$0”

To try it:

  • Select “Elements” panel.
  • Choose a DOM element within the Elements Panel editor.
  • Click Console and write $0 to access it.

12. Reveal in Elements

To try it, if you choose an a DOM node:

  • Right click on it within the Console panel.
  • Select “Reveal in Elements Panel”.

13. View Event Listeners

To try it:

  • Select the “Elements” panel.
  • Navigate to the Event Listeners and choose an event.
  • You can also view source by right click and choose “Show Function Definition” in context menu.

14. Easing Previews

To try it:

  • Click the easing icon (purple icon) and see a preview.
  • You can view it via choose other previews or you can set new easing format.

15. Media Query

To try this:

  • In Device Mode, click the icon (‘bars’) in the upper left corner of the page.
  • Click the breakpoint (‘blue’, ‘green’, ‘orange’) bars and change.

If you right click on a bar, you can reveal its position within the source code.

16. Network Filmstrip

“Film Strip” shows page rendering screenshots and times from start to finish. You can click a screenshot and view in the timeline-style view.

To try this:

  • Select “Network” panel.
  • Click “Camera Icon”.
  • Reload page.

17. Copy Response

You can copy the response/request headers of a network resource.

To try it:

  • Select “Network” panel.
  • Choose your file within the Resources Panel.
  • Right click and click “Copy Response”.

18. Run Predefined Snippets

To try it:

  • In the left sidebar: Sources > Snippets
  • Right click > Select New
  • Enter a file name and write your snippets in the right panel
  • Right click on the snippet and select Run

19. Device Emulation Sensors

You can also simulate mobile devices sensors like:

  • Touch Screen
  • Geolocation Coordinates
  • Accelerometer

To try this:

  • Select “Elements” panel.
  • Click “Esc” and choose “Emulation > Sensors”

20. Workspaces

To try this:

  • Select “Sources” panel.
  • Right click within sources pane and choose “Add Folder to Workspace”
  • Choose your file and right click > Map to Network Resources
  • Change your file code and view it.

References:

Fonte: How to use Chrome DevTools like a Pro — JotForm — Form Builder — Medium

15 Free HTML CSS3 Social Media Buttons

Muito simples de integrar. Usei um destes para OpenCart.

Social Button Collection

Includes differnt shapes and sizes of attraive social media buttons in css which can be easily added to your existing website code.

Demo | Download

social buttons

Pure Social Buttons in css3

A rolling effect with horizontal display of modern social icons will blow your mind.

Demo | Download

rolling css social button

Fancy Buttons

Another visual treat to the website  visitors to share your content or bookmark the website on their timeline.

Demo | Download

style button

Hover Fancy

This time you will find a different hover style which ends with a text display.

Demo | Download

fancy css

Sexy Social Buttons

Color effect on hover will display the original color of the top social network websites.

Demo | Download

sexy social buttons

Social Buttons Slide

Four major social media networks which can be showed up in your blog with vertical slide animation. The snippet also shows the social counter stats of your page or shared link.

Demo | Download

social slide

Social Footer

Social Footer with long shadows which can be used on footer of the page.

Demo | Download

social media icon for footerSocial Section

A set of social icons with nice hover effect.

Demo | Download

social buttons

Social Share

A social sharing icon set with three popular networks Google, Facebook, Twitter.

Demo | Download

social share

Social Networks

A bar of fixed social networks.

Demo | Download

social networks

 Circular Social Icons

A three icons showcasing Google, Facebook, twitter in all its glory.

Source | Download

circular social icons

Share Buttons

A set of social media share buttons with a 3D effect that makes you want to click them!

Demo | Source

Share Buttons

Color Changing Social Bar

On hover on any of the social network icons the background portion will change color similar to the network.

Demo | Download

color social icons

Flat Social Buttons in CSS3

A long version of share buttons to match your website sidebar.

Source

flat long buttons

CSS Social Ribbons

Simple yet stylish CSS Social Ribbons.

Source

social ribbons

Social Navigation

A vertical style navigation.

Source

social navigation

Fonte: 15 Free HTML CSS3 Social Media Buttons