Skip to content

Instantly share code, notes, and snippets.

View pinpox's full-sized avatar
🤔

Pablo Ovelleiro Corral pinpox

🤔
View GitHub Profile
@pinpox
pinpox / grid-flex-a-12-column-grid-using-flexbox.markdown
Created July 22, 2022 23:49
Grid : Flex - A 12-column grid using flexbox

Grid : Flex - A 12-column grid using flexbox

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.

A Pen by Pablo on CodePen.

License.

# 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

Keybase proof

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:

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,
# 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"
# 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.
# rofi-surf
Surf + Rofi
## Controls
- Enter : Open in new window
- Shift+Enter : Open in existing window
- Esc : Close
# 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')

Keybase proof

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:

#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)