sudo apt-get remove --purge "libreoffice-core"
sudo apt autoremove
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
# High Level Design (what): | |
1. SECURITY | |
1.1 Operating system security | |
1.2 Application security | |
1.3 Data security | |
1.4 Network security | |
1.5 Physical security | |
2. HARDWARE | |
2.1 Printers |
- Discovering Docker and Cassandra
- Five Minute Guide: Getting Started with Cassandra on Docker
- Spark for Cassandra Data Analysis
- Kafka-Docker: Steps To Run Apache Kafka Using Docker
- Apache Spark streaming with Kafka and Cassandra I
- Lambda Architecture with Kafka, Spark and Cassandra
- Structured Streaming Programming Guide
- [Structured Streaming + Kafka Integration Guide](http://spark.apache.org/docs/latest/structured-streaming
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
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
set-option -g default-command bash | |
set -g default-terminal screen-256color | |
set -g status-keys vi |
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
/// <summary> | |
/// Class for encrypting and decrypting texts. | |
/// | |
/// <see cref="https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.aesmanaged?view=netframework-4.7.2"/> | |
/// </summary> | |
public static class CypherKeeper | |
{ | |
private static readonly string _defaultPassword = "band4t1on_0l4k4s3qwerty"; | |
private static readonly byte[] _salt = { 0x43, 0x87, 0x23, 0x72, 0x45, 0x56, 0x68, 0x14, 0x62, 0x84 }; |
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
using System; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
public class Util | |
{ | |
/// <summary> | |
/// Valida que el número de una cédula sea válido, en cuanto | |
/// al digito verificador. | |
/// </summary> |
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
/* See LICENSE file for copyright and license details. */ | |
/* appearance */ | |
static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*"; | |
static const char normbordercolor[] = "#00BFFF"; | |
static const char normbgcolor[] = "#000000"; | |
static const char normfgcolor[] = "#00BFFF"; | |
static const char selbordercolor[] = "#0066ff"; | |
static const char selbgcolor[] = "#000000"; | |
static const char selfgcolor[] = "#ffffff"; |
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 python | |
############################################# | |
# # | |
# Simple GeoIP Script # | |
# by # | |
# n3x07 # | |
# Visit http://netc0de.blogspot.com # | |
# # | |
# Version 1.0 - Tested with: Python 2.7 # | |
# # |