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
| import boto3 | |
| from botocore.exceptions import ClientError | |
| # from boto3 import ValidationException | |
| import uuid | |
| clt = boto3.client("events") | |
| rule_name = f"cronValidationTestRule-{uuid.uuid1()}" |
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
| import gremlin_python | |
| from gremlin_python.rest import ApiException | |
| from pprint import pprint | |
| import ipdb | |
| import webbrowser | |
| from time import sleep | |
| from colors import * | |
| API_KEY = ("0beccc88169060e9dbbd17583e10492dcbb48898de73f1a924481a556ab54419",) | |
| WOW_DOT_GIF = "https://media1.tenor.com/images/c2a921072f98952c52042d6e28c72854/tenor.gif?itemid=9987719" |
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
| import gremlin_python | |
| from gremlin_python.rest import ApiException | |
| from pprint import pprint | |
| import ipdb | |
| import webbrowser | |
| from time import sleep | |
| from colors import * | |
| API_KEY = ("0beccc88169060e9dbbd17583e10492dcbb48898de73f1a924481a556ab54419",) | |
| WOW_DOT_GIF ='https://media1.tenor.com/images/c2a921072f98952c52042d6e28c72854/tenor.gif?itemid=9987719' |
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
| hi |
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/env ruby | |
| require 'json' | |
| require 'thread' | |
| def eep | |
| `mplayer #{ENV['HOME'] + '/.killsound'}` | |
| end | |
| def tabs |
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
| 184 meltheous | |
| 164 gpspake tbqh | |
| 110 syliddar | |
| 98 dpritchett is happy | |
| 54 vongrippen | |
| 46 bkmontgomery | |
| 40 sbramlett | |
| 36 dan9186 | |
| 32 my username can be as long as I damn well please GEORGE | |
| 32 B R Y C E |
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/env sh | |
| cd /Users/daniel/Projects/book/dpchat/Book | |
| ./rake clean screen &> log/build_log.txt | |
| if ! grep 'Build failed' log/build_log.txt; then | |
| # osascript is osx-only | |
| osascript -e 'display notification "✅ Success! ✅" with title "bookbuild"' | |
| echo BUILD SUCCEEDED |
- interpreter: A program that reads a plain text source code file and attempts to execute the contents
- shell: a program that enables users to interactively explore their local operating system: its files, its utilities, and its peripherals. Examples: Bash, Powershell
- string: a representation of plain text data
=> "hello".class => String - integer: a whole number
=> 100.class => Integer - function: a segment of code defined and named for reuse
def hi(name) puts "Hi, #{name}!" end
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
| # This file is used by Rack-based servers to start the application. | |
| require ::File.expand_path('../config/environment', __FILE__) | |
| run Rails.application |