Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* | |
| * I add this to html files generated with pandoc. | |
| */ | |
| html { | |
| font-size: 100%; | |
| overflow-y: scroll; | |
| -webkit-text-size-adjust: 100%; | |
| -ms-text-size-adjust: 100%; | |
| } |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| File: stratified.py | |
| Author: SpaceLis | |
| Email: Wen.Li@tudelft.nl | |
| Github: http://github.com/spacelis | |
| Description: | |
| Sampling in a stratified way. That is sampling from each subpopulation to | |
| make the sample set more representative than simple random sampling. For |
In python, you have floats and decimals that can be rounded. If you care about the accuracy of rounding, use decimal type. If you use floats, you will have issues with accuracy.
All the examples use demical types, except for the original value, which is automatically casted as a float.
To set the context of what we are working with, let's start with an original value.
| 1. go to https://sslvpn.demo.sonicwall.com/cgi-bin/welcome | |
| 2. log in with demo/password | |
| 3. click on NetExtender icon, this will download a tar.gz with the client | |
| 4. sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/libssl.so.6 | |
| 5. sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/lib/libcrypto.so.6 | |
| 6. un-tar the client, make install script executable and launch install |
| # coding: utf-8 | |
| # | |
| # fuckda.py - Uso de certificados de la FNMT con Python | |
| # | |
| # Autor: Juan Luis Cano Rodríguez <juanlu001@gmail.com> | |
| # | |
| # Instrucciones: | |
| # | |
| # 1. Exportar certificado (CERTIFICADO.p12) | |
| # https://www.sede.fnmt.gob.es/preguntas-frecuentes/exp-imp-y-elim-de-certificados |
We recommend that you set up a Python environment for developing quantecon that is separate from the "default" Python environment that you use in your own research. This will allow you to contribute to quantecon without worrying about corrupting the Python environment on which your other work depends.
Below are instructions for building a separate development environment for contributing to the quantecon package using the Conda package management system which comes bundled with the Anaconda Python distribution provided by Continuum Analytics.
Fork and clone a copy of the quant-econ repository on to your local machine.