- VS Code Editor
- Git Source Control
- Github, Gitlab, Bitbucket, Stash
- Data Structures & Algo
- Solve 50+ coding problem (leetcode or hackerrank)
To convert large binary to hex use this code
const binaryData:=
{
'0000': '0',
'0001': '1',
'0010': '2',
'0011': '3',
using System; | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ | |
Console.WriteLine ("Hello, World!"); | |
} | |
} |
import { parseString, Builder } from "xml2js"; | |
// Convert string/XML to JSON | |
function toJson(xml: string) { | |
parseString(xml, { explicitArray: false }, function(error, result) { | |
console.log(result); | |
}); | |
} |
// Code from Project 1 | |
namespace FirstAssembly | |
{ | |
public class FirstClass | |
{ | |
protected internal static void FirstMethod() | |
{ | |
Console.WriteLine("Private protected method called..."); | |
} | |
} |
// Code from Project 1 | |
namespace FirstAssembly | |
{ | |
public class FirstClass | |
{ | |
private protected static void FirstMethod() | |
{ | |
Console.WriteLine("Private protected method called..."); | |
} | |
} |
using System; | |
using System.IO; | |
namespace FileMovement | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string sourcePath = @"G:\Learning\CSharp\FileMovement\FileMovement\"; |
using System; | |
using System.IO; | |
namespace FileMovement | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string sourcePath = @"G:\Learning\CSharp\FileMovement\FileMovement\"; |
<% flash.each do |type, message| %> | |
<div class="alert <%= bootstrap_class_for(type) %> fade in"> | |
<button class="close" data-dismiss="alert">×</button> | |
<%= message %> | |
</div> | |
<% end %> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Centering a form</title> | |
</head> | |
<body> | |
<div class="form"> | |
<label>Name</label> | |
<input type="text" name="name"> |