Input
p := 100000
apr := 3.0
t := 30
Calcuation:
r := apr/100/12 # monthly interest rate
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name="viewport" /> | |
| <link rel="icon" href="data:,"> | |
| <title>String art</title> | |
| <script type="text/javascript" src="jquery.min.js"></script> | |
| <style> | |
| html, body { |
| import collections | |
| import math | |
| import os | |
| import cv2 | |
| import numpy as np | |
| import time | |
| MAX_LINES = 4000 | |
| N_PINS = 36*8 | |
| MIN_LOOP = 20 # To avoid getting stuck in a loop |
| import ch.bildspur.postfx.builder.PostFX; | |
| import processing.core.PApplet; | |
| import processing.core.PGraphics; | |
| import processing.core.PShape; | |
| import processing.core.PVector; | |
| import processing.opengl.PShader; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { | |
| if (p < 0.5) | |
| return 0.5 * pow(2*p, g); |
| import java.io.IOException; | |
| import java.net.URL; | |
| import java.util.Date; | |
| import java.util.List; | |
| import java.util.logging.Level; | |
| import org.json.*; | |
| import org.openqa.selenium.*; | |
| import org.openqa.selenium.chrome.*; | |
| import org.openqa.selenium.logging.*; |
| ########## | |
| # Win10 Initial Setup Script | |
| # Author: Disassembler <disassembler@dasm.cz> | |
| # Version: 1.7, 2016-08-15 | |
| # dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
| # THIS IS A PERSONALIZED VERSION | |
| # This script leaves more MS defaults on, including MS security features. | |
| # Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
Input
p := 100000
apr := 3.0
t := 30
Calcuation:
r := apr/100/12 # monthly interest rate
| package main | |
| import ( | |
| "log" | |
| "syscall" | |
| "unsafe" | |
| ) | |
| var ( | |
| kernel32 = syscall.NewLazyDLL("kernel32.dll") |
| #include <math.h> | |
| #include <algorithm> | |
| #include <string> | |
| #include <pmmintrin.h> | |
| using namespace std;typedef float R; | |
| #define _W 79 | |
| #define _H 39 | |
| #define EP 0.01f | |
| #define OP operator | |
| #define C const |
| #!/usr/bin/python | |
| import numpy | |
| import pyaudio | |
| import re | |
| import sys | |
| WIDTH = 79 | |
| BOOST = 1.0 |