Ideas for Final Year Project in Information Security

Today, if anyone is short of ideas I will share 10 possible topics for projects that have to do with Information security or these can be more specifically said as Top 10 Invitational Project/Research Ideas in field of Information, Security and Hacking 1) Integrating frameworks Latch in Internet with Second Factor Authentication Latch is a […]

Ideas for Final Year Project in Information Security Read More »

be a hacker like inspector gadget

Object Orientation in PHP for beginners

I know many PHP programmers the concept of object-oriented programming scares them. I’ve been there. The syntax is different. But in this article I will try to understand object-oriented (OOP by its acronym in English), programming, programming style in which the actions are grouped into classes that help us to create more compact and easy to maintain code.

Object Orientation in PHP for beginners Read More »

PHP tips and tricks

Introduction to the Web Speech API -WebApps That talk

HTML 5 specification includes a voice recognition allowing users to interact with our website using your computer’s microphone. Enabling speech recognition in a form field, the browser will provide the field with an option to start the speech recognition. way of providing this option will vary depending on the browser, eg Google Chrome desktop displays a microphone

Introduction to the Web Speech API -WebApps That talk Read More »

GeeksProgramming

BEST Programming Languages – A Brief Introduction

At the first developed computers, electronics was the need to program them, that is, to store in memory the information about the task they were to perform. The former are used as simple calculators; are indicated in the footsteps of calculation , one by one. John Von Neumann developed the model that bears his name, to describe this concept of ” program stored “. In this model, there is an abstraction of the memory as a

BEST Programming Languages – A Brief Introduction Read More »

GeeksProgramming

Deploying applications without headaches

When you look for information on methods to work more efficiently in software development is lots of very useful and well designed systems.Unfortunately these systems are usually oriented to large programming teams and never to small or very small teams, even one. There are many small businesses, many more companies with large development teams, but

Deploying applications without headaches Read More »

GeeksProgramming

Swift, the new programming language by Apple

Apple has again surprised the whole community of developers presenting their new programming language to which they have named Swift, a language according to Craig Federighi is fast, modern and write more secure and reliable code, eliminating some errors common programming. This new language is called to replace the current Objective-C, but while this happens,

Swift, the new programming language by Apple Read More »

Swift is a new object-oriented programming language

Sigma.js, draw graphs using canvas from javascript

Using HTML5 canvas is leading to interesting and amazing tools, a library that can generate dynamic charts directly from javascript as Sigma.js. Among the features that make an interesting Sigma.js library are: The ability to chain methods Events management Ability to add plugins, use files GEXF, ForceAtlas2 algorithms, … Api simple and accessible Custom painted

Sigma.js, draw graphs using canvas from javascript Read More »

sigma.js

Some C++ programming Questions and Solutions

Q1: WAP to demonstrate how ambiguity is avoided in single inheritance using scope resolution operator. Ans: #include<iostream.h> Class A { public: void display() { cout<<”An”; } }; class B:public A { void display() { cout<<”Bn”; } }; int main() { B b;                      //derived class object b.display();         // invokes display() in B b.A::display();    // invokes display()

Some C++ programming Questions and Solutions Read More »

C++ unofficial.sh - GeeksProgramming
Scroll to Top