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
version: '3' | |
services: | |
postgres: | |
image: postgres:latest | |
container_name: my-postgres-db | |
environment: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres |
togglershrey
I hereby claim:
- I am with-shrey on github.
- I am togglershrey (https://keybase.io/togglershrey) on keybase.
- I have a public key ASD137aZwhrmVXd5e0XRKtQNX52wZv26NWVXXFT7r7s4HAo
To claim this, I am signing this object:
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
var contactForm = $(".contact-form"); | |
if(contactForm.length){ | |
var contactResault = $("body").append("<span class='form-resault'></span>").find(".form-resault"); | |
contactForm.each(function(){ | |
var this_form = $(this); | |
var contactFormInput = this_form.find(".form-control"); | |
this_form.on("submit", function() { | |
$("#cnt-btn").removeClass("fa-paper-plane").addClass("fa-spinner fa-spin"); | |
var form_data1 = $(this).serialize(); | |
if(!contactFormInput.parent().hasClass("input-error") && contactFormInput.val()){ |
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
var contactForm = $(".subscription-form"); | |
if(contactForm.length){ | |
var contactResault = $("body").append("<span class='form-resault'></span>").find(".form-resault"); | |
contactForm.each(function(){ | |
var this_form = $(this); | |
var contactFormInput = this_form.find(".form-control"); | |
this_form.on("submit", function() { | |
$("#sub-btn").removeClass("fa-paper-plane").addClass("fa-spinner fa-spin"); | |
var form_data1 = $(this).serialize(); | |
if(!contactFormInput.parent().hasClass("input-error") && contactFormInput.val()){ |
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
Google search term pet api | |
API Key : ad4e5f02703f7faf7945ab02d55fa136 | |
Api Search Engines: | |
www.programmableweb.com | |
apis.io etc.. | |
Api used | |
http://api.petfinder.com | |
http://www.petfinder.com/developers/api-docs |
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
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:padding="16dp"> | |
<TextView | |
android:text="I’m in this corner" | |
android:layout_height="wrap_content" | |
android:layout_width="wrap_content" |