Skip to main content

Posts

A Love for Sourcetree on Linux

There has been a long-standing hope that Atlassian Sourcetree will one day make it to the Linux platform.  The company has flatly refused to create a version for Linux , but that doesn't mean the interest isn't there. A search for the term "sourcetree" in the Atlassian Community renders a results set with an entry titled " SourceTree for Linux ."  Its view count is higher than any other entry in the results listing at more than a quarter of a million views.  That's more than any other entry, and it isn't even close. The listing https://community.atlassian.com/t5/forums/searchpage/tab/message?q=sourcetree Similarly, the Sourcetree Community products page ranks the same entry at the top of that listing with the next most popular entry, " How to update HTTP(S) credentials in sourcetree ," at well under 200,000 views. The listing https://community.atlassian.com/t5/Sourcetree/ct-p/sourcetree Of course, one can't blame the co...

Cloudflare is taking on privacy through DNS

This past April 1st, Cloudflare rolled out a new DNS service that touts both speed and improved privacy. The reasoning for a new DNS service is that the company is on a march to ever improve the Internet by means of security, privacy, and speed. DNS is commonly described as the phone book for the Internet.  It allows users to reach websites by way of a human-readable name that is translated to the series of numbers that the underlying network protocol uses.  In the way that Cool Dude's telephone number might be 123-456-7890, the web address for "cooldude.com" might translate to 123.123.321.321. By default, ISPs expect routers and other devices to be configured to use their DNS service, but there's no technical reason that any DNS server can't be used.  Both Google and OpenDNS offer alternative services as well. Some folks are reporting various issues in the comments of the announcement, but Cloudflare seems to have been expecting some of this for thin...

Vue.js devtools are now available in Firefox

For the Vue.js developers out there that also still dig using Firefox , you may be pleasantly surprised to learn that Vue.js devtools is now available for Firefox as well as Chrome . The tools extension has only been available for Chrome and the comments on the page for the Firefox add-on indicate that it's been available for a while now.  Each browser is indicating being updated as of January 15th, and they share the same version number (4.0.1). The assumption here is that they are indeed the same toolbox, and the availability of these tools for Firefox users is, no doubt, made possible by Mozilla's move to using its WebExtensions API as its means of extending the browser by third parties.

Apple Contacts on iOS defaults to Hangouts

If a person in the Contacts application on iOS cannot be found in one of Apple 's services, the application will try to use Google Hangouts if the person has a Gmail address.  This can be seen in the Call and Video buttons under the contact's name. Version 16.0.0 of the application saw the ability to use the system's phone application to send and receive calls.  This integration is most certainly the source for this ability. This contact only has a phone number and it's not associated with any Apple services.  But it's known to Hangouts, so the video call button is labeled "Hangouts."

Single finger zoom in Google Maps

Using Google Maps , a double-tap and hold on the screen allows zooming with a single finger by dragging it across the screen. That's tap once, then again quickly, but continue to touch the screen on the second tap.  Without picking up the finger, drag it across the screen. This was encountered by mistake on an iOS device running iOS 10.2.1 and Google Maps 4.28.91.  It may work on Android devices as well, and with older versions of Maps. Also, it's noted that this feature is probably detailed all over the Web.  But here it is again.

PHP built-in webserver and IPv6 addresses

Though it's difficult to confirm around the Web, it appears as though the IP address scheme the built-in PHP server uses depends on the host name that's provided.  If a fully-qualified domain name (FQDN) is used, such as server.domain.tld, then the built-in server will be listening for IPv6 based requests.  If the server is started with an IPv4 address identified as the host, then it will naturally listen for IPv4 based requests. The closest to anything official around the Web was a comment in the PHP docs that only seeded this conclusion, at best.  But here it is in any case. Built-in web server http://php.net/manual/en/features.commandline.webserver.php#120449 Ultimately, the following answer from Stack Overflow held the "universal" solution.  Thank you dew010. Running PHP 5.4 built-in web server outside localhost http://stackoverflow.com/a/8377378/2487485 Start your development server like: php -S 0.0.0.0:8989

Apache and backslashes in comments

Apache httpd seems to have an issue that flusters the configuration file parser when a series of backslashes are present in a comment. The following snippet is taken from a vhosts configuration file.  Notice the 5 backslashes at the end of the first line.  # ///// Be sure to manage the corresponding [wrap]         directory block in                  [wrap]         httpd-directories.conf \\\\\ <VirtualHost *:80>     ServerAdmin webmaster@domain.tld     ServerName server.domain.tld     DocumentRoot "/path/to/server.domain.tld"     ErrorLog "/path/to/server.domain.tld-error.log"     CustomLog "/path/to/server.domain.tld-access.log" common </VirtualHost> With these backslashes present, an attempt to start the server wil...