Known Issues: On High Sierra there are problems related to the screen brightness and sleep issues.
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
def tagged_document(list_of_list_of_words): | |
for i, list_of_words in enumerate(list_of_list_of_words): | |
yield gensim.models.doc2vec.TaggedDocument(list_of_words, [i]) | |
training_data = list(tagged_document(data)) | |
model = gensim.models.doc2vec.Doc2Vec(vector_size=40, min_count=2, epochs=30) | |
model.build_vocab(training_data) | |
model.train(training_data, total_examples=model.corpus_count, epochs=model.epochs) |
This solution requires installing linux. If you don't want to install linux see this gist: https://gist.github.com/blackgate/17ac402e35d2f7e0f1c9708db3dc7a44
Disable SIP
If you can boot into recovery mode (Command + r), open the Terminal and enter:
csrutil disable
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
https://rfc3161.ai.moda | |
https://rfc3161.ai.moda/adobe | |
https://rfc3161.ai.moda/microsoft | |
https://rfc3161.ai.moda/apple | |
https://rfc3161.ai.moda/any | |
http://rfc3161.ai.moda | |
http://timestamp.digicert.com | |
http://timestamp.globalsign.com/tsa/r6advanced1 | |
http://rfc3161timestamp.globalsign.com/advanced | |
http://timestamp.sectigo.com |
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
#!/usr/bin/python | |
import sys | |
import hashlib | |
from OpenSSL.crypto import * | |
def main(): | |
if(len(sys.argv) != 4): | |
print sys.argv[0] + " /path/to/ssl.crt /path/to/ssl.key ProcessedMachineIdentifier" | |
sys.exit(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
Navigation Keys - These are used in command mode: | |
$ Move to end of line | |
^ Move to beginning of line | |
Save and Quit Commands - These are used in lastline mode: | |
:w Write buffer (Save changes and continue working in vi Editor) | |
:w new_filename Write buffer to new filename (continue working in vi) | |
:wq Write buffer (save changes) and quit vi | |
:q! Quit without saving changes | |
:wq! Write buffer (save changes) and quit vi | |
(The ! will override Read only permissions but only if you are the owner of the file.) |
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 | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |