Skip to content

Instantly share code, notes, and snippets.

View mariogarcia-ar's full-sized avatar
🎯
Focusing

Mario Garcia mariogarcia-ar

🎯
Focusing
  • https://TuCuota.Online
  • Rosario, Santa Fe, Argentina
View GitHub Profile
@linbabi
linbabi / gsap-homepage-demo-2.markdown
Created September 26, 2022 07:15
GSAP Homepage Demo 2
@benbovy
benbovy / ball_tree_xr_accessor.ipynb
Last active July 31, 2022 20:58
Ball Tree Xarray Index
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Jaboo9
Jaboo9 / github.md
Created June 16, 2020 20:37 — forked from dahlbyk/github.md
Mastering GitHub

Mastering GitHub

GitHub is often used as a basic Git host, but its platform has so much more to offer. From simple and powerful issues and pull requests, to advanced features for power users and integrators, it’s a tool worth knowing well in its own right. This session will review everything you need to know to master collaboration with GitHub, from best practices for GitHub Issues and how it represents basic Git concepts, to hidden features and the tools enabling its developer ecosystem.

  • Git Hosting
# -*- coding: utf-8 -*-
import numpy as np
def predict(x,theta,theta_0=None):
'''
Funcion de prediccion
x un vector del training example
theta es el vector normal al plano
# -*- coding: utf-8 -*-
import numpy as np
def predict(x,theta,theta_0=0):
'''
Funcion de prediccion
x un vector del training example
theta es el vector normal al plano
@pshubham95
pshubham95 / prebuild.js
Created August 9, 2019 21:54
Cordova prebuild hook
const path = require('path');
const { exec } = require('child_process');
const fs = require('fs');
const rimraf = require('rimraf');
function renameOutputFolder(buildFolderPath, outputFolderPath) {
return new Promise((resolve, reject) => {
fs.rename(buildFolderPath, outputFolderPath, (err) => {
if (err) {
reject(err);
@bradtraversy
bradtraversy / docker-help.md
Last active November 15, 2024 17:06
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@edgardo001
edgardo001 / tutorialDockerCentos7.md
Last active April 23, 2024 04:47
Tutorial realizado con Docker en Centos 7

Instalar docker en centos 7

$> sudo yum update -y
$> sudo yum install docker
$> sudo systemctl start docker

para que este disponible cuando se inicia la maquina

$> sudo systemctl enable docker
@nielslange
nielslange / README.md
Last active April 15, 2024 18:25
Genesis Framework snippets

Genesis Framework snippets

Accessibility

Enable Accessibility Features

  • functions.php:
//* Enable Genesis Accessibility Components
add_theme_support( 'genesis-accessibility', array( '404-page', 'drop-down-menu', 'headings', 'rems', 'search-form', 'skip-links' ) );
for i in 1 2 3; do
docker-machine create -d virtualbox node-$i
done
eval $(docker-machine env node-1)
docker swarm init \
--advertise-addr $(docker-machine ip node-1)
TOKEN=$(docker swarm join-token -q worker)