Posts

Daddy Game - An Indian Traditional game

Hi Friends, Today i will introduce an indian traditional board game to android user I am very interested in playing daddy game with my friends. Now that interest  becomes as an android game Here these are the playing instructions to the daddy game https://www.youtube.com/watch?v=Iy81FjNRX10 https://www.youtube.com/watch?v=yuZ0rf6Pupc Daddy is a traditional indian game with two players.It runs with mind power between 2 players.You can play againist your friends Features: Auto Move Suggestions Interesting Graphic View to game Time taken by two players will be shown individually Total movements shows Intresting background sounds and music music and sound on/off feature No permissions are needed to this app. Download the best Daddy for Android now! https://play.google.com/store/apps/details?id=in.mjtech.daddy

Introduction to cyber-crime

Here am sharing my vision and view on the cyber-crime Introduction to cyber-crime The internet in India is growing rapidly. It has given rise to new opportunities in every field such as entertainment, business, sports or education. à°­ారతదేà°¶ంà°²ో à°‡ంà°Ÿà°°్à°¨ెà°Ÿ్ à°µేà°—ంà°—ా à°ªెà°°ుà°—ుà°¤ోంà°¦ి. à°µిà°¨ోà°¦ం, à°µ్à°¯ాà°ªాà°°à°®ు, à°•్à°°ీà°¡à°²ు à°²ేà°¦ా à°µిà°¦్à°¯ à°µంà°Ÿి à°ª్à°°à°¤ి à°°ంà°—ంà°²ో à°•ొà°¤్à°¤ అవకాà°¶ాà°²ు à°ªెà°°ిà°—ాà°¯ి. There are two sides to a coin. The Internet also has its own disadvantages. One of the major disadvantages is Cyber-crime, simply it is illegal activity committed on the internet. à°¨ాà°£ెంà°•ు à°°ెంà°¡ు à°µైà°ªుà°²ా ఉన్à°¨ాà°¯ి. à°‡ంà°Ÿà°°్à°¨ెà°Ÿ్à°•ు à°¦ాà°¨ి à°¸్à°µంà°¤ à°ª్à°°à°¤ిà°•ూలతలు à°•ూà°¡ా ఉన్à°¨ాà°¯ి. à°ª్à°°à°§ాà°¨ నష్à°Ÿాà°²్à°²ో à°’à°•à°Ÿి à°¸ైబర్-à°¨ేà°°à°®ే, à°‡ంà°Ÿà°°్à°¨ెà°Ÿ్à°²ో ఇది à°šà°Ÿ్à°Ÿà°µిà°°ుà°¦్à°§à°®ైà°¨ à°•ాà°°్యకలాపమే. Categories of cyber-crime Cyber-crimes can be basically divided into 3 major categories: Cyber-crimes against persons. Cyber-crimes against property. Cyber-crimes against government. Cyber-crimes against persons Cyber harassment is a distinct Cyber-crime. Various kinds of harassment can and do occur i...

Simple Mail Sending Contact Form using PHP and Jquery

here am sharing simple email sending contact us form source code using php and jquery, for this you need a PHP working environment with SMTP protocol enable and jQuery plugin here is the source for sending mail HTML CODE: [code language="html"] <div class="content col-md-5 wow fadeInDown" data-wow-duration="1000ms" data-wow-delay="300ms"> <form id="main-contact-form" class="contact-form mail_class" name="contact-form" method="post" action="email.php"> <div class="err_msg"></div> <div class="form-group"> <input type="text" class="form-control" name="first_name" id="Inputname" placeholder="Full Name" required=""> <label for="first_name"><i class="icon-tag"></i></label> <div class="clearfix"></div> ...

onclick anchor tag open url in bootstrap model

for example let us thisnk your anchor tag is [source language="html"] <a href="https://google.co.in/">Google</a> [/source] Now you need to open that link in bootstrap model,for this just follow this procedure write your anchor tag as make sure you already included jquery js file and bootstrap css file in this page HTML COde: [source language="html"] <span name='https://google.co.in/' class='mapview_link'>Google</span> <div class="modal fade in" id="RtPopupModal" role="dialog"> <div class="modal-dialog" id="RtPopupType"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title" id="rtpopuptitle"></h4> </div...

Custom prompt, alert boxes using jquery

below code use full to make custom javascript alert, prompt, dialog boxes resources are [code language="html"] <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"> <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <link href="css/jquery-confirm.css" rel="stylesheet" type="text/css"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script src="js/jquery-confirm.js"></script> [/code] working code: [code language="html"] <div class="row"> <h2>Basic</h2> <div class="btn-group" role="group"> <button type="button" class="btn btn-primary demo-1">Confirm</button> <script> $(...

Simple steps for installtion of laravel for biggeners

1. Goto server directory(www for wamp,htdocs for xampp,etc) 2. Run "git clone git@github.com:laravel/laravel.git" (git shows an internal or external error for windows users),do below ->goto this url in browser "https://github.com/laravel/laravel" ->click "clone or download" ->then click download zip ->extract that zip into server directory to a folder (in my case "rest" is the project name) 3. Now move to the project directory(rest) using "cd rest" 4. Now, run "composer install" (make sure you have installed composer in your pc,if u don't have first instll composer) 5. Rename .env.example file to .env use this command "rename .env.example .env" 6. Now, php artisan key:generate 7. open http://localhost/{project name}/public in my case(http://localhost/rest/public/) that's it basic installation of laravel completed. Now we will discuss about using database: it is better to use migration for creating...

Constants creation in laravel 5.4

global constant defining in laravel 5 in config/ folder create a file constants.php there you can add any constats as [code language="php"]<?php return [ 'APP_URL' => 'xxx.xxx.x.x:8545', ]; ?>[/code] to call those simpley [code]{{ config('constants.APP_KEY') }}[/code]