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
// https://www.rivescript.com/try | |
// creating a quick test chatbot for an upcoming interview | |
! version = 2.0 | |
! array device = laptop pc | |
+ (hello|hi|hey) [*] | |
- Welcome to tech support. Please let me know if you are using a Laptop or a PC? |
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
Desire takes your sorrow | |
Knock your sorrow down | |
Give back your sorrow | |
Love is forever | |
Let the night be 1 with Love | |
Put the night into your sorrow | |
Give back the night |
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
import sys | |
obj_name = sys.argv[2] | |
with open(sys.argv[1]) as f: | |
xml_string = f.read() | |
xml_string = xml_string.replace('change', obj_name) | |
with open('output-' + sys.argv[1], 'w') as f: | |
f.write(xml_string) |
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
find ~/ -type f -name "file_name" | |
find / -type d -name "folder_name" | |
sudo find / -type d -name "folder_name" | |
rm -r mydir | |
java -jar Minecraft.jar | |
gsettings set org.gnome.desktop.interface text-scaling-factor 1.2 |