function downloadNubankCSV({ date }) {
const transactions = angular.element(document.body).injector().get('Bills').all.map(bill => bill.more.line_items).flat()
const regExp = new RegExp(date, 'g')
const csv = transactions
// filtering wanted/unwanted datapoints
https://cloud-ecs.gravityzone.bitdefender.com/Packages/BSTWIN/0/setupdownloader_%5BaHR0cHM6Ly9jbG91ZC1lY3MuZ3Jhdml0eXpvbmUuYml0ZGVmZW5kZXIuY29tL1BhY2thZ2VzL0JTVFdJTi8wL1VSeFN3bi9pbnN0YWxsZXIueG1sP2xhbmc9ZW4tVVM=%5D.exe |
A great Egyptian pharaoh summons his two young nephews, Chuma and Azur, and commissions them to a monumental task: Build two massive pyramids as a tribute to Egypt. Upon completion, the pharaoh promised them kingship and riches for their remaining days. The only condition is that they must construct it without the help of anyone else.
Chuma and Azur are both young, ambitious, and up for the challenge.
Azur gets to work immediately. He drags heavy stones into a square formation, and in a few months completes the foundation of the pyramid. Townspeople cheer him on and commend his hard work.
But Azur is confused. When he looks over to where Chuma’s pyramid is supposed to be, he only sees an empty lot.
He goes to visit Chuma, only to find him working on a twisted apparatus that resembles some kind of a human torture device.
Sometimes you need to keep two upstreams in sync with eachother. For example, you might need to both push to your testing environment and your GitHub repo at the same time. In order to do this simultaneously in one git command, here's a little trick to add multiple push URLs to a single remote.
Once you have a remote set up for one of your upstreams, run these commands with:
git remote set-url --add --push [remote] [original repo URL]
git remote set-url --add --push [remote] [second repo URL]
Once set up, git remote -v
should show two (push) URLs and one (fetch) URL. Something like this:
I hereby claim:
- I am guilhermedecampo on github.
- I am guilhermedecampo (https://keybase.io/guilhermedecampo) on keybase.
- I have a public key ASCzjcs7QEZu4CnDteUn-ci-qlArLyoV2mAs4f5iAlBLCgo
To claim this, I am signing this object:
meteor add cordova:cordova-plugin-inappbrowser@https://github.com/ephemer/cordova-plugin-inappbrowser.git#04091fde737519c149e7ad6316971cb6b490c5b3
see this thread: meteor/meteor#6882
- Learn how to start a new react native project
- Run it on ios simulator, on android emulator, on a real iPhone device and on a real Android device, with and without debugging enabled.
- Learn how to upgrade a react native project
- Learn how to add a package to the project
- Learn how to add a package that has a native dependency (https://github.com/airbnb/react-native-maps, https://github.com/evollu/react-native-fcm) - DO NOT USE COCOAPODS
const json = fetch(jsonURL) | |
const namesColumnTable = _.keys(json); | |
const totalRows = _.reduce(json, (acc, value) => { | |
const arrayLength = _.values(value)[0].length; | |
return arrayLength > acc ? arrayLength : acc; | |
}, 0); | |
const rows = []; |
#!/bin/bash | |
set -e -x | |
#Declarations | |
################Declarations############### | |
# App name | |
APP_NAME=yourapp |