If you are going to check out only one link on this page, let it be one of these two:
These are excellent sites to learn HTML and CSS in a practical way.
If you are going to check out only one link on this page, let it be one of these two:
These are excellent sites to learn HTML and CSS in a practical way.
Tips from from an expert competitive programmer (Anudeep Nekkanti) for someone beginning competitive coding:
If I aim to start programming now, I would do it this way:
#include <stdio.h> | |
#include <ctype.h> | |
#include <stdlib.h> | |
#define SIZE 40 | |
int pop(); | |
void push(int); | |
char postfix[SIZE]; |
import requests as r | |
import json | |
pnr = "6533533388" | |
url = "https://indianrailways.p.mashape.com/index.php?pnr=" | |
headers = {'X-Mashape-Authorization': 'MASHAPE_API_KEY'} | |
data = r.get('%s%s' % (url,pnr),headers=headers) |
#include <iostream> | |
using namespace std; | |
class Employee | |
{ | |
private: | |
int e_no; | |
char e_name[30]; | |
float basic_sal; |
// #!/usr/bin/env node | |
var spawn = require('child_process').spawn; | |
var path = require('path'); | |
var url = require('url'); | |
var dl_url = process.argv[2], | |
fileName = decodeURIComponent(path.basename(url.parse(dl_url).pathname)), | |
#include<stdio.h> | |
#include<stdlib.h> | |
#include<ctype.h> | |
#define SIZE 30 | |
void push(char); | |
char pop(); | |
int preced(char); |
var rawSites = { | |
'programming': [ | |
'http://blog.codinghorror.com/', | |
'http://thedailywtf.com/', | |
'http://www.hanselman.com/blog/', | |
'http://code.tutsplus.com', | |
'https://news.ycombinator.com/', | |
'http://www.reddit.com/r/programming/', | |
'http://codebetter.com', | |
'http://android-developers.blogspot.com/', |
<?php | |
ini_set('display_errors',1); | |
error_reporting(E_ALL); | |
$url = 'http://data.mtgox.com/api/1/BTCUSD/ticker_fast'; | |
$resp = file_get_contents($url); | |
$res = json_decode($resp,true); |