This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* please refer better example: https://github.com/dvdhrm/docs/tree/master/drm-howto/ */ | |
#define _XOPEN_SOURCE 600 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/mman.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <xf86drm.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#set url and port to the xbmc box webservice | |
XBMC_HOST="http://127.0.0.1:8080" | |
if [ "$1" = "" ]; then | |
echo -n "Insert URL: " | |
read url | |
else | |
url="$1" | |
fi |
We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 1 column, instead of 7 in line 9.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
agent-alreadyon: Az ügynök már be van jelentkezve. Adja meg az ügynökszámát és egy kettős keresztet. | |
agent-incorrect: A bejelentkezés sikertelen. Adja meg az ügynökszámát és egy kettős keresztet. | |
agent-loggedoff: Ügynök kijelentkezett. | |
agent-loginok: Ügynök bejelentkezett. | |
agent-newlocation: Adjon meg egy új melléket és egy kettős keresztet. | |
agent-pass: Adja meg a jelszót és egy kettős keresztet. | |
agent-user: Ügynök bejelentkezés. Adja meg az ügynökszámot és egy kettős keresztet. | |
auth-incorrect: Hibás jelszó. Adja meg újra a jelszót és egy kettős keresztet. | |
auth-thankyou: Köszönjük. | |
conf-adminmenu-162: A némításhoz vagy annak megszüntetéséhez nyomja meg az egyes gombot, a konferencia lezárásához vagy annak megszüntetéséhez a kettest, az utolsó felhasználó kizárásához a hármast, a hangerő beállításához a négyest vagy a hatost, a konferencia bővítéséhez az ötöst, a saját hangerő szabályozásához a hetest vagy kilencest, a kilépéshez a nyolcast. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This playbook has been removed as it is now very outdated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# coding: utf-8 | |
import os,socket,threading,time | |
#import traceback | |
allow_delete = False | |
local_ip = socket.gethostbyname(socket.gethostname()) | |
local_port = 8888 | |
currdir=os.path.abspath('.') |