Skip to content

Instantly share code, notes, and snippets.

View buguibu's full-sized avatar
🍎
new company new challenges 💪

Víctor Gutiérrez Blanco buguibu

🍎
new company new challenges 💪
  • Madrid
View GitHub Profile
//
// LineHeightLabel.swift
// LineHeightLabel
//
// Created by Shinichiro Oba on 20/06/2018.
// Copyright © 2018 bricklife.com. All rights reserved.
//
import UIKit
@buguibu
buguibu / .bash_profile
Last active February 11, 2019 09:50 — forked from natelandau/.bash_profile
macOS Bash profile for iTerm
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@buguibu
buguibu / RecursiveBlock
Created July 29, 2014 10:09 — forked from mgroner/RecursiveBlock
Recursive block
//Place inside of your .m file's implementation
typedef void (^TopSuccess)(NSArray *);
- (void)fetchResourcewithSuccess:(void (^)(NSArray *))success;
{
bool isLastPage = NO;
NSMutableArray *array = NSMutableArray.new;
TopSuccess topSuccess;
TopSuccess __block recursiveTopSuccess;