반응형
반응형

[googlePhoto] A redesigned Google Photos, built for your life’s memories

 

https://www.blog.google/products/photos/redesigned-google-photos/

 

A redesigned Google Photos, built for your life’s memories

 

blog.google

A new, simplified experience

In the redesigned Google Photos, we’re giving your photos and videos more prominence and bringing search front-and-center with a new three-tab structure:

  • Photos: As always, the main tab contains all your photos and videos, but now you’ll see larger thumbnails, auto-playing videos, and less white space between photos. At the very top, you'll also notice a larger Memories carousel (more on that in a bit).
  • Search: As photo libraries have gotten bigger, search has become increasingly important. So we’re putting search front and center to give you quick access to the people, places, and things most important to you. You’ll also find a new interactive map view; more on that in a bit too.
  • Library: The library tab contains the most important destinations in your photo library, like Albums, Favorites, Trash, Archive and more. And if you’re in the U.S., EU or Canada, you’ll also see our Print Store, where you can purchase printed products featuring your own photos.

And you can always access your shared content by tapping on the “conversation” button in the upper left corner.

A map view (finally!) 

As part of the new search tab, you’ll see an interactive map view of your photos and videos, which has been one of our most-requested features since we launched Google Photos. You can pinch and zoom around the globe to explore photos of your travels, see where you’ve taken the most photos around your hometown, or find that one photo from somewhere on your road trip across the country. If you enable location from your device camera, Location History, or manually add locations, those photos have always been organized and searchable by place in Google Photos. Rolling out today, they'll also show up on the map view. If you want to make changes, you have the control to make edits or turn off Location History and camera location permission.

반응형

'프로그래밍' 카테고리의 다른 글

심층강화 학습을 위한 전제  (0) 2021.12.06
PaaS란? Platform as a Service  (0) 2021.11.30
[Chrome] 확장 프로그램WhatRuns  (0) 2021.11.26
개발 포지션  (0) 2021.11.24
What is WinMerge? Diff 툴  (0) 2021.11.24
반응형

[Chrome] 확장 프로그램WhatRuns

 

WhatRuns

반응형
반응형

[Chrome] 크롬확장프로그램, 폰트(Font) 확인 프로그램

 

http://www.chengyinliu.com/whatfont.html

 

WhatFont Tool - The easiest way to inspect fonts in webpages « Chengyin Liu

← Back to Chengyin's main page What is this for? What is the easiest way to find out the fonts used in a webpage? Firebug or Webkit Inspector? No, that's too complicated. It should be just a click away. Hence I wrote WhatFont, with which you can easily g

www.chengyinliu.com

 

 

 

반응형
반응형

Convert Datetime to Unix timestamp

 

Convert Datetime to Unix timestamp

In Microsoft SQL Server 2012 or above, is it possible to convert a datetime value to Unix time stamp in a single select statement? If so, how can it be done?

stackoverflow.com

In Microsoft SQL Server 2012 or above, is it possible to convert a datetime value to Unix time stamp in a single select statement? If so, how can it be done?

 
use db

CREATE FUNCTION UNIX_TIMESTAMP (
@ctimestamp datetime
)
RETURNS integer
AS
BEGIN
  /* Function body */
  declare @return integer
   
  SELECT @return = DATEDIFF(SECOND,{d '1970-01-01'}, @ctimestamp)
   
  return @return
END



SELECT dbo.UNIX_TIMESTAMP(GETDATE()) ;

 

https://stackoverflow.com/questions/34455408/convert-datetime-to-unix-timestamp

 

 

How can I convert UNIX timestamp (bigint) to DateTime in SQL Server?

Select dateadd(S, 1637852002, '1970-01-01')

 

.

반응형
반응형


개발 포지션

반응형
반응형

What is WinMerge?  Diff 툴

 

WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle.

 

Source Code - WinMerge

Source Code WinMerge is Open Source software under the GNU General Public License. This means everybody can download the source code and improve and modify it. The only thing we ask is that people submit their improvements and modifications back to us so t

winmerge.org

Features

WinMerge is highly useful for determining what has changed between project versions, and then merging changes between versions. WinMerge can be used as an external differencing/merging tool or as a standalone application.

In addition, WinMerge has many helpful supporting features that make comparing, synchronising, and merging as easy and useful as possible:

General

  • Supports Microsoft Windows XP SP3 or newer
  • Handles Windows, Unix and Mac text file formats
  • Unicode support
  • Tabbed interface

File Compare

  • 3-way File Comparison New!
  • Visual differencing and merging of text files
  • Flexible editor with syntax highlighting, line numbers and word-wrap
  • Highlights differences inside lines
  • Difference pane shows current difference in two vertical panes
  • Location pane shows map of files compared
  • Moved lines detection

Folder Compare

  • Regular Expression based file filters allow excluding and including items
  • Fast compare using file sizes and dates
  • Compares one folder or includes all subfolders
  • Can show folder compare results in a tree-style view
  • 3-way Folder Comparison

Image Compare New!

  • Support many types of images
  • Can highlight the differences with blocks
  • Overlaying of the pictures is possible

Table Compare New!

  • Shows CSV/TSV file contents in table format
  • Text can be wrapped for each column

Version Control

  • Creates patch files (Normal-, Context- and Unified formats)
  • Resolve conflict files

Other

  • Shell Integration (supports 64-bit Windows versions)
  • Archive file support using 7-Zip
  • Plugin support
  • Localizable interface
  • Online manual and installed HTML Help manual

WinMerge 2.16.16 - latest stable version

WinMerge 2.16.16 is the latest stable version, and is recommended for most users.

Project News 

Support

If you need support, look at our support page for more information how you can get it.

Developers

WinMerge is an open source project, which means that the program is maintained and developed by volunteers.

In addition, WinMerge is translated into a number of different languages. See our information on translating WinMerge into your own language.

반응형

+ Recent posts