Assumptions: You are running Neo4J Community Edition 3.2.1 or greater on a Linux VM on Azure You have a wildcard SSL cert purchased from Azure and stored in an Azure keyvault You can run Powershell ISE on a Windows machine Software Requirements: Windows OS, (10, in my case) with the following software installed on it: more
-
How to put an Azure App Service Certficate on an Azure VM running Neo4J
-
How to type accents é, è, ñ, ü, ê and other special characters on your Mac keyboard
Problem: You’re on an English keyboard on a Mac, and you need to type letters with accents, like é, è, ñ, ü, ê or other special characters, like ç, å, æ, or œ. Solution: Hold down the vowel key for a little bit longer than usual, and a hint with accented versions of your vowel more
-
aboutmydevice.com : a new site that helps explore a mobile browser’s Javascript properties
Here’s the latest website I’m releasing onto the world: aboutmydevice.com. I wrote it so that I could explore what Javascript properties, objects, and values exist on the browsers of various mobile devices. I walk into a store, go to a phone, load up aboutmydevice.com, and see what kind of properties this browser has. It’s been more
-
macbook pro turns on but screen stays black — my solution
The Apple Macbook Pro would turn on, but the screen would not. The screen would stay black. I could tell the computer was on because when I hit the “caps lock” key, the green light on the key would turn on and off. I fixed this the following way (this is basically resetting the Power more
-
UNIX/AWK Tricks: How to copy a long list of files into a directory
Make your list of files, with complete paths, call it “imgList.txt”. Put every file on a new line. Write a small awk script with the following 1 line: { printf(“cp %s images/\n”, $0);} Save the script as “copyList.awk” Do the following command: awk -f copyList.awk imgList.txt | sh Brief explanation of the awk script: %s more