Latest Entries »

Making an alias command permanent in unix/linux


You would love to read:

How to work with alias command in unix?

Finding a file with its name in unix/linux?

____________________________________________________________________________________________

In order to make a alias shortcut permanent you need to make that entry into the .profile file of your home directory.

to find out the file go to your home directory and type
$ ls -latr

This command will show all hidden files (.profile is also a hidden file)finding .profile file

Then edit the file using vi editor i.e.
$ vi .profile

vi entry
Make the desired entries and save the file , same can be seen in below screenshots.

Then just restart your system , to let the .profile execute and make your shortcuts permanent 🙂 🙂


It can be quite interesting to work in linux through alias command , you can create some crazy names for big commands or just shorten some big paths to some memorable words.

Just use the alias command to do that:

SYNTAX:  $ alias myfolder=”cd /home/deepak/abcd/dd/erfd”

and now when you gonna type myfolder you will reach to the cd /home/deepak/abcd/dd/erfd path.

CONS: It reamins active till that session and so are temporary.

PROS: can be made permamnent for a unix /linux machine if the same whole command is added to the .profile file of a user and then a restart to execute that file and make our alias works forever 🙂

HOW TO MAKE AN ENTRY IN .PROFILE FILE ? WATCH OUT OUR NEXT POST !!

alias creation in unix


Looking for a way to find out a file in a unix/linux box , you just need the exact file name with proper case and that’s it .

Use below command and enoy!!

Find . -name “name_of_file.doc”

here . represents the loaction from where it will search , if not at all sure you can use from / too i.e.

Find / -name “name_of_file.doc”

Simple Login Program in C#.NET


ASPX PAGE:

<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”Default.aspx.cs” Inherits=”_Default” %>

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;

<html xmlns=”http://www.w3.org/1999/xhtml”&gt;
<head runat=”server”>
    <title></title>
</head>
<body>
    <form id=”form1″ runat=”server”>
    <div>
        <asp:Label ID=”Label1″ runat=”server” Text=”User Name”></asp:Label>
<asp:TextBox ID=”UserNameTextBox” runat=”server”></asp:TextBox>
        <br />
        <asp:Label ID=”Label2″ runat=”server” Text=”Password”></asp:Label>
        <asp:TextBox ID=”PasswordTextBox” runat=”server”></asp:TextBox>
        <br />
        <br />
        <asp:Button ID=”SubmittButton” runat=”server” onclick=”SubmittButton_Click” Text=”Submitt” />
        <asp:Label ID=”ResultLabel” runat=”server”></asp:Label>
    </div>
    </form>
</body>
</html>

ASPX.CS PAGE:

using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void SubmittButton_Click(object sender, EventArgs e)
    {
        SqlConnection con = new SqlConnection(“Server=DEEPAK-PC;Database=Practice;trusted_connection=true”);
        SqlCommand cmd = new SqlCommand(“CheckForLogin”, con);
        con.Open();
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.AddWithValue(“@UserName”, UserNameTextBox.Text);
        cmd.Parameters.AddWithValue(“@Password”, PasswordTextBox.Text);
        int res = Convert.ToInt32(cmd.ExecuteScalar());
        if (res == 1)
            ResultLabel.Text = “Success”;
        else
            ResultLabel.Text = “Fail”;

    }
}

DATABASE CODING:

–To create table

Create table Login
(
UserName varchar(20),
Password varchar(20)
)

–To view Table

select * from Login

–To Insert value in table

insert into Login values(‘deepak’,’DEEPAK’)

–To create procedure
create proc CheckForLogin
(@UserName varchar(20), @Password varchar(20))
as
begin
select count(*) from Login where Username=@UserName and Password=@Password
end


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data;

public partial class Department : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

//to populate the country name in dropdown
        if (!IsPostBack)
        {

            SqlConnection deptConnection = new SqlConnection(“Server=.;Database=Login;trusted_connection=true”);
            SqlCommand deptCommand = new SqlCommand(“Select * from Country”, deptConnection);           //Country is a table
            deptConnection.Open();
            SqlDataReader reader = deptCommand.ExecuteReader();
            DLocationDropDownList.DataSource = reader;
            DLocationDropDownList.DataTextField = “CountryName”;
            DLocationDropDownList.DataValueField = “CountryId”;
            DLocationDropDownList.DataBind();

        }
        

    }
    protected void AddDeptButton_Click(object sender, EventArgs e)
    {
        SqlConnection deptConnection = new SqlConnection(“Server=.;Database=Login;trusted_connection=true”);
        SqlCommand addcmd = new SqlCommand(“AddDept”, deptConnection);
        addcmd.CommandType = CommandType.StoredProcedure;
        deptConnection.Open();
        SqlParameter returnParameter = addcmd.Parameters.Add(“@result”, SqlDbType.Int);
        returnParameter.Direction = ParameterDirection.ReturnValue;
        addcmd.Parameters.AddWithValue(“@DepartmenttName”, DNameTextBox.Text);
        addcmd.Parameters.AddWithValue(“@CountryId”, DLocationDropDownList.SelectedValue);
        addcmd.Parameters.AddWithValue(“@Discription”, DiscriptiomnTextBox.Text);
      
        addcmd.ExecuteNonQuery();
        ResultLabel.Text = addcmd.Parameters[“@result”].Value.ToString();
   
    }
    protected void CancelButton_Click(object sender, EventArgs e)
    {
        Response.Redirect(“Department.aspx”);
    }

    protected void DLocationDropDownList_SelectedIndexChanged(object sender, EventArgs e)
    {

    }
}


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;

namespace ADODOTNET
{
    class Program
    {
        static void Main(string[] args)
        {
            //SqlConnection northconnection=null;
            //SqlCommand Hellocmd = null;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Hellocmd = new SqlCommand(“Hello”, northconnection);
            //    Hellocmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = Hellocmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;

            //    northconnection.Open();
            //    int x = Hellocmd.ExecuteNonQuery();         //any reader or scalar , all 3 allowed
            //    Console.WriteLine(Hellocmd.Parameters[“@ret”].Value);
            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand HelloNamecmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    HelloNamecmd = new SqlCommand(“HelloName”, northconnection);
            //    HelloNamecmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = HelloNamecmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;
            //    Console.WriteLine(“enter a name”);
            //    String nam = Console.ReadLine();
            //    HelloNamecmd.Parameters.AddWithValue(“@name”,nam);

            //    northconnection.Open();
            //    int x = HelloNamecmd.ExecuteNonQuery();         
            //    Console.WriteLine(HelloNamecmd.Parameters[“@ret”].Value);
            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand HelloNamecmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    HelloNamecmd = new SqlCommand(“HelloAge”, northconnection);
            //    HelloNamecmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = HelloNamecmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;
            //    Console.WriteLine(“enter a name”);
            //    String nam = Console.ReadLine();
            //    HelloNamecmd.Parameters.AddWithValue(“@name”, nam);
            //    Console.WriteLine(“enter the age”);
            //    int age = Convert.ToInt32(Console.ReadLine());
            //    HelloNamecmd.Parameters.AddWithValue(“@age”, age);

            //    northconnection.Open();
            //    int x = HelloNamecmd.ExecuteNonQuery();
            //    Console.WriteLine(HelloNamecmd.Parameters[“@ret”].Value);
            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“EmployeeDetails”, northconnection);
            //    Empcmd.CommandType = CommandType.StoredProcedure;

            //    Console.WriteLine(“enter employee number”);
            //    String empno = Console.ReadLine();
            //    Empcmd.Parameters.AddWithValue(“@empId”, empno);

            //    northconnection.Open();
            //    SqlDataReader reader = Empcmd.ExecuteReader();

            //    while (reader.Read())
            //    {
            //        Console.WriteLine(reader[0].ToString() + reader[1].ToString() + reader[2].ToString() + reader[3].ToString());
            //    }

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“Empdetail”, northconnection);
            //    Empcmd.CommandType = CommandType.StoredProcedure;

            //    Console.WriteLine(“enter employee number”);
            //    String empno = Console.ReadLine();
            //    Empcmd.Parameters.AddWithValue(“@empId”, empno);

            //    northconnection.Open();
            //    SqlDataReader reader = Empcmd.ExecuteReader();

            //    while (reader.Read())
            //    {
            //        Console.WriteLine(reader[0].ToString() + reader[1].ToString() + reader[2].ToString() + reader[3].ToString());
            //    }

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“AddDept”, northconnection);
            //    Empcmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = Empcmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;

            //    northconnection.Open();
            //    int x=Empcmd.ExecuteNonQuery();
            //    Console.WriteLine(Empcmd.Parameters[“@ret”].Value);

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“ModifyEmployee”, northconnection);
            //    Empcmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = Empcmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;
            //    Console.WriteLine(“enter the employee id whose name need to change”);
            //    int employeeid = Convert.ToInt32(Console.ReadLine());
            //    Empcmd.Parameters.AddWithValue(“@empId”, employeeid);

            //    Console.WriteLine(“enter the name you want to enter”);
            //    String nam = Console.ReadLine();
            //    Empcmd.Parameters.AddWithValue(“@fname”, nam);

            //    northconnection.Open();
            //    int x = Empcmd.ExecuteNonQuery();
            //    Console.WriteLine(Empcmd.Parameters[“@ret”].Value);

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“RemoveEmployee”, northconnection);
            //    Empcmd.CommandType = CommandType.StoredProcedure;

            //    SqlParameter returnParameter = Empcmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;
            //    Console.WriteLine(“enter the employee id whose record need to be deleted”);
            //    int employeeid = Convert.ToInt32(Console.ReadLine());
            //    Empcmd.Parameters.AddWithValue(“@empId”, employeeid);

            //    northconnection.Open();
            //    int x = Empcmd.ExecuteNonQuery();
            //    Console.WriteLine(Empcmd.Parameters[“@ret”].Value);

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}
            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“Select * from Employee”, northconnection);

            //    northconnection.Open();
            //    SqlDataReader reader = Empcmd.ExecuteReader();

            //    while (reader.Read())
            //    {
            //        Console.WriteLine(reader[0].ToString() + reader[1].ToString() + reader[2].ToString() + reader[3].ToString());
            //    }

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();

            //}
            //……………………………………………………………………………………………
            //……………………………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlCommand Empcmd;
            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    Empcmd = new SqlCommand(“insert into Employee values (”  , northconnection);

            //    SqlParameter returnParameter = Empcmd.Parameters.Add(“@ret”, SqlDbType.Int);
            //    returnParameter.Direction = ParameterDirection.ReturnValue;

            //    northconnection.Open();
            //    int x = Empcmd.ExecuteNonQuery();
            //    Console.WriteLine(Empcmd.Parameters[“@ret”].Value);

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //finally
            //{
            //    northconnection.Close();
            //}

            //Disconnected starts here……………………………………………………………

            //SqlConnection northconnection = null;
            //SqlDataAdapter empadapdter = null;

            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    empadapdter = new SqlDataAdapter(“select * from Employee”, northconnection);
            //    DataSet ds = new DataSet();
            //    empadapdter.Fill(ds, “Employeenew”); // any name that be in cache

            //    foreach (DataColumn Column in ds.Tables[0].Columns)
            //    {
            //        Console.Write(Column.ColumnName);
            //    }

            //    foreach (DataRow Row in ds.Tables[0].Rows)
            //    {
            //        Console.WriteLine(Row[0].ToString() + Row[1].ToString() + Row[2].ToString() + Row[3].ToString());
            //    }

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //……………………………………………………………………………
            //……………………………………………………………………………

            //SqlConnection northconnection = null;
            //SqlDataAdapter empadapdter = null;

            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    empadapdter = new SqlDataAdapter(“select * from Employee”, northconnection);
            //    DataSet ds = new DataSet();
            //    empadapdter.Fill(ds, “Employeenew”); // any name that be in cache
            //    SqlCommandBuilder builder = new SqlCommandBuilder(empadapdter);

            //    Console.WriteLine(“enter the first name that u want to update”);
            //    String name = Console.ReadLine();

            //    Console.WriteLine(ds.Tables[0].Rows[2][“emp_fname”]= name);

            //    foreach (DataColumn Column in ds.Tables[0].Columns)
            //    {
            //        Console.Write(Column.ColumnName);
            //    }

            //    foreach (DataRow Row in ds.Tables[0].Rows)
            //    {
            //        Console.WriteLine(Row[0].ToString() + Row[1].ToString() + Row[2].ToString() + Row[3].ToString());
            //    }

            //    empadapdter.Update(ds, “Employeenew”);

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //……………………………………………………………………………
            //…………………………..prog 3………………………………

            //SqlConnection northconnection = null;
            //SqlDataAdapter empadapdter = null;

            //try
            //{
            //    northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
            //    empadapdter = new SqlDataAdapter(“select * from Employee”, northconnection);
            //    DataSet ds = new DataSet();
            //    empadapdter.Fill(ds, “Employeenew”); // any name that be in cache
                

            //    foreach (DataColumn Column in ds.Tables[0].Columns)
            //    {
            //        Console.Write(Column.ColumnName);
            //    }

            //    foreach (DataRow Row in ds.Tables[0].Rows)
            //    {
            //        if (Row[3].ToString() == “d3”)
            //        {
            //            Row[1] = Row[1].ToString() + Row[3].ToString();
            //        }

            //        Console.WriteLine(Row[0].ToString() + Row[1].ToString() + Row[2].ToString() + Row[3].ToString());
            //    }

                

            //}

            //catch (Exception e)
            //{
            //    Console.WriteLine(e.Message);
            //}

            //……………………………………………………………………………
            //…………………………..CALLING A PROCEDURE………………………………

            SqlConnection northconnection = null;
            SqlDataAdapter empadapdter = null;
            SqlCommand Empcmd = null;

            try
            {
                northconnection = new SqlConnection(“Server=LOCALHOST;Database = DAY1;trusted_connection = true”);
                empadapdter = new SqlDataAdapter(“select * from Department”, northconnection);
                Empcmd = new SqlCommand(“AddDept”, northconnection);
                Empcmd.CommandType = CommandType.StoredProcedure;

                DataSet ds = new DataSet();
                empadapdter.Fill(ds, “Employeenew”);
                SqlCommandBuilder builder = new SqlCommandBuilder(empadapdter);

                foreach (DataColumn Column in ds.Tables[0].Columns)
                {
                    Console.Write(Column.ColumnName);
                }

                foreach (DataRow Row in ds.Tables[0].Rows)
                {
                    Console.WriteLine(Row[0].ToString() + Row[1].ToString() + Row[2].ToString());
                }

                empadapdter.Update(ds, “Employeenew”);
            }

            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }

        }
    }

}

Gangnam style facebook chat code smiley


Copy and paste in facebook chat box :

[[534189913290846]] [[534189889957515]] [[534189896624181]]
[[534189893290848]] [[534189906624180]] [[534190003290837]]
[[534190006624170]] [[534190016624169]] [[534189999957504]]
[[534190009957503]] [[534190159957488]] [[534190183290819]]
[[534190176624153]] [[534190179957486]] [[534190163290821]]
[[534190319957472]] [[534190309957473]] [[534190306624140]]
[[534190323290805]] [[534190313290806]] [[534190559957448]]
[[534190566624114]] [[534190556624115]]

Do comment which smiley you want next!!!

Create any 10 facebook chat smileys at just $1


We the team of engineer’s world are coming with a super offer this new year , just in 1$ get your customized facebook chat smiley.
Just mail your any 10 photographs to depk1990@gmail.com and we will send you the account details where money need to be transferred and within a hour we will send you the code.

just for reference , below code gives my picture as a chat smiley:

[[351960788243608]] [[351960784910275]] [[351960781576942]]
[[351960778243609]] [[351960774910276]] [[351960871576933]]
[[351960884910265]] [[351960888243598]] [[351960878243599]]
[[351960901576930]] [[351961041576916]] [[351961048243582]]
[[351961044910249]] [[351961051576915]] [[351961061576914]]
[[351961191576901]] [[351961188243568]] [[351961194910234]]

new smiley

New Stylish letters for facebook chat : 2013


Grab a copy:

[[107015582669715]] = A
[[116067591741123]] = B
[[115602405121532]] = C
[[112542438763744]] = D
[[115430438474268]] = E
[[109225112442557]] = F
[[111532845537326]] = G
[[111356865552629]] = H
[[109294689102123]] = R
[[115636698451811]] = J
[[116651741681944]] = K
[[115807951764667]] = L
[[106596672714242]] = M
[[108634132504932]] = N
[[116564658357124]] = O
[[111669128857397]] = P
[[107061805996548]] = Q
[[106699962703083]] = R
[[115927268419031]] = S
[[112669162092780]] = T
[[108983579135532]] = U
[[107023745999320]] = V
[[106678406038354]] = W
[[116740548336581]] = X
[[112416755444217]] = Y
[[266247740097586]] = Z


Below are the new and recent codes use them and post in comments how amazing was using them :

abcd

Bob Esponja

[[200263193396380]] [[200263203396379]] [[200263223396377]] [[200263230063043]] [[200263243396375]]
[[200263253396374]] [[200263266729706]] [[200263286729704]] [[200263300063036]] [[200263306729702]]
[[200263313396368]] [[200263323396367]] [[200263340063032]] [[200263360063030]] [[200263370063029]]
[[200263390063027]] [[200263413396358]] [[200263423396357]] [[200263433396356]] [[200263456729687]]
[[200263473396352]] [[200263503396349]] [[200263516729681]] [[200263530063013]] [[200263183396381]]

Forever Alone

[[200269326729100]] [[200269346729098]] [[200269363395763]] [[200269386729094]] [[200269403395759]]
[[200269433395756]] [[200269450062421]] [[200269470062419]] [[200269483395751]] [[200269500062416]]
[[200269516729081]] [[200269533395746]] [[200269550062411]] [[200269563395743]] [[200269576729075]]
[[200269593395740]] [[200269616729071]] [[200269630062403]] [[200269640062402]] [[200269653395734]]
[[200269680062398]] [[200269690062397]] [[200269696729063]] [[200269710062395]] [[200269306729102]]

Yaog Ming

[[200274983395201]] [[200274996728533]] [[200275010061865]] [[200275020061864]] [[200275030061863]]
[[200275046728528]] [[200275063395193]] [[200275076728525]] [[200275093395190]] [[200275100061856]]
[[200275113395188]] [[200275126728520]] [[200275136728519]] [[200275153395184]] [[200275166728516]]
[[200275180061848]] [[200275193395180]] [[200275206728512]] [[200275220061844]] [[200275230061843]]
[[200275240061842]] [[200275256728507]] [[200275266728506]] [[200275280061838]] [[200274976728535]]

Okay

[[200299000059466]] [[200299013392798]] [[200299043392795]] [[200299053392794]] [[200299066726126]]
[[200299076726125]] [[200299103392789]] [[200299126726120]] [[200299136726119]] [[200299150059451]]
[[200299176726115]] [[200299193392780]] [[200299203392779]] [[200299220059444]] [[200299233392776]]
[[200299256726107]] [[200299276726105]] [[200299300059436]] [[200299333392766]] [[200299346726098]]
[[200299360059430]] [[200299383392761]] [[200299390059427]] [[200299403392759]] [[200298986726134]]

Gordo Friki

[[200311006724932]] [[200311013391598]] [[200311023391597]] [[200311033391596]] [[200311043391595]]
[[200311056724927]] [[200311063391593]] [[200311083391591]] [[200311093391590]] [[200311106724922]]
[[200311116724921]] [[200311140058252]] [[200311150058251]] [[200311173391582]] [[200311190058247]]
[[200311200058246]] [[200311210058245]] [[200311226724910]] [[200311236724909]] [[200311253391574]]
[[200311263391573]] [[200311270058239]] [[200311283391571]] [[200311293391570]] [[200310990058267]]

Fuuuuuuuuuuuckkkkkkkkkkkkk

[[200320113390688]] [[200320126724020]] [[200320136724019]] [[200320150057351]] [[200320170057349]]
[[200320186724014]] [[200320196724013]] [[200320216724011]] [[200320233390676]] [[200320250057341]]
[[200320266724006]] [[200320280057338]] [[200320313390668]] [[200320326724000]] [[200320343390665]]
[[200320356723997]] [[200320376723995]] [[200320390057327]] [[200320403390659]] [[200320413390658]]
[[200320440057322]] [[200320463390653]] [[200320476723985]] [[200320496723983]] [[200320093390690]]

 Mother Of God

[[200332460056120]] [[200332473389452]] [[200332480056118]] [[200332493389450]] [[200332510056115]]
[[200332516722781]] [[200332526722780]] [[200332550056111]] [[200332566722776]] [[200332583389441]]
[[200332590056107]] [[200332603389439]] [[200332610056105]] [[200332616722771]] [[200332626722770]]
[[200332633389436]] [[200332643389435]] [[200332680056098]] [[200332713389428]] [[200332730056093]]
[[200332740056092]] [[200332756722757]] [[200332770056089]] [[200332776722755]] [[200332446722788]]

Calamardo

[[200347806721252]] [[200347816721251]] [[200347836721249]] [[200347843387915]] [[200347853387914]]
[[200347863387913]] [[200347876721245]] [[200347896721243]] [[200347906721242]] [[200347913387908]]
[[200347923387907]] [[200347940054572]] [[200347963387903]] [[200347990054567]] [[200348013387898]]
[[200348026721230]] [[200348040054562]] [[200348050054561]] [[200348060054560]] [[200348083387891]]
[[200348103387889]] [[200348116721221]] [[200348126721220]] [[200348140054552]] [[200347773387922]]

Patricio

[[200601093362590]] [[200601100029256]] [[200601113362588]] [[200601130029253]] [[200601140029252]]
[[200601160029250]] [[200601180029248]] [[200601200029246]] [[200601213362578]] [[200601226695910]]
[[200601236695909]] [[200601250029241]] [[200601270029239]] [[200601290029237]] [[200601300029236]]
[[200601323362567]] [[200601333362566]] [[200601356695897]] [[200601366695896]] [[200601383362561]]
[[200601406695892]] [[200601420029224]] [[200601436695889]] [[200601450029221]] [[200601070029259]]

Mentira

[[200609570028409]] [[200609586695074]] [[200609606695072]] [[200609623361737]] [[200609643361735]]
[[200609653361734]] [[200609670028399]] [[200609680028398]] [[200609700028396]] [[200609710028395]]
[[200609716695061]] [[200609753361724]] [[200609766695056]] [[200609803361719]] [[200609820028384]]
[[200609846695048]] [[200609880028378]] [[200609903361709]] [[200609923361707]] [[200609946695038]]
[[200609983361701]] [[200609993361700]] [[200610033361696]] [[200610053361694]] [[200609553361744]]

Logo del Real Madrid

[[200623286693704]] [[200623306693702]] [[200623323360367]] [[200623350027031]] [[200623376693695]]
[[200623390027027]] [[200623406693692]] [[200623416693691]] [[200623433360356]] [[200623453360354]]
[[200623466693686]] [[200623486693684]] [[200623513360348]] [[200623556693677]] [[200623583360341]]
[[200623600027006]] [[200623613360338]] [[200623630027003]] [[200623636693669]] [[200623656693667]]
[[200623666693666]] [[200623686693664]] [[200623703360329]] [[200623723360327]] [[200623266693706]]

Logo Vans

[[200636403359059]] [[200636403359059]] [[200636403359059]] [[200636403359059]] [[200636403359059]]
[[200636490025717]] [[200636506692382]] [[200636513359048]] [[200636530025713]] [[200636556692377]]
[[200636580025708]] [[200636610025705]] [[200636640025702]] [[200636650025701]] [[200636670025699]]
[[200636690025697]] [[200636696692363]] [[200636706692362]] [[200636730025693]] [[200636743359025]]
[[200636783359021]] [[200636783359021]] [[200636783359021]] [[200636783359021]] [[200636783359021]]

Corazon

[[200723633350336]] [[200723666683666]] [[200723696683663]] [[200723740016992]] [[200723780016988]]
[[200723806683652]] [[200723830016983]] [[200723920016974]] [[200723963350303]] [[200724050016961]]
[[200724106683622]] [[200724150016951]] [[200724196683613]] [[200724276683605]] [[200724390016927]]
[[200724493350250]] [[200724513350248]] [[200724546683578]] [[200724616683571]] [[200724706683562]]
[[200724750016891]] [[200724790016887]] [[200724833350216]] [[200724873350212]] [[200724946683538]]

Kity

[[200728970016469]] [[200728980016468]] [[200729010016465]] [[200729023349797]] [[200729040016462]]
[[200729073349792]] [[200729083349791]] [[200729110016455]] [[200729123349787]] [[200729133349786]]
[[200729143349785]] [[200729170016449]] [[200729186683114]] [[200729206683112]] [[200729230016443]]
[[200729243349775]] [[200729263349773]] [[200729293349770]] [[200729310016435]] [[200729333349766]]
[[200729346683098]] [[200729380016428]] [[200729406683092]] [[200729433349756]] [[200728946683138]]

 No Me Digas (meme)

[[200739853348714]] [[200739866682046]] [[200739880015378]] [[200739906682042]] [[200739930015373]]
[[200739936682039]] [[200739946682038]] [[200739956682037]] [[200739963348703]] [[200739996682033]]
[[200740020015364]] [[200740043348695]] [[200740060015360]] [[200740073348692]] [[200740090015357]]
[[200740123348687]] [[200740130015353]] [[200740143348685]] [[200740170015349]] [[200740176682015]]
[[200740190015347]] [[200740206682012]] [[200740220015344]] [[200740240015342]] [[200739836682049]]

True Fap Story

[[200747953347904]] [[200747993347900]] [[200748000014566]] [[200748006681232]] [[200748013347898]]
[[200748026681230]] [[200748040014562]] [[200748056681227]] [[200748080014558]] [[200748110014555]]
[[200748130014553]] [[200748146681218]] [[200748156681217]] [[200748173347882]] [[200748193347880]]
[[200748216681211]] [[200748240014542]] [[200748250014541]] [[200748260014540]] [[200748273347872]]
[[200748283347871]] [[200748303347869]] [[200748310014535]] [[200748323347867]] [[200747933347906]]

Poker Face

[[200756283347071]] [[200756293347070]] [[200756320013734]] [[200756340013732]] [[200756356680397]]
[[200756370013729]] [[200756386680394]] [[200756400013726]] [[200756416680391]] [[200756433347056]]
[[200756453347054]] [[200756470013719]] [[200756486680384]] [[200756503347049]] [[200756526680380]]
[[200756546680378]] [[200756556680377]] [[200756570013709]] [[200756576680375]] [[200756596680373]]
[[200756606680372]] [[200756606680372]] [[200756630013703]] [[200756643347035]] [[200756270013739]]

Eric De South Park

[[200834260005940]] [[200834280005938]] [[200834290005937]] [[200834306672602]] [[200834323339267]]
[[200834340005932]] [[200834353339264]] [[200834370005929]] [[200834383339261]] [[200834393339260]]
[[200834406672592]] [[200834436672589]] [[200834443339255]] [[200834453339254]] [[200834483339251]]
[[200834503339249]] [[200834513339248]] [[200834530005913]] [[200834543339245]] [[200834553339244]]
[[200834570005909]] [[200834586672574]] [[200834593339240]] [[200834600005906]] [[200834250005941]]

Fuck Yeah

[[201144386641594]] [[201144409974925]] [[201144426641590]] [[201144453308254]] [[201144466641586]]
[[201144473308252]] [[201144483308251]] [[201144496641583]] [[201144513308248]] [[201144526641580]]
[[201144536641579]] [[201144553308244]] [[201144576641575]] [[201144599974906]] [[201144609974905]]
[[201144629974903]] [[201144639974902]] [[201144673308232]] [[201144686641564]] [[201144706641562]]
[[201144716641561]] [[201144733308226]] [[201144753308224]] [[201144773308222]] [[201144369974929]]

Lol (meme)

[[201772106578822]] [[201772126578820]] [[201772136578819]] [[201772149912151]] [[201772159912150]]
[[201772183245481]] [[201772196578813]] [[201772209912145]] [[201772229912143]] [[201772246578808]]
[[201772256578807]] [[201772276578805]] [[201772283245471]] [[201772293245470]] [[201772309912135]]
[[201772323245467]] [[201772336578799]] [[201772369912129]] [[201772383245461]] [[201772409912125]]
[[201772423245457]] [[201772429912123]] [[201772446578788]] [[201772463245453]] [[201772483245451]]

Pato Lucas

[[347597938588031]] [[347599575254534]] [[347599701921188]] [[347599891921169]] [[347599811921177]]
[[347599891921169]] [[347599958587829]] [[347600028587822]] [[347600095254482]] [[347600221921136]]
[[347600308587794]] [[347600385254453]] [[347600478587777]] [[347600548587770]] [[347600688587756]]
[[347600768587748]] [[347600915254400]] [[347600988587726]] [[347601065254385]] [[347601158587709]]

Cara feliz

[[202523283170371]] [[202523309837035]] [[202523326503700]] [[202523343170365]] [[202523363170363]]
[[202523373170362]] [[202523389837027]] [[202523403170359]] [[202523416503691]] [[202523433170356]]
[[202523449837021]] [[202523459837020]] [[202523479837018]] [[202523496503683]] [[202523509837015]]
[[202523519837014]] [[202523539837012]] [[202523556503677]] [[202523569837009]] [[202523576503675]]
[[202523593170340]] [[202523613170338]] [[202523623170337]] [[202523639837002]] [[202523653170334]]

Me gusta (meme)

[[10150425979186326]] [[10150425979236326]] [[10150425979391326]] [[10150425979441326]] [[10150425979466326]] [[10150425979526326]]
[[10150425979626326]] [[10150425979671326]] [[10150425979186326]] [[10150425979186326]] [[10150425979186326]] [[10150425979986326]] [[10150425980006326]]
[[10150425980066326]] [[10150425980101326]] [[10150425980231326]] [[10150425980436326]] [[10150425980451326]] [[10150425980506326]] [[10150425980561326]]
[[10150425980646326]] [[10150425980686326]] [[10150425980756326]] [[10150425980831326]] [[10150425980896326]] [[10150425981096326]] [[10150425981191326]]
[[10150425981251326]] [[10150425981306326]] [[10150425981366326]] [[10150425981406326]] [[10150425981466326]] [[10150425981516326]] [[10150425981591326]]
[[10150425981651326]] [[10150425981796326]] [[10150425981816326]] [[10150425981876326]] [[10150425981906326]] [[10150425981966326]] [[10150425982006326]]
M E [[10150425982066326]] [[10150425982101326]] [[10150425982131326]] [[10150425982196326]] [[10150425982261326]]

Bugs Bunny bebe[[274404645974802]] [[274404649308135]] [[274404659308134]] [[274404655974801]]
[[274404652641468]] [[274404775974789]] [[274404779308122]] [[274404782641455]]
[[274404772641456]] [[274404769308123]] [[274404869308113]] [[274404875974779]]
[[274404865974780]] [[274404879308112]] [[274404872641446]] [[274404959308104]]
[[274404969308103]] [[274404965974770]] [[274404962641437]] [[274404972641436]]
[[274405059308094]] [[274405065974760]] [[274405069308093]] [[274405062641427]]abcdsecret emoticons facebook facebook cheat codes for chat new smileys for facebook hidden smileys facebook new smiles for facebook chat new smiley facebook 2012