Category Archives: Technology and Society

Today’s FBI Friday-Before-Holiday-Weekend Email Drop

I am simply stunned at what came out of it, even the parts that weren’t redacted (one has to wonder how bad the redacted portions are). Here’s Ben Shapiro’s take:

Here’s the bottom line: this is obviously criminal activity. The FBI’s decision not to recommend indictment was a total fraud; they hid behind the fig leaf that she didn’t “intend” to break the law, which was not required by the law. Even so, there is no way in hell that any other human being would be treated with such deference regarding the question of intent. Either Hillary Clinton is either the most incompetent woman ever put in charge of a major governmental department, or she’s a criminal. There’s no in-between here. And we’ve been informed she’s the Most Competent Woman In Human History.

I wonder if we’ve finally reached a point at which even the MSM can no longer support this?

[Update a while later]

Comey was full of it when he said that she didn’t lie to the FBI. She’s been lying to everyone.

[Update later afternoon]

More from former intelligence analyst John Schindler: “Although the FBI’s press release is terse, the documents themselves indelibly portray the Democratic presidential nominee as dishonest, entitled, and thoroughly incompetent.”

But other than that, she’s great.

Python Problem

Anyone have any idea why the following script doesn’t work?

*************************************
#!/usr/bin/env python3

# import modules used here — sys is a very standard one
import sys
#import re

# Gather our code in a main() function
def main():
infile = open(‘File1’, ‘r’)
outfile = open(‘File2’, ‘w’)
for line in infile:
line.replace(“

“,”test”)
#print(“Found string”)
outfile.write(line)

# Standard boilerplate to call the main() function to begin
# the program.
if __name__ == ‘__main__’:
main()
*************************************

When I run it, it simply copies the old file to the new one, without doing the replacement. I know that it’s seeing the pattern, because if I run the replace function in an if statement, it says that it found it.