sudo vi /etc/apache2/sites-enabled/001-cloud9.conf
edit the following config:
DocumentRoot <the path you want>
#!/usr/bin/env bash | |
set -e | |
EXITCODE=0 | |
# bits of this were adapted from lxc-checkconfig | |
# see also https://github.com/lxc/lxc/blob/lxc-1.0.2/src/lxc/lxc-checkconfig.in | |
possibleConfigs=( | |
'/proc/config.gz' |
txt file content | |
231 |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
College Roll | University Roll | Name | ||
---|---|---|---|---|
1 | 10401215087 | Ezechiel Napoleon | [email protected] | |
2 | 10401215088 | Verney Syder | [email protected] | |
3 | 10401215089 | Nathanil Kee | [email protected] | |
4 | 10401215090 | Jedediah Adamsky | [email protected] | |
5 | 10401215091 | Inger Empleton | [email protected] | |
6 | 10401215092 | Jonathon Trussler | [email protected] |
// A Single line comment | |
/* A | |
* Multiple line | |
* comment | |
*/ | |
// You can import libraries with helpful methods using import | |
import java.util.Scanner; |
def orangecap(d): | |
(name, max_score, max_name) = ({}, 0, '') | |
for match in d: | |
for player in d[match]: | |
if player not in name: | |
name[player] = 0 | |
name[player] += d[match][player] | |
for player in name: |
Station Code,Station Name(en),Station Name(hi),Latitude,Longitude | |
AA,ATARIA,अटरिया,1,2 | |
AABH,AMBIKA BHAWANI HALT,,0,0 | |
AADR,AMB ANDAURA,,31.670257,76.109921 | |
AAG,ANGAR,अंगार,17.954566,75.600185 | |
AAH,ITEHAR,इतेहर,26.562505,78.683653 | |
AAK,ANKAIKILA,अंकेइकिला,20.183107,74.453487 | |
AAL,AMLAI,अमलाई,23.173189,81.593227 | |
AAM,ANGADIPPURAM,अंगदीपुरम,10.979069,76.206923 | |
AAP,AMBIAPUR,अम्बियापुर,26.514974,79.826488 |
// collected from https://www.123test.com/professions | |
// | |
a = $('#accordion a:not(:has(*))'); | |
for (i = 0; i < a.length; i++) | |
document.write($(a[i]).text() + '<br>'); |
git archive --format zip --output /full/path/to/zipfile.zip master |