Links:
[1]: Buildbot: One, Two, Three, Four
[2]: Some important patches (Sympy) : One, Two, Three, Four
[3]: Sympy GSoc: Majority of code, Official link
[4]: Mercurial: One, Two, [Three](http://merc
# /// script | |
# dependencies = [ | |
# "pyperclip", | |
# ] | |
# /// | |
######## | |
# README | |
# OpenAI Deep Research is great. When you copy from the Chat into, say, a Google Doc, | |
# the citations are all messed up (either in place or no citations if you select + copy) |
// ==UserScript== | |
// @name Block Chatkit Ctrl + N, Restore Mac Behavior in Input | |
// @namespace http://tampermonkey.net/ | |
// @version 0.7 | |
// @description Block chatkit.app from hijacking Ctrl + N and move cursor down within the same input field (like macOS default) | |
// @author your_name | |
// @match https://chatkit.app/* | |
// @grant none | |
// ==/UserScript== |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Data Visualization Tool</title> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js"></script> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
margin: 20px; | |
} |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> | |
<head> | |
<!-- 2020-06-25 Thu 22:59 --> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Determinants measure how much a linear map expands/shrinks a unit of (signed) volume</title> | |
<meta name="generator" content="Org mode" /> |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
export TERM="xterm-256color" | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/prasoon.shukla/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, |
jupyterlab : docker run --rm -u root -p 8898:8888 -v $(pwd):/app prasoon2211/python_ds jupyter-lab --allow-root --no-browser --NotebookApp.token='' | |
jupyternbk : docker run --rm -u root -p 8898:8888 -v $(pwd):/app prasoon2211/python_ds jupyter-notebook --allow-root --no-browser --NotebookApp.token='' |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
Links:
[1]: Buildbot: One, Two, Three, Four
[2]: Some important patches (Sympy) : One, Two, Three, Four
[3]: Sympy GSoc: Majority of code, Official link
[4]: Mercurial: One, Two, [Three](http://merc
def z_arr(s): | |
"""An advanced computation of Z-values of a string.""" | |
# From https://ivanyu.me/blog/2013/10/15/z-algorithm/ | |
Z = [0] * len(s) | |
Z[0] = len(s) | |
rt = 0 | |
lt = 0 |