I would like to see all resources in a namespace.
Doing kubectl get all will, despite of the name, not list things like services and ingresses.
kubectl get all
A Powershell implementation of rcorre's answer would look like
kubectl api-resources --verbs=list --namespaced -o name | ` %{ kubectl get $_ --show-kind --ignore-not-found -l = -n }