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
[ | |
{ | |
"url": "http://qhapaq-nan.org/chemin-rural-a-shaullo-chico.html", | |
"tit": "Camino Rural en Chico Shaullo", | |
"imgs": [ | |
"http://qhapaq-nan.org/images/stories/com_form2content/p1/f22/2.jpg", | |
"http://qhapaq-nan.org/images/stories/com_form2content/p1/f22/22.jpg" | |
], | |
"lat": -7.173431, | |
"lon": -78.434569 |
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
#include<stdio.h> | |
long long ocurrencias(long long n, char cif, long long suma); | |
int main() | |
{ | |
char cif; | |
long long num; | |
do |
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
var modelo = [ | |
{ | |
nombre: "Mesa Comedor", | |
path1: "/obj/mesa-comedor.obj", | |
loaded1: false, | |
path2: null, | |
loaded2: false, | |
loaded: false, | |
}, |
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
\usepackage{listings} | |
\usepackage{color} | |
\definecolor{gray97}{gray}{.97} | |
\definecolor{gray75}{gray}{.75} | |
\definecolor{gray45}{gray}{.45} | |
\lstset{ | |
frame=Ltb, | |
framerule=0pt, | |
aboveskip=0.5cm, |
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 bpy | |
obj_list = bpy.context.selected_objects | |
for obj in obj_list: | |
bpy.ops.object.mode_set(mode='OBJECT') | |
bpy.context.scene.objects.active = obj | |
bpy.ops.object.mode_set(mode='EDIT') | |
bpy.ops.uv.unwrap(method='ANGLE_BASED', margin=0.0) | |
bpy.ops.object.mode_set(mode='OBJECT') |
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
{ | |
"postulacion":{ | |
"cargo":"ALCALDE PROVINCIAL", | |
"lugar":"LIMA - LIMA - ", | |
"designacion":"NO OBLIGATORIO PARA ORGANIZACION POLITICA LOCAL PROVINCIAL O DISTRITAL" | |
}, | |
"datosPersonales":{ | |
"dni":"08051943", | |
"apellidoPaterno":"VILLARAN", | |
"apellidoMaterno":"DE LA PUENTE", |
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
reset | |
#constantes | |
e = 1e-6 | |
v = 0.98 | |
pd = 4e-8 | |
d = 0.92 | |
#Mierda | |
f(x,y)= (1 - (1- exp(-2*y**2/x)+pd)*(1-exp(-2*((1-exp(-2*y**2/x))/(1-exp(-2*y**2/x)+pd)*(1-d)*(2*v-1))**2)))**x - e | |
#Valor de prueba |
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
reset | |
#constantes | |
e = 1e-6 | |
v = 0.98 | |
pd = 4e-8 | |
d = 0.92 | |
#Mierda | |
f(x,y)= (1 - (1- exp(-2*y**2/x)+pd)*(1-exp(-2*((1-exp(-2*y**2/x))/(1-exp(-2*y**2/x)+pd)*(1-d)*(2*v-1))**2)))**x - e | |
#Valor de prueba |
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
from __future__ import division #no probs with division | |
#from math import exp | |
#A partir de ahora importaremos las funciones matematicas desde numpy | |
from numpy import exp | |
#Asi, la vida es bella | |
#e:epsilon, v:nu, d: delta, a: alpha | |
def QF(e,v,pd,d): |