- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Python 3 | |
$ sudo apt-get install python3 | |
# Install python3-virtualenv | |
$ sudo apt-get install python3-virtualenv | |
# You can checkout you virtualenv version | |
$ virtualenv --version | |
# Create you virtualenv in the folder you that want to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Our first step will be install all of the pieces that we need from the repositories. | |
We will install pip, the Python package manager, in order to install and manage our Python components. | |
We will also install the database software and the associated libraries required to interact with them. | |
sudo apt-get update | |
sudo apt-get install python3-pip python3-dev libpq-dev postgresql postgresql-contrib | |
2) Log into an interactive Postgres session by typing: | |
sudo -u postgres psql | |
3) First, we will create a database for our Django project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */ | |
html, | |
body, | |
p, | |
ol, | |
ul, | |
li, | |
dl, | |
dt, | |
dd, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.network | |
import android.util.Log | |
import retrofit2.Call | |
import retrofit2.Callback | |
import retrofit2.Response | |
import com.example.utils.ErrorUtils | |
/** | |
* Extension for awaitResponse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Intellij IDEA | |
cd "C:%HOMEPATH%\AppData\Roaming\JetBrains\IntelliJIdea20*" | |
rmdir "eval" /s /q | |
del "options\other.xml" | |
reg delete "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\jetbrains\idea" /f | |
:: PhpStorm | |
cd "C:%HOMEPATH%\AppData\Roaming\JetBrains\PhpStorm20*" | |
rmdir "eval" /s /q | |
del "options\other.xml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import getopt | |
import json | |
import os | |
import sys | |
import pyperclip | |
def get_input_string_from_clipboard(): | |
input_string = json.loads(pyperclip.paste()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd C:\Program Files\Docker\Docker | |
DockerCli.exe -SwitchDaemon |
OlderNewer