git clone https://aur.archlinux.org/oracle-xe.git
cd oracle-xe
wget http://download.oracle.com/otn/linux/oracle11g/xe/oracle-xe-11.2.0-1.0.x86_64.rpm.zip
| // Dependencies. | |
| var express = require('express') | |
| app = module.exports = express.createServer(), | |
| del = function(req, res) { res.clearCookie('login_token'); res.redirect('/'); }, | |
| set = function(req, res) { res.cookie('login_token', +new Date(), { maxAge: 3600000, path: '/' }); res.redirect('/'); }; | |
| // Config | |
| app.configure(function() { | |
| app.use(express.bodyParser()); | |
| app.use(express.cookieParser()); |
| # | |
| # Custom tmux commands for remote servers | |
| # | |
| # Copy this to ~/.tmux.conf to enable | |
| # | |
| # Make splitting and resizing panes, and moving around emulate the vim | |
| # directional keys | |
| bind | split-window -h | |
| bind _ split-window -v |
| [Scheme] | |
| Name=Monokai (dark) | |
| TabActivityColor=#a6a6e2e22e2e | |
| ColorCursor=#f8f8f8f8f2f2 | |
| ColorForeground=#f8f8f8f8f2f2 | |
| ColorBackground=#272728282222 | |
| ColorPalette=#272728282222;#f9f926267272;#a6a6e2e22e2e;#f4f4bfbf7575;#6666d9d9efef;#aeae8181ffff;#a1a1efefe4e4;#f8f8f8f8f2f2;#757571715e5e;#f9f926267272;#a6a6e2e22e2e;#f4f4bfbf7575;#6666d9d9efef;#aeae8181ffff;#a1a1efefe4e4;#f9f9f8f8f5f5 |
| # -*- coding: utf-8 -*- | |
| # Copyright (C) 2016, Maximilian Köhl <[email protected]> | |
| """ | |
| Python interface to the ModelSim simulator. The simulator is instrumented using FIFO pipes | |
| such that it becomes fully controllable from within Python using TCL commands. | |
| """ | |
| import contextlib |
| /** | |
| * dwmconfig.h | |
| * Hardware multimedia keys | |
| */ | |
| /* Somewhere at the beginning of config.h include: */ | |
| /* | |
| You obviously need the X11 development packages installed, X11proto in particular, but | |
| here is the location of the keysyms header upstream copy if you can't bother | |
| using the contents of your own hard drive. ;-P |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'dart:isolate'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new MaterialApp( |
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.