Skip to content

Instantly share code, notes, and snippets.

View ahbou's full-sized avatar
shipping

Ahmed Bouchfaa ahbou

shipping
View GitHub Profile
@ahbou
ahbou / ComposeView.swift
Last active July 12, 2019 03:30
iPhone X InputAccessoryView Fix
//
// ComposeView.swift
import UIKit
class ComposeView: UIView {
// ........
// Other layout code and methods
// ........
@ahbou
ahbou / Storage.swift
Created September 17, 2017 10:23 — forked from saoudrizwan/Storage.swift
Helper class to easily store and retrieve Codable structs from/to disk. https://medium.com/@sdrzn/swift-4-codable-lets-make-things-even-easier-c793b6cf29e1
import Foundation
public class Storage {
fileprivate init() { }
enum Directory {
// Only documents and other data that is user-generated, or that cannot otherwise be recreated by your application, should be stored in the <Application_Home>/Documents directory and will be automatically backed up by iCloud.
case documents
@ahbou
ahbou / ReCodeSign
Created February 2, 2017 23:46 — forked from 0xc010d/ReCodeSign
Codesign an iOS app, with a different distribution certificate and mobileprovisioning file.
- Copy the delivered ipa into a directory to work in.
- export PlistBuddy="/usr/libexec/PlistBuddy" to get the PlistBuddy tool to your shell. If it is not added, all references to PlistBuddy
will need to be written as the full path.
- Take the delivered App.ipa and unzip it using the unzip command. This should produce a Payload directory containing the app and its
resources.
- Enter the command "codesign -d --entitlements :enterprise.plist Payload/PathToApp.app/" This pulls the entitlements out of the app, and
prints them to a plist, without a leading "blob" of data. Pay particular attention to the colon before the enterprise.plist file name.
{
af: { code: 'af', name: 'Afghanistan' },
ax: { code: 'ax', name: 'Åland Islands' },
al: { code: 'al', name: 'Albania' },
dz: { code: 'dz', name: 'Algeria' },
as: { code: 'as', name: 'American Samoa' },
ad: { code: 'ad', name: 'AndorrA' },
ao: { code: 'ao', name: 'Angola' },
ai: { code: 'ai', name: 'Anguilla' },
aq: { code: 'aq', name: 'Antarctica' },
@ahbou
ahbou / fresh-mac-setup.md
Created January 9, 2017 15:20 — forked from bernsno/cmal-fresh-mac-setup.md
Fresh Mac Setup

New Computer Setup

Last tested using Mac OS X 10.8 Mountain Lion

Before Wiping Original Install

  • Backup .ssh folder to avoid having to regenerate codes for services such as Heroku and Github.
@ahbou
ahbou / rails_setup.sh
Last active December 15, 2016 11:04
Managing multiple Rails version with Bundler and rbenv
# make sure homebrew is up to date
brew update
# update ruby version
brew upgrade ruby-build
# install latest stable version
rbenv install 2.3.3
#set version as global
rbenv global 2.3.3
#install bundler for that ruby version
gem install bundler
@ahbou
ahbou / DumpiOSFonts.m
Last active June 21, 2016 15:45 — forked from shannoga/gist:1008678
Get fonts family and font names list on iOS
// List all fonts on iPhone
NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]];
NSArray *fontNames;
NSInteger indFamily, indFont;
for (indFamily=0; indFamily < familyNames.count; ++indFamily)
{
NSLog(@"Family name: %@", familyNames[indFamily]);
fontNames = [[NSArray alloc] initWithArray:
[UIFont fontNamesForFamilyName:familyNames[indFamily]]];

Keybase proof

I hereby claim:

  • I am ahbou on github.
  • I am ahbou (https://keybase.io/ahbou) on keybase.
  • I have a public key whose fingerprint is C4FB 1E06 E840 050B 7969 713E 132A E782 14BC 87D7

To claim this, I am signing this object:

@ahbou
ahbou / FCPrivateBatteryStatus.m
Created January 30, 2016 00:04
How to get raw battery info (mAh remaining, etc.) from iOS using private APIs. For internal testing only, NOT APP STORE DISTRIBUTION!
#import <Foundation/Foundation.h>
#include <dlfcn.h>
NSDictionary *FCPrivateBatteryStatus()
{
static mach_port_t *s_kIOMasterPortDefault;
static kern_return_t (*s_IORegistryEntryCreateCFProperties)(mach_port_t entry, CFMutableDictionaryRef *properties, CFAllocatorRef allocator, UInt32 options);
static mach_port_t (*s_IOServiceGetMatchingService)(mach_port_t masterPort, CFDictionaryRef matching CF_RELEASES_ARGUMENT);
static CFMutableDictionaryRef (*s_IOServiceMatching)(const char *name);
@ahbou
ahbou / capybara cheat sheet
Created January 8, 2016 18:41 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')