Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
In your command-line run the following commands:
brew doctor
brew update
docker rm -f $(docker ps -qa) | |
docker rmi -f $(docker images -q) | |
docker volume rm $(docker volume ls -q) | |
for mount in $(mount | grep tmpfs | grep '/var/lib/kubelet' | awk '{ print $3 }') /var/lib/kubelet /var/lib/rancher; do umount $mount; done | |
rm -rf /etc/ceph \ | |
/etc/cni \ | |
/etc/kubernetes \ |
Github
Personal Website
[email protected]
+2348139433515
import React, { Component } from 'react'; | |
import axios from 'axios'; | |
import Table from './components/tables'; | |
import AddForm from './components/addForm'; | |
import EditForm from './components/editForm'; | |
import './App.css'; | |
class App extends Component { | |
constructor(props){ | |
super(props); |