Skip to content

Instantly share code, notes, and snippets.

View ahmetardal's full-sized avatar

Ahmet Ardal ahmetardal

View GitHub Profile
@ahmetardal
ahmetardal / GmailBiggerText-Tampermonkey.js
Last active March 8, 2025 11:48
GmailBiggerText Tampermonkey user script.
// ==UserScript==
// @name Gmail Bigger Text
// @namespace https://ahmetardal.com
// @homepageURL https://gist.github.com/ahmetardal/27d2a4d5f213c7d869e64a01f8779351
// @description Bigger text for Gmail
// @author Ahmet Ardal
// @version 1.0
// @include https://mail.google.com/*
// @include https://*.mail.google.com/*
// @grant GM_addStyle
{
"data": {
"00IDzW5S87Tdz7NOkiW4": {
"artistName": "Hanjo Gabler",
"name": "Spanish Summer",
"tags": [
"acoustic",
"latin",
"world"
],
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
target.build_configurations.each do |config|
next unless config.name == 'Debug'
puts config.name
puts config.build_settings['LD_RUNPATH_SEARCH_PATHS']
puts "------------\n"
end
end
- (void) viewDidLoad
{
[super viewDidLoad];
SSCheckBoxView *cbv = [[SSCheckBoxView alloc] initWithFrame:CGRectMake(20, 20, 200, 30)
style:kSSCheckBoxViewStyleGlossy
checked:YES];
[cbv setText:@"Check updates?"];
[self.view addSubview:cbv];
[cbv release];
@ahmetardal
ahmetardal / SSPhotoCropperDelegate.m
Created October 17, 2011 09:21
SSPhotoCropperViewController
@protocol SSPhotoCropperDelegate<NSObject>
@optional
- (void) photoCropper:(SSPhotoCropperViewController *)photoCropper
didCropPhoto:(UIImage *)photo;
- (void) photoCropperDidCancel:(SSPhotoCropperViewController *)photoCropper;
@end
@ahmetardal
ahmetardal / UIWebViewHttpStatusCodeHandling_checksession.m
Created August 18, 2011 11:17
UIWebViewHttpStatusCodeHandling
#pragma mark -
#pragma mark UIWebViewDelegate Methods
- (BOOL) webView:(UIWebView *)webView
shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType
{
if (_sessionChecked) {
[self log:@"session already checked."];
return YES;
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellId = @"EmailableCell";
EmailableCell *cell = (EmailableCell *) [tableView dequeueReusableCellWithIdentifier:cellId];
if (cell == nil) {
cell = [[[EmailableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellId] autorelease];
}
[cell setIndexPath:indexPath];
[cell setDelegate:self];
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellId = @"CopyableCell";
CopyableCell *cell = (CopyableCell *) [tableView dequeueReusableCellWithIdentifier:cellId];
if (cell == nil) {
cell = [[[CopyableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellId] autorelease];
}
[cell setIndexPath:indexPath];
[cell setDelegate:self];
[[SSLocationManager sharedManager] addDelegate:self];
@ahmetardal
ahmetardal / initializing_animation_timers.m
Created April 25, 2011 10:30
EyeballAnimation Demo App
- (void) initializeTimerWithNSTimer
{
CGFloat interval = 1.0f / 50.0f;
[NSTimer scheduledTimerWithTimeInterval:interval
target:self
selector:@selector(animateBallNSTimer:)
userInfo:nil
repeats:YES];
}