Skip to content

Instantly share code, notes, and snippets.

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

Ishaan Kakkar ishaan1995

🏠
Working from home
View GitHub Profile
@ishaan1995
ishaan1995 / github_discussion_alert.py
Created November 30, 2018 09:45
Send Slack alert on new comment on discussion
import os
import json
from datetime import datetime, timedelta
import time
import requests
SLACK_URL = '<slack-hook-url-here>'
SLACK_ICON_URL = '<icon-url-for-message-here>'
SLACK_USERNAME = '<name-of-app-message-here>'
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.applicationId("myAppId")
.server("http://192.168.1.108:1337/parse/")
.build()
);
final ParseFile file = new ParseFile(f);
file.saveInBackground(new SaveCallback() {
public void done(ParseException e) {
// Handle success or failure here ..
if (e == null) {
Toast.makeText(getApplicationContext(), "File Uploaded", Toast.LENGTH_SHORT).show();
Log.d("ishaan","uploadede url: "+file.getUrl());
02-12 12:58:19.263 7092-7092/com.ishaan.production.fileupload D/ishaan-parse: i/o failure
02-12 12:58:19.263 7092-7092/com.ishaan.production.fileupload W/System.err: com.parse.ParseRequest$ParseRequestException: i/o failure
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at com.parse.ParseRequest.newTemporaryException(ParseRequest.java:290)
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at com.parse.ParseRequest$2.then(ParseRequest.java:145)
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at com.parse.ParseRequest$2.then(ParseRequest.java:139)
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at bolts.Task$15.run(Task.java:917)
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
02-12 12:58:19.273 7092-7092/com.ishaan.production.fileupload W/System.err: at java.util.concu