Skip to content

Instantly share code, notes, and snippets.

@timothyarmes
timothyarmes / gist:7080170
Last active March 27, 2022 03:28
An implementation of a UINavigationBar subclass for iOS7 which creates a taller navigation bar suitable for adding extra controls underneath the title.The appearance proxy is used for shifting the title and bar button items back up to their original vertical position.Note that it's easy to specify your subclass in XCode: clicking on the UINaviga…
#define kAppNavBarHeight 66.0
@implementation TATallNavigationBar
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
[self setupAppearance];
}
@timothyarmes
timothyarmes / notification.swift
Created June 8, 2017 14:05 — forked from ericdke/notification.swift
Deliver an OSX notification with Swift
func showNotification() -> Void {
var notification = NSUserNotification()
notification.title = "Test from Swift"
notification.informativeText = "The body of this Swift notification"
notification.soundName = NSUserNotificationDefaultSoundName
NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification(notification)
}
//showNotification()
@timothyarmes
timothyarmes / 1 Explanation.md
Last active June 25, 2024 08:21
Pages privés dans Paheko

Pages privées

Il est possible de créer une zone privée sur votre site réservée aux membres avec Paheko, mais cela n'est pas évident.

Option 1 - solution simple

Créer une catégorie privée

Dans le module web, créez une catégorie qui contiendra la zone des membres de votre site. Donnez-lui un slug d'URL tel que espace-membres. Vous l'utiliserez pour tester les pages faisant partie de la zone privée et les rendre inaccessibles aux utilisateurs non connectés.