#Step to add Virtual-Host in Apache server
##Write Host Configuration
sudo emacs /etc/apache2/sites-available/host_name.conf
<VirtualHost *:80>
ServerName host_name
ServerAlias altr_host_name
DocumentRoot Directory_Path
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/<Enter your username>/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="<enter your theme name>" |
#Step to add Virtual-Host in Apache server
##Write Host Configuration
sudo emacs /etc/apache2/sites-available/host_name.conf
<VirtualHost *:80>
ServerName host_name
ServerAlias altr_host_name
DocumentRoot Directory_Path
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, | |
devtool: debug ? "inline-sourcemap" : null, | |
entry: "./js/scripts.js", | |
output: { | |
path: __dirname + "/js", | |
filename: "scripts.min.js" |
from socket import * | |
def createServer(): | |
serversocket = socket(AF_INET, SOCK_STREAM) | |
serversocket.bind(('localhost',9000)) | |
serversocket.listen(5) | |
while(1): | |
(clientsocket, address) = serversocket.accept() | |
clientsocket.send("It works") |
To Whom It May Concern, | |
I am excited to apply to the PHP Full Stack Developer position at MobyMax. My background as a Web Developer, along with my education in Computer Science, have allowed me to attain a strong foundation of technical skills. In addition to my Web Development skills, I also possess a great eye for design and development, and this is what I believe separates me from the rest of the competition. | |
I am highly skilled with HTML, CSS, Javascript,PHP and Sql. I have over two years of experience with each of these technologies, and I am eager to learn even more technologies to sharpen my skillset. In addition to web technologies, I do have a passion for server side configurations also I've done some projects related to server efficiency. | |
I'm confident I can be a great addition to your company, and I would love the opportunity to discuss the opportunity with you further. If you have any questions about my background, please do not hesitate to reach out to me at learner.adarsh@gmail.com or +91 96 |
[NAME OF FREELANCER/COMPANY] proposes to produce, shoot, and edit a promotional video for [THE CLIENT]. The purpose of the video will be to showcase new features available on [THE CLIENT]’s website. The video will take the form of one 2-3 minute video that includes live action footage and basic graphics/text as well as 2D animation. The concept and script shall be provided by the client in English. | |
Pre-Production – provided by the client. | |
Shooting (1 Camera Operator, 1 Graphic Animator) – up to 10 hrs each | |
$900 | |
Includes all necessary equipment for a 1-camera shoot, including HD camera and a lav mics. Shooting will include demonstration of website use, rehearsing lines, blocking & staging, shooting multiple angles & several takes, close-ups, capturing audio, developing script, lighting if needed. Graphics & Animation includes 2D rendering using images sourced by [FREELANCER/COMPANY NAME] requested by the client. | |
Editing (1 Editor, 1 Week) | |
$500 |
Hi there, | |
I’d like to be considered for your writing position. I’m a strategic writer with a strong background developing online content, including blog posts, social media posts, articles, press releases and other branded copy. I can turn a phrase in a way that represents your brand and appeals to your target audience. Whether you need a formal, serious tone or a more playful one, I can make the transition with ease. | |
For 11 years I’ve worked in marketing and so I am accustomed to working with all sorts of products and services, and in a variety of industries. I have a deep passion for research and guarantee that all of my writing is 100% original. | |
Here is a sampling of the articles and press releases I’ve written: | |
http://www.example1.com | |
http://www.example2.com |
#!/bin/bash -e | |
clear | |
echo "============================================" | |
echo "WordPress Install Script" | |
echo "============================================" | |
echo "Database Name: " | |
read -e dbname | |
echo "Database User: " | |
read -e dbuser | |
echo "Database Password: " |
Encapsulation − the capability to store related information, whether data or methods, together in an object. | |
Aggregation − the capability to store one object inside another object. | |
Inheritance − the capability of a class to rely upon another class (or number of classes) for some of its properties and methods. | |
Polymorphism − the capability to write one function or method that works in a variety of different ways. |
An easy way to share files from your computer is to use Python SimpleHTTPServer. You don’t need to know Python programming to use the SimpleHTTPServer, the only requirement is to have Python installed on the machine where the files that needs to be shared are located. | |
Most Linux distributions are shipped with Python installed by default, but for Windows you might need to check how to use Python on Windows. | |
To start the SimpleHTTPServer “cd” into the directory which you want to be shared and run the command: | |
1 | |
python -m SimpleHTTPServer 8000 | |
You need to specify a port, usually 8000, like in the example should be just fine. | |
To access the shared files o to http://your_ip_address:8000. |