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.
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.
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 |
| kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod |
| FROM ubuntu:latest | |
| RUN apt-get -y update && apt-get -y upgrade | |
| RUN apt-get -y install openjdk-8-jdk wget | |
| RUN mkdir /usr/local/tomcat | |
| RUN wget http://www-us.apache.org/dist/tomcat/tomcat-8/v8.5.16/bin/apache-tomcat-8.5.16.tar.gz -O /tmp/tomcat.tar.gz | |
| RUN cd /tmp && tar xvfz tomcat.tar.gz | |
| RUN cp -Rv /tmp/apache-tomcat-8.5.16/* /usr/local/tomcat/ | |
| EXPOSE 8080 | |
| CMD /usr/local/tomcat/bin/catalina.sh run |
Apache Kafka is a highly-scalable publish-subscribe messaging system that can serve as the data backbone in distributed applications. With Kafka’s Producer-Consumer model it becomes easy to implement multiple data consumers that do live monitoring as well persistent data storage for later analysis. You can assume that RabbitMQ is similar to Kafka, You do get an option for message-sending or Broadcasting. The installation process for OSX is as below.
The best way to install the latest version of the Kafka server on OS X and to keep it up to date is via Homebrew.
brew search kafka
brew install kafka
The above commands will install a dependency called zookeeper which is required to run kafka. Start the zookeeper service.
zkserver start