To make this work in CSS:
background: url('images.svg#chart');or img:
<img src="images.svg#chart">| allprojects { | |
| apply plugin: 'java' | |
| apply plugin: 'jacoco' | |
| repositories { | |
| jcenter() | |
| } | |
| jacoco { | |
| toolVersion = '0.7.1.201405082137' |
| [ | |
| "alert", | |
| "arrow-down", | |
| "arrow-left", | |
| "arrow-right", | |
| "arrow-small-down", | |
| "arrow-small-left", | |
| "arrow-small-right", | |
| "arrow-small-up", | |
| "arrow-up", |
To make this work in CSS:
background: url('images.svg#chart');or img:
<img src="images.svg#chart">| // Go to menue: | |
| // find->find in files | |
| // Switch on reg_ex button | |
| // Find: | |
| ^(.*)$ | |
| // Where: | |
| c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/* | |
| // Then click on the find button | |
| // Be careful to not click on Replace!!! |
| <ezstream> | |
| <url>http://127.0.0.1:8042/test</url> | |
| <sourcepassword>test</sourcepassword> | |
| <sourceuser>test</sourceuser> | |
| <format>MP3</format> | |
| <filename>b.mp3</filename> | |
| <stream_once>0</stream_once> | |
| <svrinfoname>test</svrinfoname> | |
| <svrinfourl>test</svrinfourl> | |
| <svrinfogenre>test</svrinfogenre> |
Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
| var count = db.collections.count() | |
| var rand = function(){return Math.floor( Math.random() * count )} | |
| db.collection.find().limit(-1).skip(rand()).next(); |
| var express = require('express') | |
| , cookieSessions = require('./cookie-sessions'); | |
| var app = express(); | |
| app.use(express.cookieParser('manny is cool')); | |
| app.use(cookieSessions('sid')); | |
| app.get('/', function(req, res){ | |
| req.session.count = req.session.count || 0; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8'> | |
| <title>Embedded Facebook Page Photo Gallery with jQuery</title> | |
| <style type='text/css'> #thumbs{float:left;width:200px;} #thumbs img{display:block;margin:0 0 10px;cursor:pointer;} #viewer{float:left;} </style> | |
| </head> | |
| <body> | |
| <h1>Embedded Facebook Page Photo Gallery with jQuery</h1> | |