If you are a indie or pro developer like me and you have some apps on the app store.
More I am reading about this Ad stuff more I am getting hooked into. I can clearly see how one can make money if they do the right things.
Well I am learning I would be posting my progress here in this post.
I just found out that like Admob (Google company), Mopub (twitter Company) has also have mediation.
Cracking the WiFi Networks WEP/WEP2/WPS
Disclaimer : This info is shared for education purpose only. I dont take any responsibility if any person/org uses it intentionally harm any one.
This less like a tutorial but more like my personal notes while studying the security.
Things you need : KALI Linux, Aircrank-ng suite (NO EXCEPTIONS)
1. Down the interface so its not connect to any network
ifconfig wlan0 down
How Do I Declare A Block in Objective-C?
I thought to share here. so that along with me it would be helpful to others too.
As a local variable:
returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...};
As a property:
@property (nonatomic, copy) returnType (^blockName)(parameterTypes);
As a method parameter:
- (void)someMethodThatTakesABlock:(returnType (^)(parameterTypes))blockName;
As an argument to a method call:
[someObject someMethodThatTakesABlock:^returnType (parameters) {...}];
As a typedef:
typedef returnType (^TypeName)(parameterTypes);
TypeName blockName = ^returnType(parameters) {...};
StarUML is Star one more time
I have been looking around for tool for UML diagramming for very long time. I never found any good tool. StarUML on windows platform really raise my expectation. I used it to design a quite complex system before. But Now I was looking for something that can run natively on Mac and I can rely on it for my forthcoming project.
Mac Apps that can really increase your productivity
Fluid App – Web applications like Gmail, Facebook, Campfire and Pandora are becoming more and more like desktop applications every day. Running each of these web apps in an individual tab in your browser can be a real pain. Fluid lets you create a Site Specific Browser (SSB) out of any website or web application, effectively turning your favorite web apps into desktop apps.
Setting up your Mac for hacking iOS Apps
Content will be here soon
Cheat sheet of command from hacking and securing iOS Applications
Note : hello is binary filename is following example. Replace it with your binary filename.
Basic disassembly
[shell]$otool -tV hello -p _main[/shell]Compiling c programs for arm architecture/iOS on OSX
Lets start with C language compiler. xcrun is good command to find out the specific about the system and what sdk version is install, platform and other good stuff that you would need in process.
xcrun -find -sdk iphoneos clang
Below are few variation of command with different available switch. Feel free to try
Installing Alcatraz Package Manager in XCode for plugins
In recent versions of Xcode. Apple is stingy about any plug-in is being used by xcode.
So I am updating this blog with two methods of installations.
Method #1:
(super easy) copy paste and you are done. (But you are dev, you would want chellenge, Yes. Right? Follow Method #2)
To install, open up your terminal and paste this:
[shell title=”Double click to select” collapse=”false” wraplines=”true”]curl -fsSL https://raw.github.com/alcatraz/Alcatraz/master/Scripts/install.sh | sh
[/shell]Alcatraz requires Xcode Command Line Tools, which can be installed in Xcode via Preferences > Downloads
.
Steps to publish to cocoapods
- edit podspec
- push branch to remote
- on terminal : add same tag as podspec
- git remote
-
git tag -a 0.1.1 -m”tag 0.1.1 added”
- git push origin –tags