- Python 3
- Pip 3
$ brew install python3
#################### INPUT FILES ############# | |
Tk().withdraw() | |
files = tkFileDialog.askopenfilenames() | |
lst = list(files) | |
dataframe = pd.DataFrame() | |
for FileName in lst: | |
df = pd.read_excel(str(FileName)) | |
#add this to remove white spaces in the Vehicle columns |
<html lang="en" > | |
<style type="text/css"> | |
.progress { | |
width: 100%; | |
height: 20px; | |
} | |
.progress-wrap { | |
background: #00a651; | |
margin: 20px 0; | |
overflow: hidden; |
def optimal_markings(input_graph): | |
""" | |
The following function will return the most optimal marking for an input graph. | |
To do it, we will try all possibles markings, and check if they are valid markings by using the previous function. | |
Once all valid markings are found, | |
we need to sort them according to the number of the element it required to achieve a full marking. | |
The most optimal markings are the markings with the lowest number of players. | |
""" | |
results_counts = [] |
make sure that pip is installed : | |
to install pip globaly not in a virtual environment do this | |
**step 1: download pip** | |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
step 2 : install it with sudo : | |
**sudo python get-pip.py** |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
const canRate = done => { | |
request(app) | |
.post(`/api/v1/post/${post.id}/rating`) | |
.set('Authorization', `Bearer ${user.token}`) | |
.send({ userId: user.id, postId: post.id, rating: 4 }) | |
.end((err, res) => { | |
expect(res.status).toBe(201); | |
expect(res.body.rating).toBeDefined(); | |
ratingId = res.body.rating.id; | |
expect(res.body.message).toBe('Post rated successfully'); |
## Usefull configurations | |
export TERM="xterm-256color" # This sets up colors properly | |
# set shell | |
export SHELL=/usr/bin/zsh | |
# If you come from bash you might have to change your $PATH. | |
export NODE_PATH=$NODE_PATH:$HOME/.npm-global/lib/node_modules | |
export JAVA_HOME=/usr/java/latest |
1 | |
2 | |
3 | |
4 | |
5 | |
another_file.txt | |
3 | |
4 | |
5 | |
6 |