Grid : Flex is a dead-simple, bare bones grid to help you get your layouts looking sharp very quickly. It only cares about laying out your content, so you can style your website or application however you like, without having to worry about creating a custom grid system.
This file contains 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
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix |
I hereby claim:
- I am pinpox on github.
- I am pablo1 (https://keybase.io/pablo1) on keybase.
- I have a public key whose fingerprint is D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3
To claim this, I am signing this object:
This file contains 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
sudo ./bin/turnserver -v | |
0: log file opened: /var/log/turn_1323_2019-04-03.log | |
0: Config file found: /etc/turnserver.conf | |
0: | |
RFC 3489/5389/5766/5780/6062/6156 STUN/TURN Server | |
Version Coturn-4.5.1.1 'dan Eider' | |
0: | |
Max number of open files/sockets allowed for this process: 1048576 | |
0: | |
Due to the open files/sockets limitation, |
This file contains 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
# vim:ft=yaml | |
## Server ## | |
# The domain name of the server, with optional explicit port. | |
# This is used by remote servers to connect to this server, | |
# e.g. matrix.org, localhost:8080, etc. | |
# This is also the last part of your UserID. | |
# | |
# This is set in /etc/matrix-synapse/conf.d/server_name.yaml for Debian installations. | |
# server_name: "SERVERNAME" |
This file contains 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
# Coturn TURN SERVER configuration file | |
# | |
# Boolean values note: where boolean value is supposed to be used, | |
# you can use '0', 'off', 'no', 'false', 'f' as 'false, | |
# and you can use '1', 'on', 'yes', 'true', 't' as 'true' | |
# If the value is missed, then it means 'true'. | |
# | |
# Listener interface device (optional, Linux only). | |
# NOT RECOMMENDED. |
This file contains 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
# rofi-surf | |
Surf + Rofi | |
## Controls | |
- Enter : Open in new window | |
- Shift+Enter : Open in existing window | |
- Esc : Close | |
This file contains 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
# Contributor: Olivier Duclos <olivier.duclos@gmail.com> | |
# Maintainer: Dan Panzarella <alsoelp@gmail.com> | |
pkgname=gbdfed | |
pkgver=1.6 | |
pkgrel=3 | |
pkgdesc="A GTK2 bitmap font editor" | |
arch=(i686 x86_64) | |
url="http://www.math.nmsu.edu/~mleisher/Software/gbdfed/" | |
license=('MIT') |
I hereby claim:
- I am binaryplease on github.
- I am pablo1 (https://keybase.io/pablo1) on keybase.
- I have a public key whose fingerprint is D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3
To claim this, I am signing this object:
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
void s_reverse(char *str); | |
int isPalindropme(char *a); | |
void s_reverse(char *str) | |
{ | |
// Leeren und NULL string abfangen | |
if (str == 0 || *str == 0) |
NewerOlder