Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
using System; | |
using System.Collections.Generic; | |
namespace learnFormEvent | |
{ | |
public class Document | |
{ | |
private string title; | |
public string Title |
#region Dynamic Object | |
class dynamicClass : DynamicObject | |
{ | |
Dictionary<string, object> _dynamicData = new Dictionary<string, object>(); | |
public override bool TryGetMember(GetMemberBinder binder, out object result) | |
{ | |
bool success = false; | |
result = null; |
// | |
// Inserted a value into a Sorted Linked List | |
// | |
#include<stdio.h> | |
#define ArryNumber 20 | |
// Global Variable | |
int INFO[ArryNumber]; //INFO[20]; |
<Page | |
x:Class="_1st_App.MainPage" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="using:_1st_App" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d"> | |
<Grid Background="White"> |
Get-FileHash -Path " Give your file path like 'C:\testMd5\convertHD5.txt' " - Algorithm MD5 |
class frut { | |
enum frt{ Small , Medium , Large } | |
frt size; | |
} | |
public class tst { | |
public static void main(String[] args){ | |
frut sz = new frut(); | |
sz.size = frut.frt.Small; |
<html> | |
<?php | |
$servername = "localhost"; | |
$username = "root"; | |
$password = ""; | |
// Create connection | |
$cn = mysql_connect($servername, $username, $password); |
Getting started:
Related tutorials:
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
// Get image and show it to the picture Box....................................... | |
OpenFileDialog fop = new OpenFileDialog(); | |
fop.InitialDirectory = @"C:\"; | |
fop.Filter = "[JPG,JPEG]|*.jpg"; | |
if (fop.ShowDialog() == DialogResult.OK) | |
{ | |
FileStream FS = new FileStream(@fop.FileName, FileMode.Open, FileAccess.Read); | |
byte[] img = new byte[FS.Length]; |