Here is a direct link. [direct link](http://google.com)
Here is an indirect link. [indirect link][link id]
Notice how one can use different text but the same id to refer to the same link. [refer to the same link][link id]
| import sys | |
| from pathlib import Path | |
| # Get the path to the Scripts directory | |
| scripts_path = Path(sys.base_prefix) / "Tools" / "Scripts" | |
| # Append it to python's import path so we can grab it | |
| sys.path.append(str(scripts_path)) | |
| # Import the main function from the win_add2path script | |
| from win_add2path import main | |
| # run the main function to add python to out path |
| /** | |
| * $RCSfile$ | |
| * $Revision: 3657 $ | |
| * $Date: 2002-09-09 08:31:31 -0700 (Mon, 09 Sep 2002) $ | |
| * | |
| * Adapted from Markus Hahn's Blowfish package so that all functionality is | |
| * in a single source file. Please visit the following URL for his excellent | |
| * package: http://www.hotpixel.net/software.html | |
| * | |
| * Copyright (c) 1997-2002 Markus Hahn <markus_hahn@gmx.net> |
| #!/bin/bash | |
| # Color shortcuts | |
| co_black='\[\e[30m\]' | |
| co_red='\[\e[31m\]' | |
| co_green='\[\e[32m\]' | |
| co_yellow='\[\e[33m\]' | |
| co_blue='\[\e[34m\]' | |
| co_purple='\[\e[35m\]' | |
| co_cyan='\[\e[36m\]' | |
| co_white='\[\e[37m\]' |
| import ctypes | |
| # Create a function prototype for a 3-arg function | |
| ternaryfunc = ctypes.CFUNCTYPE(ctypes.py_object, ctypes.py_object, | |
| ctypes.py_object, ctypes.c_void_p) | |
| # Define a new python type that's callable, via a ternaryfunc | |
| class PyTypeObject(ctypes.Structure): |
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| def find_discrete_log(h, g, p): | |
| H = {} | |
| print('Generating table...') | |
| for x1 in range(0, B): | |
| gx1inv = mod_mul_inv(pow(g, x1, p), p) | |
| H[(h * gx1inv) % p] = x1 |
| #!/usr/bin/env python3 | |
| ''' | |
| A "self-verifying" quine - `<quine> <source_file>` will only print itself | |
| if `<quine>` has the same output as `cat <source_file>` | |
| ''' | |
| source = r'''{foreword} | |
| import sys, subprocess | |
| if len(sys.argv) > 1: |
Here is a direct link. [direct link](http://google.com)
Here is an indirect link. [indirect link][link id]
Notice how one can use different text but the same id to refer to the same link. [refer to the same link][link id]
| from __future__ import absolute_import, division, print_function | |
| from cryptography.bindings import _default_api | |
| class BlockCipher(object): | |
| def __init__(self, cipher, mode, api=None): | |
| super(BlockCipher, self).__init__() | |
| if api is None: |
| _site/ | |
| bower_components/ | |
| .sass_cache/ | |
| .ruby-version |
| import os | |
| import sys | |
| from os.path import join | |
| from fabric.api import local | |
| BASE_DIR = os.path.realpath(os.path.dirname(__file__)) | |
| BUILD_DIR = join(BASE_DIR, '_build') | |
| SOURCE_DIR = join(BASE_DIR, 'source') | |
| LOCALE_DIR = join(SOURCE_DIR, 'locale', |