ls /usr/bin/python*
sudo apt-get remove python3.5
sudo apt-get remove --auto-remove python3.5
sudo apt-get purge python3.5
https://github.com/run-llama/sec-insights/issues/9 | |
https://www.secinsights.ai/conversation/fa6614b9-ccac-4b01-a94b-779a404e6141 |
Sure, here's the questionnaire in English: | |
Do you encounter situations in your daily work that require handling a large amount of data? | |
a. Yes, I frequently deal with large volumes of data. | |
b. Sometimes, I handle some data. | |
c. Rarely, I am not heavily involved in data processing. | |
d. No, I don't work with data. | |
How familiar are you with AI (Artificial Intelligence) and data science? | |
a. Completely unfamiliar, I would like to start from the basics. |
install GNU screen: apt-get update apt-get upgrade apt-get install screen
type "screen". this will open up a new screen - kind of similar in look & feel to what "clear" would result in.
run the process (e.g.: ./init-dev.sh to fire up a ChicagoBoss erlang server)
type: Ctrl + A, and then Ctrl + D. This will detach your screen session but leave your processes running!
gcloud config set project mysql-remote-access-267116
gcloud compute instances create my-client --zone us-central1-f --image-project ubuntu-os-cloud --image-family ubuntu-1804-lts --scopes https://www.googleapis.com/auth/cloud-platform
gcloud compute instances create my-server --zone us-central1-f --image-project ubuntu-os-cloud --image-family ubuntu-1804-lts --scopes https://www.googleapis.com/auth/cloud-platform
//CareerCup 1.2 Reverse a string by StringBuilder. | |
class StringReverse { | |
public static void main(String args[]) { | |
System.out.println("before: " + args[0]); | |
String s = new StringBuilder(args[0]).reverse().toString(); | |
System.out.println("after: " + s); | |
} | |
} |
//test if a string is consist of a sequence of all unique characters | |
public class UniqueChar { | |
public static boolean isUnique(String x) { | |
if (x.length() > 256) | |
return false; | |
boolean[] b = new boolean[256]; | |
for(int i=0; i<x.length(); i++) { |