Skip to content

Instantly share code, notes, and snippets.

View LUS24's full-sized avatar

Leonardo U Spairani LUS24

  • Mallorca, Spain
View GitHub Profile
@LUS24
LUS24 / Programming_Languages_Extensions.json
Created October 22, 2022 08:54 — forked from ppisarczyk/Programming_Languages_Extensions.json
Programming Languages and their File Extensions
[
{
"name":"ABAP",
"type":"programming",
"extensions":[
".abap"
]
},
{
"name":"AGS Script",
@LUS24
LUS24 / requirements.txt
Created July 19, 2020 06:04 — forked from miraculixx/example.MD
Python multiprocess parallel selenium web scraping with improved performance
beautifulsoup4==4.6.3
certifi==2018.10.15
chardet==3.0.4
idna==2.7
lxml==4.2.5
requests==2.20.1
selenium==3.141.0
urllib3==1.24.1
@LUS24
LUS24 / git_submodules.md
Created September 9, 2019 03:19 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@LUS24
LUS24 / rhel7-moodle.sh
Created April 23, 2019 01:59 — forked from mrverrall/rhel7-moodle.sh
A script that installs and configures all the core components for moodle on RHEL/Centos 7 leaving you with a running site complete with AV scanning and Memcached
#!/bin/bash
#
# This Bash script installs Moodle (http://moodle.org) and all it's
# requirements into a freshly installed Centos or RHEL 7 operating system.
# It assumes an 'Enforced' SELinux environment and configures the system
# accordingly.
#
# It is designed to be instructional and clear to read to persons unfamiliar
# with Bash and as such does *no* sanity checking before taking actions.
# Becasue of this *great* care should be taken if you feel the urge to run