These are my notes on instaling NixOS 16.03 on a Lenovo ThinkPad X1 Carbon (4th generation) with an encrypted root file system using UEFI.
Most of this is scrambled from the following pages:
[Plugin] | |
Authors=Sylvain PHILIP <[email protected]> | |
Copyright=Copyright © 2021 Sylvain PHILIP | |
Description=Provides auto-completion for PHP, diagnostics, and other IDE features, working with Phpactor | |
Loader=python3 | |
Module=phpls_plugin | |
Name=PHP Language Server Integration | |
X-Completion-Provider-Languages=php | |
X-Diagnostic-Provider-Languages=php | |
X-Formatter-Languages=php |
# I used this shell.nix to build LineageOS 13.0 for my maguro (Samsung Galaxy Nexus GSM) phone | |
# The build instructions for normal Linuxes are here: https://wiki.lineageos.org/devices/maguro/build | |
# For NixOS, follow those instructions but skip anything related to installing packages | |
# Detailed instructions: | |
# cd into an empty directory of your choice | |
# copy this file there | |
# in nix-shell: | |
# $ repo init -u https://github.com/LineageOS/android.git -b cm-13.0 | |
# $ repo sync | |
# $ source build/envsetup.sh |
-- Génération automatique de classements aléatoires en production, pour les FNS | |
-- =================================== | |
FUNCTION gen_class_aiea_v1_relatif_grp( o_g_ea_cod_ins IN varchar2, o_g_ti_cod IN number, o_c_gp_cod IN number, o_g_tg_cod IN number, iogin IN varchar2, type_login IN number, mode_dev IN number, confirm IN number, saio IN number, nip IN varchar2, indic IN number, mess_err out varchar2, mess_aff out varchar2) | |
RETURN number IS | |
retour number; | |
X varchar2(2); | |
dummy number; | |
dummy2 number; | |
l_c_gp_fIg_seI c_grp.c_gp_flg_sel%type; |
These are my notes on instaling NixOS 16.03 on a Lenovo ThinkPad X1 Carbon (4th generation) with an encrypted root file system using UEFI.
Most of this is scrambled from the following pages:
More complete info here http://cluster015.ovh.net/infos/ (thanks to @42antoine)
/usr/local/php5.3/bin/php => PHP 5.3.29 (cli) (built: Nov 21 2017 08:55:07)
/usr/local/php5.4/bin/php => PHP 5.4.45 (cli) (built: Nov 21 2017 08:35:51)
/usr/local/php5.5/bin/php => PHP 5.5.38 (cli) (built: Nov 21 2017 08:46:45)
FadeTransitionRegion = Backbone.Marionette.Region.extend | |
show: (view)-> | |
@ensureEl() | |
view.render() | |
@close -> | |
return if @currentView and @currentView isnt view | |
@currentView = view |
# Initializes Marionette.js global application object. | |
@gApp = new Backbone.Marionette.Application() | |
# Prepares the DOM by assigning regions to various elements. | |
@gApp.addInitializer (options) -> | |
@addRegions(content: 'body') | |
# Login page controller. | |
@gApp.module 'LoginPage', (module, app, backbone, marionette, $, _) -> | |
module.addInitializer (options) -> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title></title> | |
<link href="style.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<form method="post" action="/"> | |
<fieldset> | |
<legend>Login</legend> |
Bonjour, | |
Sans grand espoir d'être retenu faute d'avoir pu trouver le temps de | |
formuler plus finement le sujet, je prends tout de un moment pour vous | |
soumettre une idée de conférence sur une thématique qui me turlupine | |
depuis plus de 10 ans tant elle pleine d'enjeux et dure à cerner dans | |
nos métiers… | |
Le titre (provisoire, car relativement moisi) est "Quand, comment et | |
pourquoi faut-il savoir dire non ?" (oui, je sais, ça va) |
/* | |
* Takes provided URL passed as argument and make screenshots of this page with several viewport sizes. | |
* These viewport sizes are arbitrary, taken from iPhone & iPad specs, modify the array as needed | |
* | |
* Usage: | |
* $ casperjs screenshots.js http://example.com | |
*/ | |
var casper = require("casper").create(); |