Welcome to my site... Have a nice day...

Showing posts with label Codes. Show all posts

Sunday, 16 February 2014

[PHP] How generate unique randoms

 

[PHP] How generate unique randoms

Hi my friends. Today i will show u how generate unique random integer on php... This is oru function to suffle our numbers.. For randomize :) function UniqueRandom($min, $max, $leng) {    $numbers= range($min, $max);    shuffle($numbers);    return array_slice($numbers, 0, $leng);}   How it use: <?php print_r( UniqueRandom(0,25,5) ); ?> OutPut: Array ( [0] => 12

03:27 Posted by Unknown 0

Tuesday, 11 February 2014

[C#] How make a auto login bot

 

[C#] How make a auto login bot

Hi all! Today we will make a auto login bot :) Lets start first open a new project. Select C# Form Application. and add Web Browser to your form. and set WebBrowser Url to = https://www.facebook.com I added 2 label 2

14:10 Posted by Unknown 0

Wednesday, 8 January 2014

[C#] Send file with FTP

 

[C#] Send file with FTP

Hello! Today i will publish my ftpfilesender class with you i write this class for my project you can use it everywhere... Download: https://github.com/Kacak41/FtpFileSender Test Program: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace console {     class

10:49 Posted by Unknown 0

Thursday, 2 January 2014

[C#] Generate random matris and sum diagonal's

 

[C#] Generate random matris and sum diagonal's

Hi my friends today i make some friends homework its basic C# application. You can find source code and program below... Download /* *Code Start */ using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using

17:32 Posted by Kacak41 0

Monday, 9 September 2013

[JAVA] File upload with FTP

 

[JAVA] File upload with FTP

Hi :) Today i will show you how a file transfer's a server with JAVA :) Lets began :) First you need that library: import org.apache.commons.net.PrintCommandListener; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPReply;   Apache Commons Net API   // Codes

02:57 Posted by Kacak41 0

Saturday, 7 September 2013

I Can Write Low Price Programs For You

 

I Can Write Low Price Programs For You

If you want i can write for you programs with C, C# and Java Language's... I don't want so high prices for this. If you want to write a program please contact with me. e-mail:murat.ozkl@gmail.com

05:14 Posted by Kacak41 0

Friday, 6 September 2013

[Java] Writing a IRC Bot

 

[Java] Writing a IRC Bot

Hi! bro's and sis's.. today i will publish whit you a bot code First need a java library ) i am using pircbot library for coding a irc bot! Pircbot Library Home Page:http://www.jibble.org/pircbot.php Pircbot Library Download Link:http://www.jibble.org/files/pircbot-1.5.0.zip Download this library

13:03 Posted by Kacak41 1

SSH Client With Java

 

SSH Client With Java

Hi my friend i write a ssh client for my universty project.. i am using Jsch library http://www.jcraft.com/jsch/ you can find it here.! here my program:Mo_Ssh This is my main code.. Sorry their description turkish :S when i have a

07:48 Posted by Kacak41 0