Skip to content

Instantly share code, notes, and snippets.

View jalopezsuarez's full-sized avatar

Jose Antonio Lopez jalopezsuarez

View GitHub Profile
//
// UIButtonBox.h
//
// Created by Jose Antonio Lopez on 28/11/13.
// Copyright (c) 2014 Asenit Technologies SL. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIButtonBox : UIButton
@jalopezsuarez
jalopezsuarez / circle-jira.css
Last active December 16, 2015 16:25
Redmine Circle 2.0.2 (Colours Themes Customization)
@import url(../../../stylesheets/application.css);
#header > h1 {
background: url(../images/logo.png) 5px 5px no-repeat
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
#header > h1 {
background-image: url(../images/logo2x.png);
background-size: 38px 40px
@jalopezsuarez
jalopezsuarez / JavaFX NoDecorationTransitions
Created December 28, 2015 15:20
JavaFX NoDecoration/Transitions
package application;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
@jalopezsuarez
jalopezsuarez / UnderlinedTextField.swift
Created September 24, 2017 20:04
Underlined UITextView in Swift
//
// UnderlinedTextField.swift
// Assembly
//
// Created by Jose Antonio Lopez (jalopezsuarez@gmail.com) on 01/01/17.
// Copyright (c) 2017 Vemovi Desarrolla sl. All rights reserved.
//
import Foundation
@jalopezsuarez
jalopezsuarez / OAuthGoogle.swift
Created August 20, 2018 18:57
AuthenticationViewController extension for AuthenticationViewController Swift Library for OAuth2 Authentication
//
// OAuthGoogle.swift
// AuthenticationViewController
//
// Created by Jose Antonio Lopez (jalopezsuarez@gmail.com) on 01/01/2018.
// Copyright © 2018 Jose Antonio Lopez. All rights reserved.
//
import Foundation
import AuthenticationViewController
@jalopezsuarez
jalopezsuarez / UIButtonActivity.swift
Last active August 27, 2018 14:30
Display activity indicator inside UIButton Swift4
//
// UIButtonActivity.swift
// Extensions
//
// Created by Jose Antonio Lopez on 27/08/2018.
// Copyright © 2018 Jose Antonio Lopez <jalopezsuarez@gmail.com>. All rights reserved.
//
import Foundation
import UIKit