Data is organized to meet a schema. Think tables which organize data into rows and columns.
Data is unorganized and lacks a schema. Imagine collections of html documents including text and images not organized in any consistent way.
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<url> | |
<loc>http://unidavi.edu.br/</loc> | |
</url> | |
<url> | |
<loc>http://unidavi.edu.br/faleConosco</loc> | |
</url> | |
<url> | |
<loc>http://unidavi.edu.br/radio</loc> |
#!/bin/sh | |
# Make sure to: | |
# 1) Name this file `backup.sh` and place it in /home/ubuntu | |
# 2) Run sudo apt-get install awscli to install the AWSCLI | |
# 3) Run aws configure (enter s3-authorized IAM user and specify region) | |
# 4) Fill in DB host + name | |
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket) | |
# 6) Run sudo mkdir /data/tmp | |
# 7) Run sudo chmod 777 /data/tmp/ |
version: '2' | |
services: | |
dremio: | |
image: dremio/dremio-oss | |
container_name: dremio | |
#volumes: | |
#- dremio-local:/opt/dremio/data | |
ports: | |
- 9047:9047 | |
- 31010:31010 |
Data is organized to meet a schema. Think tables which organize data into rows and columns.
Data is unorganized and lacks a schema. Imagine collections of html documents including text and images not organized in any consistent way.
#!/usr/bin/python | |
# Rules list | |
# [email protected] | |
import sys | |
import re | |
import os | |
rules_directory = "/var/ossec/rules/" |
@echo off | |
:: make sure to change the settings from line 4-9 | |
set dbUser=backup | |
set dbPassword="MyBackupUserPass" | |
set backupDir="C:\laragon\bkp\mysql" | |
set mysqldump="C:\laragon\bin\mysql\mysql-5.7.24-winx64\bin\mysqldump.exe" | |
set mysqlDataDir="C:\laragon\data\mysql" | |
set zip="C:\Program Files\7-Zip\7z.exe" |
#!/bin/sh | |
# Adds an IP to Cloudflare IP block list | |
# Path: /var/ossec/active-response/bin/cloudflare-ban.sh | |
# Authors: Bryan Dwyer (bdtech) and Almir Bolduan (almirb) | |
# Last modified: May 08, 2019 | |
# | |
# Sample config (Edit /var/ossec/etc/ossec.conf): | |
# | |
# <command> | |
# <name>cloudflare-ban</name> |
// ==UserScript== | |
// @name LeaoHelper | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Script auxiliar do aplicativo Leão. | |
// @author Almir Bolduan | |
// @include https://extratoir.inss.gov.br/irpf01/pages/consultarExtratoIR.xhtml* | |
// @grant none | |
// ==/UserScript== |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title> Média de 2 Notas </title> | |
<script LANGUAGE="JavaScript" type="text/javascript"> | |
var nota1 = parseInt(prompt("Qual a nota 1?")); |