This file contains 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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i5-4670K CPU @ 3.40GHz | |
CPU Family: 0x6 |
This file contains 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
$ ./steam.sh | |
rm: cannot remove '/home/alex/.steam/steam': Is a directory | |
rm: cannot remove '/home/alex/.steam/bin': Is a directory | |
Running Steam on ubuntu 16.04 64-bit | |
STEAM_RUNTIME is enabled automatically | |
[2017-07-08 10:32:59] Startup - updater built Jun 8 2017 04:33:02 | |
Installing breakpad exception handler for appid(steam)/version(1496897923) | |
Looks like steam didn't shutdown cleanly, scheduling immediate update check | |
Installing breakpad exception handler for appid(steam)/version(1496897923) | |
[2017-07-08 10:32:59] Checking for update on startup |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" type="text/css" href="/css/style.css" /> | |
<link rel="shortcut icon" type="image/ico" href="/imgs/favicon.ico" /> | |
<link rel="apple-touch-icon" href="/imgs/apple-touch-icon.png" /> | |
<title>Relativistic Baseball</title> | |
<script type="text/x-mathjax-config"> | |
MathJax.Hub.Config({ |
This file contains 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
textout = "" | |
finalout = "" | |
lettercount = 1 | |
count = 1 | |
alphabet = "#abcdefghijklmopqrstuvwxyz" # blank first character, cause python starts at 0 | |
shift = int(raw_input()) # get the shift | |
text = "#"+raw_input() # get the text to encrypt, once again, blank first character cause python | |
textout = "" # where we are going to put the result | |
for i in range(1, len(text)): # repeat length of text |