Saturday, January 31, 2015

sxs_x64.rar

sxs_x64.rar

MD5: 02ad737142854f26c5ac2da5f120181d

CRC32: 9b8d62b5
 

Thursday, January 29, 2015

UpdateProgress

 < asp : UpdateProgress runat = " server " ID="updateProgressPopup" DisplayAfter="0">
           
               

src="../../Styles/img/loader.gif"
title="Elaboration In Progress.....   " />

                   

               
            < / ProgressTemplate >
        < /  asp  :   UpdateProgress>




        < asp : Update Panel ID = " upPopupMessage " runat  = " server" UpdateMode="Conditional">
            <
ContentTemplate>
                <
asp:Button ID  =    "Button1" runat="server" Text="Button" />
            </
ContentTemplate>
        < / asp : UpdatePanel>



.modal


    position:fixed;

    z-index:1001;

    height:100%;

    width:100%;

    top:0;

    background-color:Black;
   
    filter:alpha(opacity=60);

    opacity:0.6;

    -moz-opacity:0.8;

    left:0;
}

.centerLoader
{

    z-index: 1000;

    margin: 300px auto;

    padding: 10px;

    width: 130px;

    background-color: White;

    border-radius: 10px;

    filter: alpha(opacity=100);

    opacity: 1.0;

    -moz-opacity: 1;
}

.center img
{

    height: 128px;

    width: 128px;
}


Wednesday, January 28, 2015

DISM

DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:G:\sources\sxs

Tuesday, January 27, 2015

MapReduce HDFS


Hadoop ( Big Data Analytics Framework ) is a combination of parallel processing framework ( MapReduce ) and the file system HDFS ( Hadoop Distributed File Systems )

Unit

Unit    Value    Size


bit (b)    0 or 1    1/8 of a byte
byte (B)    8 bits    1 byte
kilobyte (KB)    1000^1 bytes    1,000 bytes
megabyte (MB)    1000^2 bytes    1,000,000 bytes
gigabyte (GB)    1000^3 bytes    1,000,000,000 bytes
terabyte (TB)    1000^4 bytes    1,000,000,000,000 bytes
petabyte (PB)    1000^5 bytes    1,000,000,000,000,000 bytes
exabyte (EB)    1000^6 bytes    1,000,000,000,000,000,000 bytes
zettabyte (ZB)    1000^7 bytes    1,000,000,000,000,000,000,000 bytes
yottabyte (YB)    1000^8 bytes    1,000,000,000,000,000,000,000,000 bytes

Monday, January 26, 2015

3.5 Service pack 1 (Full Package)






http://www.microsoft.com/en-nz/download/confirmation.aspx?id=25150

Big Data Analytics Framework

Big Data Analytics Framework

8



http://www.grecenter.org/wp/worldstoughestuniversity/

hadoop

hadoop

Saturday, January 24, 2015

Web Development using Eclipse



http://www.gulland.com/wp/?p=31

score



http://www.grecenter.org/wp/universitybasedongrescore/

Developing Web applications with Tomcat and Eclipse



http://www.ibm.com/developerworks/library/os-eclipse-tomcat/

IoT

IoT

.NET Framework 3.5 on Windows 8


For example, the .NET Framework 3.5 is not automatically installed with Windows 8 or Windows 8.1. To run apps that require the .NET Framework 3.5 on Windows 8 or later, you must enable version 3.5 on your computer. There are two ways you can do this: by installing or running an app that requires the .NET Framework 3.5 (that is, by installing the .NET Framework 3.5 on demand), or by enabling the .NET Framework 3.5 in Control Panel. Both options require an Internet connection.


https://msdn.microsoft.com/en-us/library/hh506443(v=vs.110).aspx



Friday, January 23, 2015

MS SQL JDBC

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.Statement;

public class ConnectMSSQLServer
{
   public void dbConnect(String db_connect_string,
            String db_userid,  String db_password)
   {
 
      try {
         Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
         Connection conn = DriverManager.getConnection(db_connect_string,
                  db_userid, db_password);
                
         System.out.println("connected");
        
         Statement statement = conn.createStatement();
        
         String queryString = "select * from sysobjects where type='u'";
        
         ResultSet rs = statement.executeQuery(queryString);
        
         while (rs.next()) {
            System.out.println(rs.getString(1));
         }
        
      } catch (Exception e) {
         e.printStackTrace();
      }
   }

   public static void main(String[] args)
   {
      ConnectMSSQLServer connServer = new ConnectMSSQLServer();
    
      connServer.dbConnect("jdbc:sqlserver://", "",
               "");
   }
}

16F877 component


Thursday, January 22, 2015

Internet of Things

OS

System: Contiki

System: TinyOS

System: RIOT OS

Platform

AMEE

Arkessa

IPv4 to IPv6  

16F877

diagram





16F877 c



/*  Name     : main.c
 *  Purpose  : Main file for blinking an LED with PIC16F877.
 */




#include



// Configuration word for PIC16F877
__CONFIG( FOSC_HS & WDTE_OFF & PWRTE_ON & CP_OFF & BOREN_ON
        & LVP_OFF & CPD_OFF & WRT_ON & DEBUG_OFF);

// Define LED pin

#define LED  RB0


// Define CPU Frequency


// This must be defined, if __delay_ms() or

// __delay_us() functions are used in the code
#define _XTAL_FREQ   20000000



void main(void)

{

    TRISB0 = 0;                   // Make RB0 pin output

    LED    = 0;                   // Make RB0 low

    while(1)
    {

        __delay_ms(500);       // Half sec delay

        LED = 0;               // LED off

        __delay_ms(500);       // Half sec delay

        LED = 1;               // LED on

    }
}

16F877




PIC16F877 LED Blinking Code


IDE

MPLABx

Compiler

http://www.microchip.com/pagehandler/en_us/devtools/mplabxc/


Device

C:\Program Files (x86)\Microchip\xc8\v1.33\bin\deviceSupport.xml

Wednesday, January 21, 2015

PIC16F877A

 MPLAB

To download MAPLAB IDE v8.85

Hi TECH C

To download Hi TECH C v9.83 (Can be used for PIC10, PIC12, PIC16)

To download Hi TECH C v9.80 (Can be used for PIC18)

http://www.ulozto.sk/xoMfeHaF/hi-tech-c-compiler-for-pic10-12-16-mcus-v9-83-rar


Proteus

To download Proteus v7.10



Friday, January 16, 2015

caviar

caviar

Sea

 if (travel.TransportType == InfoTransportType.Sea)

            {

                lblFlightNum.Visible = false;


                lblFlightPrefixNum.Visible = false;

                txtFlightNumber.Visible = false;

                txtFlightPrefixNum.Visible = false;

                lblAPL.Visible = false;

                lblAPD.Visible = false;

            }

Thursday, January 15, 2015

mplabx


IDE
http://www.microchip.com/pagehandler/en-us/family/mplabx/

Compiler
http://www.microchip.com/pagehandler/en_us/devtools/mplabxc/

Costus igneus

 Costus igneus


Common name

  Botanical name: - Costus igneus. Costus igneus common name is *Fiery Costus* or *Spiral Flag*, is a species of herbaceous plant in the Costaceae family.  Insulin plant (Costus igneus) common name in Hindi is keukand and in Gujarati - pakarmula.  In Marathi, Malayalam and Sanskrit is -  pushkarmula  and in Tamil is kostam
 
   Medicinal use

   In Ayurvedic treatment diabetes patients are advised to chew down the Insulin plants leaves for a month. The patient has to take two leaves per day in the morning and evening  for one week. The leaves must be chewed well before swallowing.  After one week the patient should take one leaf each in the morning and evening. This dosage should be continued for 30 days. Allopathic doctors too recommend it and it is found to be effective in bringing blood sugar levels under completely under control. There is also dried and ground powder of the leaves now available in the market.
    In Traditional Medicine it is also used to  Promotes longevity,  Treats rash,  Reduces fever, Treats asthma , Treats bronchitis and to  Eliminates intestinal worms. This  plant is mentioned in the Kama Sutra as an ingredient in a cosmetic to be used on the eyelashes to increase sexual attractiveness.

Collected 

Saturday, January 10, 2015

16F877A



Blinking LED using PIC Microcontroller with Hi-Tech C

PIC 16F877A

http://www.microchip.com/Microchip.WWW.SecureSoftwareList/secsoftwaredownload.aspx?device=en542849

HI-TECH Universal Toolsuite v1.37 (MPLAB IDE Plugin) 


HI-TECH Universal Toolsuite v1.37 (MPLAB IDE Plugin)



here is the list of devices:
pic16f877a
pickit3
linux kubuntu 13.10
mplabx and mplabx IPE
hitect picc lite version 9.83   


http://www.htsoft.com/downloads/


http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=SW500010

Archive
http://www.htsoft.com/downloads/archive.php

http://www.microchip.com/pagehandler/en_us/devtools/mplabxc/

Thursday, January 8, 2015

jdk


For both 64 & 86

jre-8u25-windows-i586.exe


[ jre-8u25-windows-x64.exe  ]

Detail Pag


Update a List


shipmentDto.ShipmentAttachmentsList.RemoveAll(x=> x.IsReserved == true);



//foreach(var list in shipmentDto.ShipmentAttachmentsList)
                        //{
                        //    if (list.IsReserved == false)
                        //    {
                        //        shipmentDto.ShipmentAttachmentsList.Where(x => x.IsReserved == false).FirstOrDefault();
                        //    }
                        //}


studentList = Database.Students.Where
(stu => stu.IsRemoved != 1 && studentIDList.Contains(stu.IID)).ToList();

Tuesday, January 6, 2015

Session

Session["userID"] == null


Session["userID"].ToString()

Session.Abandon();

Monday, January 5, 2015

tpo


Thursday, January 1, 2015

gift


sourov

Sourov