Santosh Tewari

iOS Developer

Simple ways to use Map in Hack Language Facebook

Simple ways to use Map in Hack Language Facebook

Map in Hack Language Facebook Hack Language supports Map that are simply an ordered dictionary-style collection. Map in Hack Language F...

Read more »
Posted by Santosh Tewari at 10:38 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, Map
Simple ways to use Vector in Hack Language Facebook

Simple ways to use Vector in Hack Language Facebook

Vector in Hack In Hack Language Vectors are an integer-indexed (zero-based) collection. Vectors allows random access to its elements w...

Read more »
Posted by Santosh Tewari at 10:29 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, Vector
Collection in Hack Programming Language Facebook

Collection in Hack Programming Language Facebook

Hack introduces the concept of Collections. Collections are basically used for data storage and retrieval. Collections implement many of t...

Read more »
Posted by Santosh Tewari at 10:21 0 comments
Labels: Collection, Collection Hack, Hack, Hack Facebook, Hack language, Hack Tutorial
Using Nullable in Hack Language Facebook

Using Nullable in Hack Language Facebook

Hack introduces a new way to handle null values by introducing the concept of Nullable. ? Operator is used for representing Nullable type...

Read more »
Posted by Santosh Tewari at 10:08 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, Nullable
Generic in Hack Language Facebook

Generic in Hack Language Facebook

Hack Language introduces the concept of generics to PHP. It allows a class or function or interface to define the type of it’s at the time...

Read more »
Posted by Santosh Tewari at 09:48 0 comments
Labels: Generics, Hack, Hack Facebook, Hack language, Hack Tutorial
Hack Modes in Hack Programming Language

Hack Modes in Hack Programming Language

The HACK language code is generally written in one of the three modes: Strict Partial Decl Unsafe These modes provides the developers th...

Read more »
Posted by Santosh Tewari at 09:04 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Modes, Hack Tutorial
Using 'mixed' type is Hack Language Facebook

Using 'mixed' type is Hack Language Facebook

In certain situations, it is difficult to determine the return type of a function prior to its call. In that situation we use the ‘mixed’ ...

Read more »
Posted by Santosh Tewari at 08:41 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, mixed Hack, mixed type
Using 'this' in Hack Language Facebook

Using 'this' in Hack Language Facebook

Using this in Hack Language is shown below: As we see in the example below that ' this ' can also be used as return type of a func...

Read more »
Posted by Santosh Tewari at 12:41 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, this pointer Hack
Array in Hack Language Facebook

Array in Hack Language Facebook

In HACK array can be created using one of the following ways: Untyped Array : array Explicitly Typed Array with Integer key: array<Ty...

Read more »
Posted by Santosh Tewari at 12:30 0 comments
Labels: Array, Array Facebook, Hack, Hack Facebook, Hack language, Hack Tutorial
Type Casting in Hack Language Facebook

Type Casting in Hack Language Facebook

Allowed Type : float, int, bool Not Allowed Type : double, integer, boolean, real, binary Example: <?hh function typeCast(): bool ...

Read more »
Posted by Santosh Tewari at 12:19 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, Type Casting
Function in Hack Language Facebook

Function in Hack Language Facebook

Function with no argument and no return type: <?hh // void indicate that a function does not return anything. function display(): voi...

Read more »
Posted by Santosh Tewari at 12:11 0 comments
Labels: Function Hack, Function Hack Facebook, Hack, Hack Facebook, Hack language, Hack Tutorial
Type Annotation in Hack Language Facebook

Type Annotation in Hack Language Facebook

Basic/Primitive Types: int, float, string, bool, array. Other Types: mixed, void, resource, array, Vector, tuple (type1, type2, . . .) ...

Read more »
Posted by Santosh Tewari at 11:21 0 comments
Labels: Hack, Hack Facebook, Hack language, Hack Tutorial, Type Annotation
Feature of Hack Language Facebook

Feature of Hack Language Facebook

FEATURES OF HACK Hack provides a method, the ability to annotate and to specify the return type.   Hack helps to detect unsafe coding ...

Read more »
Posted by Santosh Tewari at 11:07 0 comments
Labels: Features of Hack, Hack, Hack Facebook, Hack language, Hack Tutorial
Add JTree programmatically in Java Swing

Add JTree programmatically in Java Swing

JTree: A tree is a component that presents a hierarchical view of data. The user has the ability to expand or collapse individual subtrees...

Read more »
Posted by Santosh Tewari at 11:41 0 comments
Labels: Java, Java Swing, Java Tutorial, JTree
Add JTable Programmatically in Java

Add JTable Programmatically in Java

JTable: JTable is a component that displays rows and columns of data. We can drag the cursor on column boundaries to resize columns. JTa...

Read more »
Posted by Santosh Tewari at 11:18 0 comments
Labels: Java, Java Swing, Java Tutorial, JTable
HACK: The new programming language by Facebook

HACK: The new programming language by Facebook

HACK: The new programming language by Facebook The new language introduced by Facebook called Hack but it has very little to do with hack...

Read more »
Posted by Santosh Tewari at 02:10 0 comments
Labels: Facebook language, Hack, Hack language, Technews
Programmatically find the co-ordinates of a location from the location name iOS Map

Programmatically find the co-ordinates of a location from the location name iOS Map

Here is a sample code to find the co-ordinates of a location from the location name: Code: -(CLLocationCoordinate2D) getLocationFromAddr...

Read more »
Posted by Santosh Tewari at 10:17 0 comments
Labels: iOS, Map, Map Co-ordinates
Draw Line on TouchesMoved()/Mouse move programmatically in iOS using Objective-C

Draw Line on TouchesMoved()/Mouse move programmatically in iOS using Objective-C

Here is a sample code to draw line on touches move in iOS programmatically: Code: -(void) touchesBegan:(NSSet *)touches withEvent:(UIEve...

Read more »
Posted by Santosh Tewari at 12:22 0 comments
Labels: Draw line on touchesmoved(), iOS, Objective-C
Open Mail Composer programmatically in ios 8 using Objective-C

Open Mail Composer programmatically in ios 8 using Objective-C

In this blog post I am going to elaborate a simple example to Open Mail Composer programmatically in iOS using Objective-C. I would also p...

Read more »
Posted by Santosh Tewari at 12:11 0 comments
Labels: iOS, Mail Composer, Mail Composer programmatically, Objective-C
Connecting with SQLite programmatically in iOS using Objective-C

Connecting with SQLite programmatically in iOS using Objective-C

Here is a sample code for connecting with SQLite using Objective-C... Code: #import "sqlLiteDemoViewController.h" @interface s...

Read more »
Posted by Santosh Tewari at 11:57 0 comments
Labels: iOS, Objective-C, SQLite, SQLite programmatically
Adding Links To UILabel Programmatically iOS using Objective-C

Adding Links To UILabel Programmatically iOS using Objective-C

Hey friends here is a sample code that help you create link in UILabel...... Don't forget to import TTTAttributedLabel. Code: #imp...

Read more »
Posted by Santosh Tewari at 03:04 0 comments
Labels: iOS, UILabel, UILabel Programmatically
Adding UIButton Programmatically iOS using Objective-C

Adding UIButton Programmatically iOS using Objective-C

Here is a sample code to add a UIButton Programmatically in iOS using Objective-C: Code: UIButton *button_name=[[UIButton alloc]initWithF...

Read more »
Posted by Santosh Tewari at 02:48 0 comments
Labels: iOS, UIButton, UIButton Programmatically
C/C++ Interview Questions : Advance

C/C++ Interview Questions : Advance

1. When can you tell that a memory leak will occur? Memory leaks generally occur when a program loses the ability to free a block of dyn...

Read more »
Posted by Santosh Tewari at 09:53 3 comments
Labels: C, C++, deep copy, memory leak, name mangling, opaque pointer, Parameteric polymorphism, parameterized type, proxy objects, reflexive association, shallow copy, slicing, smart pointer
C/C++ Interview Questions : Headway

C/C++ Interview Questions : Headway

1. Name some pure object oriented languages. There are several object oriented programming language. Some common pure object oriented pr...

Read more »
Posted by Santosh Tewari at 09:47 0 comments
Labels: action class, C, C++, concrete class, container class, handle class, mixin class, node class, orthogonal base class, protocol class, pure object oriented languages
C/C++ Interview Questions : Base Cleaning

C/C++ Interview Questions : Base Cleaning

1. What is an incomplete type? Incomplete types refers to pointers in which there is non availability of the implementation of the refer...

Read more »
Posted by Santosh Tewari at 09:38 0 comments
Labels: adaptor class, C, C++, class invariant, dangling pointer, incomplete type, invariant of the class, Null object, post-condition, precondition, proxy objects, Stack unwinding, Wrapper class
C/C++ Interview Questions : Basics

C/C++ Interview Questions : Basics

1. What is a modifier? A modifier, also called a modifying function is a member function that changes the value of at least one data me...

Read more »
Posted by Santosh Tewari at 09:32 0 comments
Labels: accessor, C, C++, class template, Iterator class, modifier, name clash, namespace, object-oriented methodologies, OODBMS, template class
Newer Posts Older Posts
Subscribe to: Posts (Atom)

Popular Posts

  • C/C++ Interview Questions : Advance
    1. When can you tell that a memory leak will occur? Memory leaks generally occur when a program loses the ability to free a block of dyn...
  • C/C++ Interview Questions : Headway
    1. Name some pure object oriented languages. There are several object oriented programming language. Some common pure object oriented pr...
  • Adding UIButton Programmatically iOS using Objective-C
    Here is a sample code to add a UIButton Programmatically in iOS using Objective-C: Code: UIButton *button_name=[[UIButton alloc]initWithF...
  • Adding Links To UILabel Programmatically iOS using Objective-C
    Hey friends here is a sample code that help you create link in UILabel...... Don't forget to import TTTAttributedLabel. Code: #imp...
  • Using Array in PHP with easy example
    Hello friends, this is my 6th tutorial of PHP and Today I am sharing the concept of using arrays in PHP. As we all know that array is a co...
  • Using pointers in PHP with easy example
    Hello friends, this is my 7th tutorial of PHP and Today I am sharing the concept of using pointers in PHP. Pointers always come handy whil...
  • Open Mail Composer programmatically in ios 8 using Objective-C
    In this blog post I am going to elaborate a simple example to Open Mail Composer programmatically in iOS using Objective-C. I would also p...
  • Database connectivity in PHP in 5 simple steps with simple example
    Hello friends, welcome again, this is my 11th tutorial of PHP and Today I am sharing the concept of using database in PHP. Database is a v...
  • Connecting with SQLite programmatically in iOS using Objective-C
    Here is a sample code for connecting with SQLite using Objective-C... Code: #import "sqlLiteDemoViewController.h" @interface s...
  • URL Encoding in PHP with easy example
    Hello friends, this is my 12th tutorial of PHP and Today I am sharing the concept of URL encoding in PHP. Every user needs data privacy so...

Blog Archive

  • ►  2015 (1)
    • ►  September (1)
  • ▼  2014 (61)
    • ►  December (13)
    • ►  October (1)
    • ►  August (1)
    • ►  May (5)
    • ►  April (2)
    • ▼  March (26)
      • Simple ways to use Map in Hack Language Facebook
      • Simple ways to use Vector in Hack Language Facebook
      • Collection in Hack Programming Language Facebook
      • Using Nullable in Hack Language Facebook
      • Generic in Hack Language Facebook
      • Hack Modes in Hack Programming Language
      • Using 'mixed' type is Hack Language Facebook
      • Using 'this' in Hack Language Facebook
      • Array in Hack Language Facebook
      • Type Casting in Hack Language Facebook
      • Function in Hack Language Facebook
      • Type Annotation in Hack Language Facebook
      • Feature of Hack Language Facebook
      • Add JTree programmatically in Java Swing
      • Add JTable Programmatically in Java
      • HACK: The new programming language by Facebook
      • Programmatically find the co-ordinates of a locati...
      • Draw Line on TouchesMoved()/Mouse move programmati...
      • Open Mail Composer programmatically in ios 8 using...
      • Connecting with SQLite programmatically in iOS usi...
      • Adding Links To UILabel Programmatically iOS using...
      • Adding UIButton Programmatically iOS using Objecti...
      • C/C++ Interview Questions : Advance
      • C/C++ Interview Questions : Headway
      • C/C++ Interview Questions : Base Cleaning
      • C/C++ Interview Questions : Basics
    • ►  January (13)
  • Home
  • Home

Blogroll

About

Blogger news

Blogger templates

Labels

  • accessor
  • action class
  • adaptor class
  • Array
  • Array Facebook
  • Binary tree
  • BufferedReader
  • BufferedWriter
  • C
  • C++
  • class invariant
  • class template
  • Collection
  • Collection Hack
  • concrete class
  • constant
  • container class
  • Cookies
  • dangling pointer
  • Data structure
  • Database Connectivity
  • deep copy
  • Download Manager
  • Draw line on touchesmoved()
  • Facebook language
  • Facebook Login
  • Features of Hack
  • FileOutputStream
  • FileReader
  • FileWriter
  • Form processing
  • Function
  • Function Hack
  • Function Hack Facebook
  • Generics
  • Hack
  • Hack Facebook
  • Hack language
  • Hack Modes
  • Hack Tutorial
  • handle class
  • incomplete type
  • Infix
  • invariant of the class
  • iOS
  • Iterator class
  • Java
  • Java Swing
  • Java Tutorial
  • JSP
  • JTable
  • JTree
  • Keyboard
  • logical opeator
  • loops
  • Mail Composer
  • Mail Composer programmatically
  • Map
  • Map Co-ordinates
  • memory leak
  • mixed Hack
  • mixed type
  • mixin class
  • modifier
  • name clash
  • name mangling
  • namespace
  • node class
  • NSUserDefault
  • Null object
  • Nullable
  • Number Guesser
  • object-oriented methodologies
  • Objective-C
  • OODBMS
  • opaque pointer
  • orthogonal base class
  • OutputStream
  • Overloading
  • Pair
  • Parameteric polymorphism
  • parameterized type
  • PHP
  • PHP Numbers
  • PHP Tutorial
  • Pointer
  • post-condition
  • Postfix
  • precondition
  • PrintStream
  • protocol class
  • proxy objects
  • pure object oriented languages
  • PushViewController
  • Pygame
  • Python
  • reflexive association
  • Session handling
  • Set
  • shallow copy
  • slicing
  • smart pointer
  • Snake Game
  • SQLite
  • SQLite programmatically
  • Stack unwinding
  • String Manipulation
  • swift
  • synchronized
  • Technews
  • template class
  • this pointer Hack
  • Thread
  • Type Annotation
  • Type Casting
  • UIButton
  • UIButton Programmatically
  • UILabel
  • UILabel Programmatically
  • UIProgressView
  • UITextField
  • URL Encoding
  • Vector
  • Wrapper class
  • xCode
 
Copyright © Santosh Tewari All Right Reserved
Blogger Designed by IVYthemes | MKR Site
Posts RSS • Comments RSS