Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
project(testlink) | |
add_executable(testlink main.cpp) | |
target_link_libraries(testlink) |
#include <ctime> | |
#include <string> | |
#include <iostream> | |
#include <boost/bind.hpp> | |
#include <boost/asio.hpp> | |
#include <boost/thread.hpp> | |
#include <boost/format.hpp> | |
#include <boost/smart_ptr.hpp> |
#lang racket | |
;; 0CFA in the AAM style, but with a compilation phase, on | |
;; some hairy Church numeral churning | |
;; Moral: a simple compilation strategy can eliminate a lot | |
;; of analysis-time interpretive overhead. (40sec vs 9sec) | |
;; (X -> Set X) -> (Set X) -> (Set X) | |
(define ((appl f) s) |
#include <memory> | |
#include <iostream> | |
#include <sstream> | |
#include <utility> | |
#include <algorithm> | |
#include <iterator> | |
struct sequence_tag {}; | |
struct pointer_tag {}; |
the | |
of | |
to | |
and | |
a | |
in | |
is | |
it | |
you | |
that |
0 = Success | |
1 = Operation not permitted | |
2 = No such file or directory | |
3 = No such process | |
4 = Interrupted system call | |
5 = Input/output error | |
6 = No such device or address | |
7 = Argument list too long | |
8 = Exec format error |
Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
(defvar org-pomodoro-minutes 25) | |
(defvar org-pomodoro-cancelling nil) | |
(defvar org-pomodoro-command (locate-file "pomodoro" exec-path)) | |
(defun org-pomodoro-on-org-load () | |
(push (cons "p" org-pomodoro-minutes) org-effort-durations) | |
(push '("Effort_ALL" . "1p 2p 3p 4p 5p 6p 7p 8p") org-global-properties) | |
(define-key org-mode-map "\C-c\C-x'" 'org-pomodoro-columns) | |
(define-key org-agenda-mode-map "\C-c\C-x'" 'org-pomodoro-agenda-columns)) |
#include <stdlib.h> | |
#include <stdio.h> | |
#define TRUE 1 | |
#define FALSE 0 | |
/* a link in the queue, holds the info and point to the next Node*/ | |
typedef struct { | |
int info; | |
} DATA; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<form method="post"> | |
{{ form.hidden_tag() }} | |
{{ form.example }} |