http://tinyurl.com/MexicanFintechAPIList
This is a list of APIs you can use to build your app using Mexican Fintech.
| """ | |
| This is the basis for an elasticsearch 1.x backend I've cobbled together and am continuing | |
| to refine and test for use. It's based on haystack master's version as of: | |
| - https://github.com/toastdriven/django-haystack/blob/cbb72b3253404ba21e20860f620774f7b7b691d0/haystack/backends/elasticsearch_backend.py | |
| But with @HonzaKral and @davedash's work to make the backend behave more like an ES user would expect with regard to doc types: | |
| - https://github.com/toastdriven/django-haystack/pull/921 | |
| I also made a number of changes: | |
| - I fixed bugs that I found in #921 (mostly related to mapping synchronization issues), | |
| all of which I wrote up as comments on #921 |
| hdiutil convert -format UDRW -o destination_file.img source_file.iso | |
| # Or re-partition it with Disk Utility with 1 Free Space Partition | |
| diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%" | |
| # Or copy the image through Disk Utility in Restore menu | |
| dd if=destination_file.img.dmg of=/dev/disk2 bs=1m | |
| # Or eject manually | |
| diskutil eject /dev/disk2 |
| // StickyHeadersCollectionViewFlowLayout | |
| // | |
| // A subclass of UICollectionViewFlowLayout which has UITableView style sticky headers. | |
| // | |
| // This code is based on Evadne Wu's code^1, with the following changes: | |
| // | |
| // * Fixes a crash for sections with zero items | |
| // * Adds support for UIScrollView's contentInset | |
| // * Adds support for UICollectionViewFlowLayout's sectionInset | |
| // |
| import * as assert from "assert"; | |
| /** Decider Pattern **/ | |
| type Transaction = { | |
| amount: number | |
| date: Date | |
| } | |
| type Deposited = Transaction & { |
http://tinyurl.com/MexicanFintechAPIList
This is a list of APIs you can use to build your app using Mexican Fintech.
| So you've cloned somebody's repo from github, but now you want to fork it and contribute back. Never fear! | |
| Technically, when you fork "origin" should be your fork and "upstream" should be the project you forked; however, if you're willing to break this convention then it's easy. | |
| * Off the top of my head * | |
| 1. Fork their repo on Github | |
| 2. In your local, add a new remote to your fork; then fetch it, and push your changes up to it | |
| git remote add my-fork git@github...my-fork.git |
| #!/usr/bin/env sh | |
| :: default : yabai -m config active_window_opacity 1; yabai -m config normal_window_opacity 1; | |
| # Focus | |
| shift + alt - home : yabai -m window --focus north | |
| shift + alt - j : yabai -m window --focus north | |
| shift + alt - end : yabai -m window --focus south | |
| shift + alt - k : yabai -m window --focus south | |
| shift + alt - delete : yabai -m window --focus west |
| // Taken from the commercial iOS PDF framework http://pspdfkit.com. | |
| // Copyright (c) 2014 Peter Steinberger, PSPDFKit GmbH. All rights reserved. | |
| // Licensed under MIT (http://opensource.org/licenses/MIT) | |
| // | |
| // You should only use this in debug builds. It doesn't use private API, but I wouldn't ship it. | |
| // PLEASE DUPE rdar://27192338 (https://openradar.appspot.com/27192338) if you would like to see this in UIKit. | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> |
brew install llvm
ln -s "/usr/local/opt/llvm/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "/usr/local/opt/llvm/bin/clang-tidy" "/usr/local/bin/clang-tidy"use cmake file
find_program(CLANG_TIDY_BIN clang-tidy)
find_program(RUN_CLANG_TIDY_BIN /usr/local/Cellar/llvm/10.0.0_3/share/clang/run-clang-tidy.py)