Author: Ari Lerner.
AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:
- Module support
- DOM manipulation
- Animations
- Templating
Author: Ari Lerner.
AngularJS offers a single framework that can be used to build dynamic, client-centric applications. It provides:
# Antnee's Classy Filter! v3.0a | |
# https://www.pathofexile.com/forum/view-thread/1245785 | |
# Instructions for use: | |
# Right-click this page, click "select all" | |
# Right click again, click "Copy" | |
# Open a new .txt document and paste the contents of this page into it | |
# USE ANSI ENCODING IF YOU USE NOTEPAD++ OR ANY OTHER TEXT EDITOR | |
# Click File/Save As | |
# Select "All Files" from the dropdown menu at the bottom |
Adyen Test Card Numbers | |
These cards are only valid on our TEST system and they will never involve any actual transaction or transfer of funds. The TEST card numbers will not work on the Adyen LIVE Platform. | |
For all cards use the following expiration and CVV2/CVC2/or CID for Amex. | |
For all cards: | |
Expiration Dates CVV2 / CVC3 CID (American Express) | |
08/2018 OR 10/2020 737 7373 |
# ------------------------------------------- | |
# CRASH INTO SONIC PI! | |
# Learn to code music in less than 30 minutes | |
# ------------------------------------------- | |
# - download Sonic Pi from sonic-pi.net | |
# - copy and paste these code snippets | |
# - change and experiment with the snippets | |
# - go! | |
# ------------------------------------------- | |
# These snippets were made for a workshop to |
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
#define TUNINGFREQ 440.0 | |
float p2f( float pitch ){ | |
return pow( 2.0, (pitch-69.0)/12.0 ) * TUNINGFREQ; | |
} | |
float f2p( float freq ){ | |
return (log2( freq / TUNINGFREQ ) * 12.0f ) + 69.0f; | |
} |