Skip to content

Instantly share code, notes, and snippets.

View atodorova's full-sized avatar

Asia Todorova atodorova

View GitHub Profile
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Up, low and mix case!</title>
<link href="styles/js-console.css" rel="stylesheet" />
</head>
<body>
<div id="js-console">
<div class="input">
<div>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>String Reverse!</title>
<link href="styles/js-console.css" rel="stylesheet" />
</head>
<body>
<div id="js-console">
<div class="input">
<label for="tb-number">Input text:</label>
@atodorova
atodorova / CalculateSurfaceMain.cs
Last active December 15, 2015 02:58
SurfaceOfShapes
using System;
class CalculateSurfaceMain
{
static void Main()
{
Shape[] serfece = new Shape[]
{
@atodorova
atodorova / 3D-Space.UI.cs
Last active December 14, 2015 15:58
3D-Space.UI
using System;
using System.Collections.Generic;
using System.Globalization;
class Space3D
{
static void Main()
{
CultureInfo.CreateSpecificCulture("en-US");
Point3D firstPoint = new Point3D(5.2, 6.3, 7.4);