Here is a short list of problems to solve in "any" Fintech
- KYC
- Ledger
- Scaling
- Reliability
- Latency
- Security
- Data Consistency
- Integration with many external systems
Here is a short list of problems to solve in "any" Fintech
| #The context of this program is a course of an hour to journalists who know nothing about programming in a lab with Python 3 only. | |
| import urllib.request | |
| import json | |
| def analisa_detalhe(cod): | |
| url = 'http://educacao.dadosabertosbr.com/api/escola/' | |
| resp = urllib.request.urlopen(url+str(cod)).read() | |
| resp = json.loads(resp.decode('utf-8')) | |
| if int(resp['salasExistentes']) > 1: | |
| print ('Salas Existentes:', resp['salasExistentes']) |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
Testar/verificar a disposição dos elementos de uma determinada página em determinadas resoluções de tela.
Executar captura de telas de acordo com os viewports definidos em um script, com a ajuda do PhantomJS.
Necessário ter o NodeJS instalado.
| #!/bin/bash | |
| cd $PROJECT_PATH | |
| for i in $(find */log/*.log); do | |
| echo "" > $i | |
| done |
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| #------------------------------------------------------------------------------- | |
| # NOTES: | |
| #------------------------------------------------------------------------------- | |
| # * User @jimklimov (and probably some others called out in the long comment | |
| # thread below) have modified this script to make it more robust and keep | |
| # up with various changes in the GitHub API and response format at: | |
| # https://github.com/jimklimov/github-scripts |
| # Replace any brackets with real values | |
| # Try to ssh in to DREAMHOST (ensure it no longer asks for a PW); you may want to restart Terminal | |
| ssh [user]@[host] | |
| cd ~ | |
| mkdir [mydomain_com].git | |
| cd [mydomain_com].git | |
| git init --bare | |
| vi hooks/post-receive | |
| # Enter the code from the "post-receive" file (in this gist); save + quit |
This installs a patched ruby 1.9.3-p327 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.
| # -*- encoding: utf-8 -*- | |
| # Usage: | |
| # urlpatterns += patterns('', | |
| # route(r'^$', GET='getview', POST='postview', name='viewname'), | |
| # ) | |
| # | |
| from django.http import Http404 | |
| from django.core.urlresolvers import RegexURLPattern, get_callable | |
| def discover_view(view, prefix=''): |