Make sure everything is up to date.
2. Install Xcode and its "Command Line Tools"
- Go to App Store and install Xcode.
- Open and accept the terms
package wb.java17; | |
import java.math.BigInteger; | |
import java.util.Map; | |
import java.util.concurrent.ConcurrentHashMap; | |
public class StaticsInLocalClassesExample { | |
public static void main(String[] args) { | |
System.out.println(factorial(120)); |
Make sure everything is up to date.
-> # uprecords -m 70 | |
# Uptime | System Boot up | |
----------------------------+--------------------------------------------------- | |
1 281 days, 23:42:20 | Linux 4.15.13-x86_64-lin Wed May 23 12:05:31 2018 | |
2 148 days, 08:00:51 | Linux 4.9.15-x86_64-lino Mon May 8 13:01:42 2017 | |
3 130 days, 16:01:33 | Linux 4.0.4-x86_64-linod Fri Jun 12 08:07:45 2015 | |
4 112 days, 14:34:59 | Linux 3.9.3-x86_64-linod Mon Aug 26 21:10:47 2013 | |
5 111 days, 04:15:00 | Linux 4.5.0-x86_64-linod Fri Apr 1 16:45:23 2016 | |
6 110 days, 09:30:53 | Linux 4.14.12-x86_64-lin Wed Jan 17 01:14:29 2018 | |
7 107 days, 21:50:52 | Linux 4.8.3-x86_64-linod Sat Nov 5 12:19:15 2016 |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x ./kubectl && sudo mv ./kubectl /usr/local/bin/kubectl | |
curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.30.0/minikube-linux-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bin/ && rm minikube | |
echo "Ahora ya puedes ejecutar:" | |
echo "minikube start --vm-driver none" |
En Gus estamos buscando Ingeniero de Software para la Ciudad de México, que tengan sólidos conocimientos de desarrollo de APIs REST y que tambien le guste escribir código para navegadores.
Estamos interesados en una persona que tenga experiencia en proyectos medianos-grandes o que desee afrontar el reto.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |