Skip to content

Instantly share code, notes, and snippets.

View JRSalasM's full-sized avatar
🏠
Working from home

José R. Salas Montañez JRSalasM

🏠
Working from home
View GitHub Profile
@JRSalasM
JRSalasM / file.txt
Created June 3, 2020 05:34
NGINX - Configuracion
upstream my_http_servers {
server 127.0.0.1:5000; # httpServer2 listens to port 5000
}
server {
listen 80;
server_name 67.207.86.191;
root /var/www/sistemagestionProyecto/public;
add_header X-Frame-Options "SAMEORIGIN";
@JRSalasM
JRSalasM / file.sql
Last active May 25, 2020 16:52
POSTGRESQL - OBTENER COLUMNA EN JSON
SELECT row_to_json(r) FROM table_name AS r;
select json_agg(t) FROM (SELECT * from table_name) t;
@JRSalasM
JRSalasM / file.php
Created May 21, 2020 03:24
PHP -> create object
$config=Config::all();
$setting = [];
foreach($config as $value){
$setting[$value->key]=$value->value;
}
@JRSalasM
JRSalasM / file.php
Created May 3, 2020 03:59
LARAVEL - PRINT IN CONSOLE
error_log(json_encode($data, JSON_PRETTY_PRINT));
OR
>config\app.php
'providers' => [
//other providers
App\Providers\ConsoleOutputServiceProvider::class
@JRSalasM
JRSalasM / file.php
Last active May 2, 2020 21:18
LARAVEL - Rutas dinamicas
Route
// Home page
Route::get('/', [
'as' => 'home',
'uses' => 'PageController@index'
]);
// Catch all page controller (place at the very bottom)
Route::get('{slug}', [
@JRSalasM
JRSalasM / file.txt
Created May 2, 2020 02:50
LARAVEL 6 - CORS
//Instalamos
composer require fruitcake/laravel-cors
//Agregamos esta linea al archivo app/Http/Kernel.php
//en "protected $middleware"
\Fruitcake\Cors\HandleCors::class,
//Creamos arvhivo de conficuración
php artisan vendor:publish --tag="cors"
@JRSalasM
JRSalasM / file1.php
Created May 2, 2020 02:49
LARAVEL 6 - API CRUD
Use App\Article;
Route::get('articles', function() {
// If the Content-Type and Accept headers are set to 'application/json',
// this will return a JSON structure. This will be cleaned up later.
return Article::all();
});
Route::get('articles/{id}', function($id) {
return Article::find($id);
@JRSalasM
JRSalasM / file.jsx
Last active August 12, 2020 04:25
React - Modal component
import React from 'react'
import PropTypes from 'prop-types';
const Modal = ({title, children, handleCancelModal, handleOkModel, buttons, cancelText, okText, width}) => {
let widthSize = { maxWidth: width || 0 }
return (
<div className="modal fade show" style={{paddingRight: '17px', display: 'block', backgroundColor: 'rgba(255, 255, 255, 0.7)'}}>
<div className="modal-dialog" role="document" style={width ? widthSize : {}}>
<div className="modal-content">
{
@JRSalasM
JRSalasM / file.js
Created April 28, 2020 03:04
NODEJS - culqi token y payment
const Request = require("request");
const Payment = require('../models/payment.model');
const uuidv4 = require('uuid').v4;
exports.payment = (req, res) => {
console.log('----------------------------------------------------------------------------------------');
console.log(req.body);
let {username, card_number, cvv, expiration_month, expiration_year, email, amount } = req.body;
Request.post({
"headers": { "content-type": "application/json", "Authorization": "Bearer pk_test_drKwjGYg4zn3oNyP" },
@JRSalasM
JRSalasM / file.txt
Created April 28, 2020 03:00
Ubuntu - Watcher limit
echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p