RADIO ONLINE (Click radio icon to listen)

Showing posts with label Tips & Tricks. Show all posts
Showing posts with label Tips & Tricks. Show all 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 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

Sunday 8 February 2015

How to Automate FTP to Upload a File To 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: uploadfile.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: put  (Put is for upload)
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 put 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> put test.txt
200 PORT command successful
150 Connecting to port 2045
226 File successfully transferred
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

Sunday 1 February 2015

How to Download and Upload Files using FTP Command Line

How to Download and Upload Files using FTP Command Line
How to Download and Upload Files using FTP Command Line

FTP (File Transfer Protocol) is the most popular protocol to transfer files (download and upload) from one system to other system. It provides the fastest way transfer files. There are many application available on Linux and windows to FTP services like vsftpd, proftpd for Linux, FileZilla Server for windows.
There are various ways to connect to ftp server, Also you can find multiple free tools on internet to work with ftp. But system admins know the power of command line. This article will help you to how to connect to FTP server using command line and Download and UploadFiles using FTP protocol between FTP server local system.

1. Connect to FTP Server via Command Line

To connect to any FTP server from windows open its command prompt and for Linux open terminal window. Now you have required IP or Hostname of FTP server and login credentials to connect with specific user.
c:\> ftp ftp.tmspot.com
How to Download and Upload Files using FTP Command Line
Connect to FTP Server Via Command Line

2. Upload Single File to FTP Server

To upload file on FTP server use put command from ftp prompt. First navigate to desired directory on ftp server where to upload file and use following command. It will upload local system file c:\UploadFiles\file1.txt to uploads directory on ftp server.
ftp> cd www
ftp> put c:\UploadFiles\file1.txt
Upload Single File to FTP Server
Upload Single File to FTP Server

3. Upload Multiple Files to FTP Server

To upload multiple files to FTP server we use mput command from ftp prompt. We can specify wild card character to upload multiple files to server at a time. First navigate to desired directory on ftp server where to upload file and use following command. It will upload local system files with .txt extension in c:\UploadFiles\ directory to uploads directory on ftp server.
ftp> cd www
ftp> lcd c:\UploadFiles
ftp> put *.txt
Upload Multiple Files to FTP Server
Upload Multiple Files to FTP Server

4. Download Single File from FTP Server

To download file from FTP server, we use get command. Using that command we can download one time at a time. To download any file from ftp server, first login to your ftp server, navigate to directory and use following command to download
ftp> cd www
ftp> get file1.txt
Download Single File from FTP Server

5. Download Multiple Files from FTP Server

To download multiple files from FTP server, we use mget command. Using that command we can download more than one files at a time. To download multiple files specify wild card character for specify directory name do download all files from directory.
ftp> cd www
ftp> mget *.txt

Thursday 22 January 2015

List of DISKPART commands

List of DISKPART commands
List of DISKPART commands


DiskPart is one of the most powerful Windows commands. It allows you to accurately manage the partitions, resizing them, their assignment and their formatting. It can be incorporated into a script, and most importantly, may itself execute scripts. It is essential to restructure the USB key and is a formidable weapon to automate deployment of Windows on parking machines.


Before you can use DiskPart commands on a disk, partition, or volume, you must first list and then select the object to give it focus. When an object has focus, any DiskPart commands that you type act on that object.

You can list the available objects and determine an object's number or drive letter by using the list disk, list volume, and list partition commands. The list disk and list volume commands display all disks and volumes on the computer. However, the list partition command displays only partitions on the disk that have focus. When you use the list commands, an asterisk (*) appears next to the object with focus. You select an object by its number or drive letter, such as disk 0, partition 1, volume 3, or volume C.

Warning

The DISKPART command is for an informed public that already have a minimum knowledge about partitioning and formatting disks and the use of command-mode "command prompt". 

Misuse of this command can cause the loss of your data on your disks. We do not recommend beginners to use DISKPART. Most DiskPart functions are available as user-friendly Windows interface by clicking the right button on "My Computer" (or "Computer" on Vista) and selecting "Manage from the context menu" before selecting the module "Disk Management". 

DISKPART is present in XP, Vista and Windows 7. However, the XP version is more limited because it does not offer advanced features for resizing partitions, for example.

To start DISKPART, do the following:

- On Windows XP 
Go to Start> All Programs> Accessories 
Click Command Prompt. 

- For Windows Vista/Windows 7 
Go to Start> All Programs> Accessories 
Right click on the Command Prompt icon 
Select Run as administrator from the context menu.




Commands Focus (Select/List)

The DISKPART command uses mainly two types of commands:

- Those which specify the target or the scope of action: List, Help, Rem, Select, Exit
- Those that apply directly to the pre element: Active, Assign, Create, Extend, Shrink ...

Most commands work on the pre element, in other words, the element that has the focus. It is, in the controls, the selected disk, the volume selected, the selected partition.

The LIST command

They enable the list of disks, partitions and volumes:

LIST DISK
Gives the list of drives recognized by the system. The disc preceded by a "*" is the disk that currently has the Focus Diskpart.

LIST PARTITION
Gives a list of partitions on the disk that has the Focus

LIST VOLUME
Provides a list of all volumes (unit disc) declared in the system

The SELECT

They can change the "Focus" (ie the selected item).

SELECT DISK n
Select the disk that has the focus. The "n" is the disk number as given by the LIST DISK command.

SELECT PARTITION n
Select the partition that has the focus. The "n" is the partition number on the disk that has the focus and as indicated by the LIST PARTITION command

SELECT VOLUME l
Select the volume designated for a Focus. The parameter "l" is the letter assigned to the unit disc.

The capture demonstrates the combined use of the command LIST and SELECT.


Erase and repartition

The DISKPART commands make it possible to create and delete partitions. To do so, mainly 6 commands:

CLEAN
One of the most practical and most dangerous: it removes at once all the partitions on the selected disk.

CLEAN ALL
Equally dangerous, this command removes all of a sudden the selected disk partitions but also writes zero byte and every sector of the disk. Easy to completely erase a disk.

CREATE PARTITION PRIMARY size = n
Creates a primary partition the size defined by the "n".

CREATE EXTENDED PARTITION size = n
Creates an extended partition to the size defined by the "n".

CREATE PARTITION LOGICAL size = n
Creates a logical partition in the extended partition to the size defined by the "n".

DELETE PARTITION
Clears the partition that has the focus (be careful to check which partition is selected by a List Partition before running this command).

Example of implementation:

If you have a USB drive (we assume here Disc No. 3), you can have fun with the following sequence to erase everything and re-partitioning a primary partition of 1GB and a secondary logical partition on the rest of space disk:

LIST DISK
SELECT DISK 3
CLEAN
CREATE PARTITION PRIMARY size = 1000
CREATE PARTITION EXTENDED
CREATE PARTITION LOGICAL
RESCAN
LIST PARTITION 

Quote:
Note in passing the command RESCAN who force DISKPART to refresh the data and take into account the creation of disk partitions and previously realized.

Assign and resize volumes

DISKPART can assign letters to partitions of volumes, but also to remove those letters (which is to hide the Windows partition).

But above all DISKPART (Windows Vista and Windows 7) is used to resize partitions.

The instructions to know are:

ASSIGN LETTER = l
Assign selected volume (which has the focus) the letter indicated by the "l"

REMOVE LETTER = l
Remove the drive letter associated with the disk volume that has the focus. The command REMOVE/ALL deletes all the letters of all volumes (dangerous).

EXTEND Size=n
Extends the selected volume (the one that has the focus) by adding the size indicated by "n". The command only works on NTFS volumes

SHRINK QUERYMAX
Indicates how many megabytes the currently selected NTFS volume can be reduced (depending on its defragmentation and not his occupation)

SHRINK DESIRED MINIMUM = x = y
Reduces the disk at least the value "y", while trying to reach the value "x" if possible.

Example of use of commands

LIST DISK
SELECT DISK 3
CLEAN
CREATE PARTITION PRIMARY size = 1000
ASSIGN LETTER = G
FORMAT FS = NTFS QUICK
LIST VOLUME
SELECT VOLUME G
EXTEND size = 500
SHRINK QUERYMAX
SHRINK MINIMUM=500 DESIRED=800
LIST VOLUME


Quote:
Note in passing the command FORMAT which can format a partition.
Conversions and Details

DiskPart allows for all sorts of conversions volumes not always feasible since the Windows interface.

Orders for conversion

CONVERT MBR
Converts a basic GPT disk or dynamic to MBR classic disk

CONVERT GPT
Only 64 bits. Converts the selected MBR disk to GPT disk

CONVERT DYNAMIC
Convert a basic disk to dynamic disk (useful on servers in particular) without losing data

CONVERT BASIC
Convert a dynamic disk into basic disk. Beware, the disc must be empty of all data.

Ordering information

These commands display additional details on the disks, partitions and volumes.

DETAIL DISK
Detailed information of the disk that has the focus

DETAIL PARTITION
Detailed information of the partition that has the focus

DETAIL VOLUME
Detailed information of the volume that has the focus

Example:

LIST DISK
SELECT DISK 0
DETAIL DISK
SELECT PARTITION 1
DETAIL PARTITION
SELECT VOLUME C
DETAIL VOLUME



Other useful commands

Here are other commands to know:

?
Provides a list of all commands

HELP command
Explains the parameters of a command (example: HELP SHRINK)

EXIT
Quits DISKPART and returns to the command prompt classic

OFFLINE DISK
Met "offline" the current disc

ONLINE DISK
Reconnect the disk placed OFFLINE

ACTIVE
Because of the partition that has the Focus, the new boot partition (Active Partition)




Scripting

Diskpart supports scripted operations. To initiate a Diskpart script, use the diskpart /s script.txt command. You can script Diskpart on Windows XP, Windows 2000, Remote Installation Services (RIS) unattended install environments, or on the Windows Preinstall Environment (PE) for OEMs.

By default, Diskpart can quit command processing and return an error code if there is a problem in the script. To continue to run a script in this scenario, include the noerr parameter on the command. This parameter allows you to use a single script to delete all partitions on all data drives, regardless of the total number of drives. However, not all commands support the noerr parameter. Even if you use the noerr parameter, an error is always returned on command syntax errors.

The following list describes the error codes for Diskpart:
  • 0 - No error occurred. The entire script ran without failure.
  • 1 - A fatal exception occurred. There may be a serious problem.
  • 2 - The arguments specified on a Diskpart command line were incorrect.
  • 3 - Diskpart was unable to open the specified script or output file.
  • 4 - One of the services Diskpart uses returned a failure.
  • 5 - A command syntax error occurred. The script failed because an object was improperly selected or was invalid for use with that command.






It is true that running diskpart /s script.txt usually exits when errors occur and not all commands support the noerr parameter.
The workaround for this , as usually, is simple :
just run diskpart as follows: diskpart <script.txt
ét voila. Errors are ignored and script continues on next line.
I use it this way to make sure the CDROM drive (usually volume 0) gets assigned another drive letter than D , but on some hardware here, assigning it to letter "E:" gives an error about the disk not being empty or something.
I made the script do:


select volume 0
assign letter g
assign letter f
assign letter e


so it gets the lowest driveletter without erroring out....



Wednesday 14 January 2015

(Infographic) Complete List Size Image For Social Media in 2015

(Infographic) Complete List Size Image For Social Media in 2015
(Infographic) Complete List Size Image For Social Media in 2015

Each social media platform like Facebook twitter, google +, Instagram and others using the picture size vary. Sometimes quite confusing also to produce pictures for the use of social media. Of course, it's much easier if you have a complete guide to the sizes of the images used on every social media platform.

The good news! ConstantContact party has prepared an infographic that lists all sizes Latest images for each social media platform.

Without wasting time, let's look at the infographic. For your convenience store this information, do not forget to share at facebook / google + or pin the image in your pinterest.

(Infographic) Complete List Size Image For Social Media in 2015
(Infographic) Complete List Size Image For Social Media in 2015


Tuesday 13 January 2015

How To Set Different Number Page Styles In Different Page Using Sections

How To Set Different Number Pages In Different Sections


You can use different numbering formats in different parts of your document.

For example, maybe you want i, ii, iii numbering for the table of contents and introduction, and you want 1, 2, 3 numbering for the rest of the document, and then no page numbers for the index.

IMPORTANT    To use different numbering in different sections of your document, you need to make sure that the sections are not linked.


STEPS:



1. Click at the beginning of the page where you want to start, stop, or change the header, footer, or page numbering.

2. On the Page Layout tab, in the Page Setup group, click Breaks.

        page setup group

3. Under Section Breaks, click Next Page.

4. On the page that follows the section break, double-click in the header area or the footer area (near the top of the page or near the bottom of the page).
     This opens the Design tab under Header & Footer Tools.

5. On the Design tab, in the Navigation group, click Link to Previous to turn it off.
IMPORTANT    If your page number is in the header, be sure that you turn off linking for headers. If your page number is in the footer, be sure that you turn off linking for footers. Headers and footers are linked or unlinked separately.

6. To choose a numbering format or the starting number, click Page Number in the Header & Footer group, click Format Page Numbers, click the format that you want and the Start at number that you want to use, and then click OK.

7. To return to the body of your document, click Close Header and Footer on the Design tab (under Header & Footer Tools).

         Header and footer Close button

Monday 29 December 2014

How to install Eggdrop

How to install Eggdrop
How to install Eggdrop

Eggdrop is an IRC bot that runs on a server hosting Tool Command Language (TCL) scripts. It can be used for a variety of tasks including hosting a trivia script or any other useful scripts coded in TCL and loaded to the bot. To install eggdrop onto your server do the following:

Before we start if you have your own VPS you are required to install a tcl package. If you have just an ircd account with FuzzyHosts, this should already be done for you. So just skip this next bit onto the steps.

For VPS Users login to your vps as root and do the apropiate command listed below:
- for operating systems with aptitude such as debian based, including ubuntu: "apt-get install tcl8.5-dev"
- for operating systems such as RedHat, Fedora, CentOS: "yum install tcl8.5-dev"

How to install Eggdrop:
  1. Log into your shell using SSH/Putty
  2. Type "wget --no-check-certificate ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.21.tar.gz"
  3. Type "tar zxvf eggdrop1.6.21.tar.gz"
  4. Now type "cd eggdrop1.6.21" to move into the eggdrop folder
  5. Now type "./configure" to configure your eggdrop
  6. Now type "make config" to premake config
  7. Now type "make" to make the config
  8. Now type "make install DEST=~/eggdrop/" to make a folder name as "eggdrop" in your shell.
  9. YOU ARE DONE!!
You have now just installed your eggdrop in your chosen location. Well Done!!
The next job is to configure it.