Skip to content

Instantly share code, notes, and snippets.

View Nieto2018's full-sized avatar

Antonio Nieto García Nieto2018

View GitHub Profile
@NorbiPeti
NorbiPeti / IntelliJFlatpak.md
Last active December 30, 2025 05:58
IntelliJ IDEA Flatpak Setup Guide

IntelliJ IDEA Flatpak Setup Guide

In this guide I collect all the things I had to manually set up after installing IntelliJ using Flatpak on Linux. Also mostly applicable to other JetBrains IDEs like PHPStorm, WebStorm, Rider, PyCharm etc.

Java versions

Flatpak uses an isolated environment to install the latest version of (usually graphical) applications without having to rely on installed system libraries and such with varying versions.

@pmkay
pmkay / installing-postman.md
Created April 27, 2020 02:49 — forked from ba11b0y/installing-postman.md
Installing Postman on Ubuntu/Gnome

Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux

Although I highly recommend using a snap

sudo snap install postman

Installing Postman

tar -xzf Postman-linux-x64-5.3.2.tar.gz
@carlosalvarez91
carlosalvarez91 / example.js
Last active December 11, 2019 12:29
Verify email
import React from 'react';
import { graphql, compose, withApollo } from 'react-apollo'
import openNotification from '../components/NotificationComponent'
import gql from 'graphql-tag';
const mutations = {
verifyToken: gql`
mutation VerifyToken($token: String!) {
verifyToken(token: $token) {
@carlosalvarez91
carlosalvarez91 / example.py
Last active December 4, 2019 00:35
Send verification email
#settings.py -------------------------------------------------------------------------------------
#https://www.digitalocean.com/community/tutorials/how-to-use-google-s-smtp-server
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'# ?
EMAIL_HOST_USER = 'whateveremail@test.com'
EMAIL_HOST_PASSWORD = 'Yourpassword12345'
EMAIL_PORT = 587 #?
SITE_NAME = "The Name of your app"