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
''' | |
Title : Pandas Row Shuffler | |
Author : Arkadeep | |
''' | |
import numpy as np | |
import pandas as pd | |
import sys | |
arguments = sys.argv[1] | |
args = arguments.strip('.csv'); |
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
from html.entities import name2codepoint | |
from html.parser import HTMLParser | |
class SlackifyHTML(HTMLParser): | |
def __init__(self, html, *args, **kwargs): | |
super().__init__(*args, **kwargs) |
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 android.app.Dialog; | |
import android.app.ProgressDialog; | |
import android.os.Bundle; | |
import android.support.v4.app.DialogFragment; | |
public class ProgressDialogFragment extends DialogFragment { | |
private static final String ARG_MESSAGE = "message"; | |
private static final String ARG_INDETERMINATE = "indeterminate"; |