This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| == Visual Studio .NET 2003 (DO NOT COPY THIS LINE) == | |
| Microsoft Visual Studio Solution File, Format Version 8.00 | |
| # Visual Studio .NET 2003 | |
| VisualStudioVersion = 7.1 | |
| == Visual Studio 2005 (DO NOT COPY THIS LINE) == | |
| Microsoft Visual Studio Solution File, Format Version 9.00 | |
| # Visual Studio 2005 | |
| VisualStudioVersion = 8.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| UBUNTU_RELEASE=bionic | |
| sudo apt-get remove docker docker-engine docker.io containerd runc | |
| sudo apt-get update | |
| sudo apt-get install -qqy \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python -c 'import random; result = "".join([random.choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)]); print(result)' | |
| #python -c 'import random; print "".join([random.choice("abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)") for i in range(50)])' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| increment = 0.002 | |
| decimal_places = -3 | |
| def round_to_nearest_multiple(value, increment, decimal_places): | |
| rounded_value = round(x*increment, decimal_places)/increment | |
| return rounded_value | |
| v = 45.901 | |
| m = 0.002 | |
| d = -3 |
NewerOlder