<footer className={ `${styles.footerArea} ${styles.footerLight}` }>
<TableCell align="center">
{
{
'None': <p>We are not sure about this email.</p>,
| const gulp = require('gulp'); | |
| const plugins = require('gulp-load-plugins')(); | |
| const del = require('del'); | |
| const log = require('fancy-log'); | |
| const imagemin = require('gulp-imagemin'); | |
| const imageminMozjpeg = require('imagemin-mozjpeg'); | |
| const critical = require('critical'); | |
| const browserSync = require('browser-sync'); | |
| // ========================================================= | |
| // Gulp Task: browsersync | |
| // NOTE: Using gulp v4 | |
| // Description: Sync sass, typescript, html, and browser | |
| // using external config or add modify src | |
| // npm install --save-dev browser-sync gulp-typescript gulpjs/gulp.git#4.0 gulp-load-plugins | |
| // Options: node-sass gulp-sass || gulp-ruby-sass | |
| // ========================================================= | |
| var config = require('../config.js'); | |
| var browserSync = require('browser-sync').create(); |
| const gulp = require('gulp'); | |
| const inject = require('gulp-inject'); | |
| // use to concat css files | |
| function injectIntoHTML() { | |
| // It's not necessary to read the files (will speed up things), we're only after their paths: | |
| let sources = gulp.src(['./src/**/*.js', './src/**/*.css'], {read: false}); | |
| return gulp |
| bid | brand | web_site | |
|---|---|---|---|
| 1 | sqaure | sqaure.com.bd | |
| 2 | beximco | beximco.com.bd | |
| 2 | beximco | beximco.com.bd | |
| 2 | beximco | beximco.com.bd |
Open dconf Editor and navigate to org/pantheon/terminal/settings . And now update the value as provided
| Name | Value |
|---|---|
| Background | rgba(40, 42, 54, 1) |
| Font | Droid Sans Mono 12 |
| Foreground | rgba(239, 240, 235, 1) |
| Pallette | #222430:#97979b:#3498db:#ff5c57:#5af78e:#ff5c57:#57c7ff:#ff6ac1:#9aedfe:#f1f1f0:#686868:#ff5c57:#5af78e:#ff5c57:#57c7ff:#ff6ac1:#9aedfe |
Navigate to http://nodejs.org/download/ and on the Linux Binaries (.tar.gz) row click to download the 64-bit version of the current latest release.
Say you've downloaded node-v0.10.7-linux-x64.tar.gz into the Downloads directory. Then, open the terminal and type the following:
$ cd ~/Downloads
$ mkdir -p ~/local/node
$ tar xzf node-v0.10.7-linux-x64.tar.gz -C ~/local/node --strip-components=1
$ echo '# Node Enviroment Setup' >> ~/.bashrc
$ echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.bashrc