duplicates = multiple editions
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
| wget --continue --no-check-certificate -O jdk-8-linux-x64.tar.gz --header Cookie: oraclelicense=a http://download.oracle.com/otn-pub/java/jdk/8-b132/jdk-8-linux-x64.tar.gz |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE language> | |
| <language name="git_commit" version="1.24" kateversion="2.4" section="Other" extensions=".git/COMMIT_EDITMSG" mimetype="" > | |
| <highlighting> | |
| <!-- Listas de palabras (keywords) a resaltar --> | |
| <!-- <list name="somename"> | |
| <item>commit</item> | |
| <item>committed</item> | |
| </list>--> | |
| <!-- Contexto dice como formatear las palabas que esten dentro de un contexto --> |
| #!/usr/bin/env python | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| """ | |
| __version__ = "0.1" | |
| __all__ = ["SimpleHTTPRequestHandler"] |
| #!/bin/bash | |
| url="${1:?Usage: $0 url [recipient...]}" | |
| shift | |
| sha=$(curl -s $url | shasum); | |
| while [[ $sha = $(curl -s $url | shasum) ]]; do | |
| sleep 15; | |
| done | |
| sendmail=$(type -p sendmail || { [[ -x /usr/sbin/sendmail ]] && echo /usr/sbin/sendmail || { echo "Can’t find sendmail!"; exit 1; }; }); | |
| $sendmail -F 'Website Watcher Bot' -f "bot+watcher@$HOSTNAME" "${@:-mail@$HOSTNAME}" << EOF | |
| Subject: Website changed |
| { | |
| "metadata": { | |
| "name": "", | |
| "signature": "sha256:aecce6777cf7e23c92a9449e867643c7351a0a2980892e0ee5d59babd495b1be" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ |
| # -*- coding: utf-8 -*- | |
| """C magic. | |
| This is a very simple magic for compiling and importing C code with ctypes. | |
| This derives from biteymagic.py, by Bradley Froehle: | |
| https://gist.github.com/bfroehle/3458310 | |
| You must provide the function names you would like exported. |
| """ | |
| Module for IPython to display code with TeX representation. | |
| This makes for example the following workflow possible: | |
| .. sourcecode:: ipython | |
| In [1]: %load_ext py2tex | |
| In [2]: from math import * |
| from scipy import stats | |
| import numpy as np | |
| import pylab | |
| # Fit the model | |
| x = np.array([1, 2, 5, 7, 10, 15]) | |
| y = np.array([2, 6, 7, 9, 14, 19]) | |
| slope, intercept, r_value, p_value, slope_std_error = stats.linregress(x, y) | |
| # Calculate some additional outputs |