Go to the below link and download the new driver zip file to desktop and unzip it to the desktop.
In the terminal windows type the below code and press enter.
cd Desktop
Then type the below code and press enter.
https://gist.github.com/anonymous/0c41447f1fce4da734451c307469a6b5 | |
System: Host: Immortal Kernel: 4.4.0-53-generic x86_64 (64 bit gcc: 5.4.0) | |
Desktop: Cinnamon 3.2.7 (Gtk 3.18.9-1ubuntu3.1) dm: mdm Distro: Linux Mint 18.1 Serena | |
Machine: System: HP product: HP Notebook v: Type1ProductConfigId Chassis: type: 10 | |
Mobo: HP model: 80C1 v: 96.47 Bios: Insyde v: F.21 date: 05/17/2016 | |
CPU: Dual core Intel Core i3-5005U (-HT-MCP-) cache: 3072 KB | |
flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 7981 | |
clock speeds: min/max: 500/2000 MHz 1: 1899 MHz 2: 1900 MHz 3: 1900 MHz 4: 1899 MHz | |
Graphics: Card: Intel Broadwell-U Integrated Graphics bus-ID: 00:02.0 chip-ID: 8086:1616 |
# Geany's snippets configuration file | |
# use \n or %newline% for a new line (it will be replaced by the used EOL char(s) - LF, CR/LF, CR) | |
# use \t ot %ws% for an indentation step, if using only spaces for indentation only spaces will be used | |
# use \s to force whitespace at beginning or end of a value ('key= value' won't work, use 'key=\svalue') | |
# use %cursor% to define where the cursor should be placed after completion | |
# use %key% for all keys defined in the [Special] section | |
# you can define a section for each supported filetype to overwrite default settings, the section | |
# name must match exactly the internal filetype name, run 'geany --ft-names' for a full list | |
# filetype names: |
Go to the below link and download the new driver zip file to desktop and unzip it to the desktop.
In the terminal windows type the below code and press enter.
cd Desktop
Then type the below code and press enter.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>ajax example</title> | |
<style> | |
body { | |
font-family: Helvetica, Arial, sans-serif; | |
background: #f2f2f2; | |
padding: 0; |
[ | |
{ | |
"orderDate": "06/01/2015", | |
"region": "East", | |
"rep": "Jones", | |
"item": "Pencil", | |
"units": 95, | |
"unitCost": 1.99 | |
}, | |
{ |
"***************************************************************************** | |
"" Vim-PLug core | |
"***************************************************************************** | |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
endif | |
let vimplug_exists=expand('~/.vim/autoload/plug.vim') | |
let g:vim_bootstrap_langs = "html,javascript,php,python" |
"-------------------- | |
" Use Vundle to manage bundles | |
"-------------------- | |
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle | |
call vundle#rc() | |
Bundle 'gmarik/vundle' |
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: | |
# The Apache 2 web server configuration in Debian is quite different to | |
# upstream's suggested way to configure the web server. This is because Debian's |
<?php # Script 4.1 - HelloWorld.php | |
/* This page defines the HelloWorld class. | |
* The class says "Hello World!" in different languages. | |
*/ | |
class HelloWorld | |
{ | |
// This method print a greeting | |
// It takes one argument: the language to use. | |
// Default language is English. |