RADIO ONLINE (Click radio icon to listen)

Latest Posts

Wednesday 4 November 2020

Like and Subscribe Youtube Get Money isharefans

 

This is one of the miracle technology. It gives you the money while they got the money from the Youtuber itself. 

This system called "isharefans". This isharefans is very useful for those who are unemployed in this PKPB in Malaysia.

Share the joy guys!!

Refer here: http://bit.ly/getmoneywithlike or http://m.isharefans.vip/home/register/?i=741371

Sunday 19 April 2020

mIRC License by Ace


Open a regedit..

[11/12/17 @ 1107PM] <Ace> Windows Registry Editor Version 5.00
[11/12/17 @ 1107PM] <Ace> [HKEY_CURRENT_USER\Software\mIRC]
[11/12/17 @ 1107PM] <Ace> [HKEY_CURRENT_USER\Software\mIRC\License]
[11/12/17 @ 1107PM] <Ace> @="14571-1314131"
[11/12/17 @ 1107PM] <Ace> [HKEY_CURRENT_USER\Software\mIRC\UserName]
[11/12/17 @ 1107PM] <Ace> @="Khaled Mardam-Bey"
[11/12/17 @ 1107PM] <@MJ> haa ape tu
[11/12/17 @ 1107PM] <@Nurr> Sape blakon cite tuu aaa

This is a log as at 12 Disember 2017

Sunday 29 March 2020

mIRC Alias To Clear All Html Codes.

mIRC Alias To Clear All Html Codes.
mIRC Alias To Clear All Html Codes.


This page is about mIRC Alias To Clear All Html Codes. This alias called $nohtml.

When we do a script using socket, and we make the sockread into a webpage source, we oftenly need the only data after the html codes. So, this is one of the solution.

We all know that in mirc, the character of 32, or $chr(32) represent space. You may change the $chr(32) into $null, if you do not want the result data array with space. 

We have the simple addon for character. Refer here

Below is the script.


alias nohtml {
  var %x, %i = $regsub($1-,/(^[^<]*>|<[^>]*>|<[^>]*$)/g,$chr(32),%x), %x = $remove(%x,&nbsp;)
  return %x
}

That's All Folks..

What Is My Ip Address. mIRC Client Script With Socket Using whatismyipaddress.com

What Is My Ip Address. mIRC Client Script With Socket Using whatismyipaddress.com 

As we know, in mirc, there is a function called $sock or /sockwrite. So, below is the simple example for the chatter to know the current using ip.

You may change the echo -a  command to msg it to channel.

echo -a => Will return the IP result into your active window.
msg #mircop => Will return the IP result into channel #mircop.

 

Below is the script.

alias whatismyip {
  var %web whatismyipaddress.com
  var %port 443
  if ($sock(whatismyip)) sockclose whatismyip
  sockopen -e whatismyip %web %port
}

on *:sockopen:whatismyip: {
  if ($sockerr > 0)  { echo -a Sock Error! }
  Sockwrite -n $sockname GET / HTTP/1.0
  sockwrite -n $sockname User-Agent: Mozilla
  Sockwrite -n $sockname Host: whatismyipaddress.com
  Sockwrite -n $sockname $crlf
  Sockwrite -n $sockname $crlf
}

on *:sockread:whatismyip: {
  var %tmp
  sockread %tmp
  if (<strong>IPv4:</strong> isin %tmp) { echo -a $nohtml(%tmp)  }
  if (<strong>IPv6:</strong> isin %tmp) { echo -a $nohtml(%tmp)  }
}

To run the script, open mirc client and then do command /whatismyip

That's All Folks!!

Sunday 22 February 2015

How to Upload/Download Any File To/From Any Server Using Windows Command Line Working With Batch File



Windows has included batch files since before it existed… Batch files are really old! Old or not, I still could help us to automate common tasks. One common task is uploading files to a remote FTP server. 

Requirements:

  1. Must have ftp account (username and password, and ftp server address)
  2. Must know the filename that you wanna download/upload

Steps:
  1. Copy the codes below
  2. Open a notepad and paste into the notepad
  3. Save it as .bat in C:\ drive (Example: upanddown.bat)
@echo off
echo user %1> ftpcmd.dat
echo %2>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo %3 %4>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat %5
del ftpcmd.dat

Do you understand?? Let's explain. 
%1: The FTP account username
%2: The FTP account password
%3: What do you want, download or upload (Put for upload. Get for download)
%4: The filename that you wanna download/upload to a server
%5: The FTP server address

Ok. Now, let say..
Your FTP account username: mircop
Your FTP account password: mircop1234
You wanna: download
You wanna get filename: test.txt
Your FTP aserver address: ftp.mircop.com

Now, open a command prompt. In the command prompt, type with a single line as below.

upanddown mircop mircop1234 get test.txt ftp.mircop.com
You will see in the command prompt box as below

C:\>upandown mircop mircop1234 get test.txt
Connected to ftp.mircop.com.
220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 1 of 50 allowed.
220-Local time is now 11:33. Server port: 21.
220-This is a private system - No anonymous login
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
ftp> user mircop
331 User mircop OK. Password required
230 OK. Current restricted directory is /
ftp> bin
200 TYPE is now 8-bit binary
ftp> get test.txt
200 PORT command successful
150-Connecting to port 3265
150 6.0 kbytes to download
226-File successfully transferred
226 0.000 seconds (measured here), 56.69 Mbytes per second
ftp: 6122 bytes received in 0.01Seconds 408.13Kbytes/sec.
ftp> quit
221-Goodbye. You uploaded 0 and downloaded 6 kbytes.
221 Logout.

C:\>

Sunday 15 February 2015

How to Automate FTP to Download a File From a Server Using Windows Command Line Working With Batch File



Windows has included batch files since before it existed… Batch files are really old! Old or not, I still could help us to automate common tasks. One common task is uploading files to a remote FTP server. 

Requirements == Must have ftp account (username and password)

Steps (Syntax):
  1. Copy the codes below
  2. Open a notepad and paste into the notepad
  3. Change the parameter.. (FTPUsername, FTPPass, FTPServer, FTPWork, Filename)
  4. Save it as .bat (Example: downloadfile.bat)
@echo off
echo user FTPUsername> ftpcmd.dat
echo FTPPAss>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo FTPWork Filename>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat FTPServer
del ftpcmd.dat

Do you understand?? Let's explain. Let say..

FTPUsername: mircop
FTPPass: mircop1234
FTPWork: get (Get is for download)
Filename: test.txt (You have to create test.txt for dummy try only. The filename is the filename that you wanna upload/download)
FTPServer: ftp.mircop.com

THIS IS THE CODE CREATED FOR ABOVE EXAMPLE (USING PUT, MEANS THAT UPLOAD)

@echo off
echo user mircop> ftpcmd.dat
echo mircop1234>> ftpcmd.dat
echo bin>> ftpcmd.dat
echo get test.txt>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat ftp.mircop.com
del ftpcmd.dat
When you double click the batch file, it will shown as below in a prompt box

Connected to ftp.mircop.com.
220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 1 of 50 allowed.
220-Local time is now 10:19. Server port: 21.
220-This is a private system - No anonymous login
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
ftp> user mircop
331 User mircop OK. Password required
230 OK. Current restricted directory is /
ftp> bin
200 TYPE is now 8-bit binary
ftp> get test.txt
200 PORT command successful
150-Connecting to port 2048
150 6.0 kbytes to download
226-File successfully transferred
226 0.000 seconds (measured here), 49.47 Mbytes per second
ftp: 6122 bytes received in 0.00Seconds 6122000.00Kbytes/sec.
ftp>quit

EXTRA INFORMATION:
1. The batch file uses the “echo” command to send text to the ftp server as if you had typed it. In the middle of the file you can add extra commands before the quit commands, potentionally a change directory command:

echo cd /pathname/>>ftpcmd.dat