In Vivaldi, go to the Chrome Web Store.
Select and install an extension just like you would in Chrome.
In Vivaldi, go to vivaldi://extensions.
| import Foundation | |
| import SystemConfiguration.CaptiveNetwork | |
| func getWiFiSsid() -> String? { | |
| var ssid: String? | |
| if let interfaces = CNCopySupportedInterfaces() as NSArray? { | |
| for interface in interfaces { | |
| if let interfaceInfo = CNCopyCurrentNetworkInfo(interface as! CFString) as NSDictionary? { | |
| ssid = interfaceInfo[kCNNetworkInfoKeySSID as String] as? String | |
| break |
In Vivaldi, go to the Chrome Web Store.
Select and install an extension just like you would in Chrome.
In Vivaldi, go to vivaldi://extensions.
Download ZLIB for Windows from Sourceforge and install it on your Windows machine. Works with x86/x64
Currently, the ZLIB installer from Sourceforge (above) installs in C:/Program Files (x86)/GnuWin32.
The standard names for indexes in PostgreSQL are:
{tablename}_{columnname(s)}_{suffix}
where the suffix is one of the following:
pkeyfor a Primary Key constraint;keyfor a Unique constraint;exclfor an Exclusion constraint;idxfor any other kind of index;
| 1. Open Terminal | |
| 2. cd to your Xcode project | |
| 3. Execute the following when inside your target project: | |
| find . -name "*.swift" -print0 | xargs -0 wc -l |
How to install Ubuntu 14.04.1 LTS 64-bit on a MacBook Pro Retina 15" Mid 2014 (11,3)
/home/username..bashrc file in same directory by adding alias composer='/usr/local/php56/bin/php-cli ~/composer.phar' line. Update php56 part to current relevant version, if necessary.source ~/.bashrc to reload config.composer command!| # Assuming an Ubuntu Docker image | |
| $ docker run -it <image> /bin/bash |