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
| 0 | |
| 00 | |
| 01 | |
| 02 | |
| 03 | |
| 1 | |
| 1.0 | |
| 10 | |
| 100 | |
| 1000 |
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 React, { Component } from 'react'; | |
| class EmbeddedGist extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.gist = props.gist; | |
| this.file = props.file; | |
| this.stylesheetAdded = false; | |
| this.state = { |
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 mailgrab as mgb # or from mailgrab import * | |
| # Validate the path to a file containing emails | |
| path = mgb.validate_path("file.txt") | |
| # Read file content | |
| with open(path, "r") as f: | |
| content = f.read() | |
| # Extract emails from content |
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
| ```python | |
| a = "Hello World!" | |
| print(a[::-1]) | |
| """ | |
| !dlroW olleH | |
| """ | |
| ``` |
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 great(name: str) -> str: | |
| return f"Hello {name}!" |