TL;DR
Install Postgres 9.5, and then:
sudo pg_dropcluster 9.6 main --stop
sudo pg_upgradecluster 9.5 main
sudo pg_dropcluster 9.5 main| Build a full-screen, dark-themed hero section for a geology brand called **Lithos**, using **React 18 + TypeScript + Vite + Tailwind CSS** and **lucide-react** for icons. The signature feature is a **cursor-following spotlight that reveals a second image** through a soft circular mask on top of a base image. Match every detail below exactly. | |
| ### Fonts | |
| Add this to the top of `src/index.css`, then `@tailwind base/components/utilities`: | |
| ```css | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,400;1,500;1,600&display=swap'); | |
| * { font-family: 'Inter', sans-serif; } | |
| .font-playfair { font-family: 'Playfair Display', serif; } | |
| ``` | |
| - Body/UI font: **Inter**. |
| (function (H) { | |
| // create shortcuts | |
| var defaultOptions = H.getOptions(), | |
| defaultPlotOptions = defaultOptions.plotOptions, | |
| seriesTypes = H.seriesTypes; | |
| // Trendline functionality and default options. | |
| defaultPlotOptions.trendline = H.merge(defaultPlotOptions.line, { |
| server { | |
| listen 443 ssl; | |
| server_name xxx.xx.io | |
| ssl on; | |
| ssl_certificate /etc/asterisk/certs/xxx.io.pem; | |
| ssl_certificate_key /etc/asterisk/certs/xxx.io.key; | |
| ssl_session_timeout 5m; |
| INSTALL JAVA | |
| $ sudo apt-get update && sudo apt-get install default-jre | |
| INSTALL ELASTIC SEARCH https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-repositories.html | |
| $ wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | |
| $ echo "deb https://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list | |
| $ sudo apt-get update && sudo apt-get install elasticsearch | |
| $ sudo update-rc.d elasticsearch defaults 95 10 | |
| $ sudo service elasticsearch restart | |
| $ sudo service elasticsearch status |
TL;DR
Install Postgres 9.5, and then:
sudo pg_dropcluster 9.6 main --stop
sudo pg_upgradecluster 9.5 main
sudo pg_dropcluster 9.5 main| package main | |
| import ( | |
| "os" | |
| "path/filepath" | |
| "io/ioutil" | |
| "fmt" | |
| "flag" | |
| ) |
| /*! | |
| * Pusher JavaScript Library v1.12.5 | |
| * http://pusherapp.com/ | |
| * | |
| * Copyright 2011, Pusher | |
| * Released under the MIT licence. | |
| */ | |
| (function() { | |
| if (Function.prototype.scopedTo === void 0) Function.prototype.scopedTo = function(a, b) { | |
| var e = this; |
| var utils = require('utils'); | |
| var server = require('webserver').create(); | |
| var casper = require('casper').create({ | |
| pageSettings: { | |
| loadImages: true, | |
| webSecurityEnabled: false | |
| }, | |
| verbose: true, | |
| logLevel: "debug" | |
| }); |