Query 13.11.19 - 86 Results
inurl:/elfinder/elfinder.html+intitle:"elFinder 2.0"
Query 13.11.19 - 86 Results
inurl:/elfinder/elfinder.html+intitle:"elFinder 2.0"
import os
from datetime import datetime
import pandas as pd
from xlsxwriter.workbook import Workbook
import csv
#!/bin/bash | |
echo "Start Installation" | |
sudo true | |
sudo apt update | |
if [ $? -eq 0 ]; then | |
echo "Updated sucessfully" | |
else | |
echo "Failed" | |
exit 1 |
1.1 Explore Visible Content
Weeks of programming can save you hours of planning.
Indeed, the ratio of time spent reading versus writing is well over 10 to 1. We are constantly reading old code as part of the effort to write new code. ...[Therefore,] making it easy to read makes it easier to write.
Clean code is not written by following a set of rules. You don’t become a software craftsman by learning a list of heuristics. Professionalism and craftsmanship come from values that drive disciplines.
And last but not least sometimes i am reading my old code and get the feeling my past-self hates my future-self.
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied!" | |
echo "Usage:" | |
echo "./nmap_to_html <IP Range>" | |
exit 1 | |
fi |