Live Ddos View

Live DDoS Attack Map | Apakau

Live DDoS Attack Map

This map is the fruit of collaboration between Google Ideas and Arbor Networks in an effort to raise awareness about distributed denial of service attacks in the world everyday.

Exploring the Data

The Digital Attack Map displays global DDoS activity on any given day. Attacks are displayed as dotted lines, scaled to size, and placed according to the source and destination countries of the attack traffic when known. Some features include:

  • Use the histogram at the bottom of the map to explore historical data.
  • Select a country to view DDoS activity to or from that country.
  • Use the color option to view attacks by class, duration, or source/destination port.
  • Use the news section to find online reports of attack activity from a specified time.
  • View the gallery to explore some examples of days with notable DDoS attacks.

Sign Up

Friday, February 6, 2015

C# Tutorials

The C# tutorials provide an overview of the basics of the language and identify important language features. Each tutorial includes one or more sample programs. The tutorials discuss the sample code plus provide additional background information. They also link to the corresponding sample abstract topics, where you can download and run the sample programs.
Note   The C# tutorials do not teach how to create a graphical user interface for your program like a Windows Form or a Web Forms page. To get started in that area, see the Visual C# Walkthroughs.


TutorialDescriptionLevel
Hello WorldShows a Hello World application.Simple
Command Line ParametersShows simple command-line processing; also shows array indexing.Simple
ArraysShows how to use arrays.Simple
PropertiesShows how properties are declared and used; also demonstrates abstract properties.Simple
LibrariesShows how to use compiler options to create a DLL library from multiple source files; also, how to use them in other programs.Simple
VersioningShows the use of override and new to support versioning.Simple
Collection ClassesShows how to make collection classes that can be used with foreach.Intermediate
StructsShows how to use structs in C#.Intermediate
IndexersShows how to use array notation to access an object.Intermediate
Indexed PropertiesShows how to implement a class that uses indexed properties. Indexed properties allow you to use a class that represents an array-like collection of several different kinds of things.Intermediate
User-Defined ConversionsShows how to define conversions to and from user-defined types.Intermediate
Operator OverloadingShows how user-defined classes can overload operators.Intermediate
DelegatesShows how delegates are declared, mapped, and combined.Intermediate
EventsShows how to use events in C#.Intermediate
Explicit Interface ImplementationDemonstrates how to explicitly implement interface members.Intermediate
Conditional MethodsDemonstrates conditional methods, which provide a powerful mechanism by which calls to methods can be included or omitted depending on whether a symbol is defined.Intermediate
XML DocumentationShows how to document code by using XML.Intermediate
Platform InvokeShows how to call platform invokes (exported DLL functions) from C#.Advanced
COM Interop Part 1Shows how to use C# to interoperate with COM objects. Covers a C# client.Advanced
COM Interop Part 2Shows how to use C# to interoperate with COM objects. Covers a C# server.Advanced
AttributesShows how to create custom attribute classes, use them in code, and query them through reflection.Advanced
SecurityDiscusses .NET Framework security and shows two ways to modify security permissions in C#: permission classes and permission attributes.Advanced
ThreadingDemonstrates various thread activities such as creating and executing a thread, synchronizing threads, interacting between threads, using a thread pool, and using a mutex object.Advanced
Unsafe CodeShows how to use pointers.Advanced
OLE DBShows how to use OLE DB in C# by connecting to a Microsoft Access database.Advanced

No comments:

Post a Comment