Kategori: Programlama

git quick start guide

Posted on 14 Haziran 2018 in Programlama by

This tutorial guides starting git in a clear way: https://git-scm.com/docs/gittutorial

IOS Notes

Posted on 17 Mayıs 2018 in Programlama by

To call a function when application becomes active NotificationCenter.default.addObserver(self, selector: #selector(didBecomeActive), name: NSNotification.Name.UIApplicationDidBecomeActive, object: nil) @objc func didBecomeActive() { print(“did

Must read iOS articles

Posted on 11 Mayıs 2018 in Programlama by

Debugging with xcode-8 https://www.raywenderlich.com/152276/intermediate-debugging-xcode-8 You can find pdf version of the page below Intermediate Debugging with Xcode 8 Adaptive layout

Sending firebase requests over rest client

Posted on 08 Mayıs 2018 in Programlama by

First of all a rest client should be installed to pc. You may use “advanced rest client” extension for chrome

Updating ios package on safari

Posted on 28 Mart 2018 in Programlama by

Just define a url as follows: <a class=” btn-primary btn-lg” href=”itms-services://?action=download-manifest&url=https://abc.com.tr/manifest.plist“>Download App</a> and manifest.plist file should look like as follows:

Java classpath usage

Posted on 20 Kasım 2016 in Programlama by

We will create following classes: firstClass \___ abc.java secondClass \___ xyz.java Create a class with package name as p1.p2.p3 at

callgraph generator

Posted on 14 Temmuz 2016 in Programlama by

sudo apt-get install -y kcachegrind valgrind gcc main.c valgrind –tool=callgrind ./a.out # Generates a callgrind.out.<PID> file. kcachegrind callgrind.out.1234 # Opens

auto_ptr and reference counting

Posted on 16 Ekim 2015 in Programlama by

http://www.codeproject.com/Articles/15351/Implementing-a-simple-smart-pointer-in-c   A smart pointer is a class that wraps a ‘raw’ (or ‘bare’) C++ pointer, to manage the lifetime

How to inter process communication

Posted on 14 Ekim 2015 in Programlama by

https://en.wikipedia.org/wiki/Inter-process_communication File A record stored on disk, or a record synthesized on demand by a file server, which can be

Start a Simple HTTP Server in Any Folder

Posted on 05 Ekim 2015 in Programlama by

If you’re needing to quickly test some HTML that you’re working on, start a simple web server within any folder on your