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
#!/bin/bash | |
order=("screenName" "eventCategory" "eventAction" "eventLabel") | |
printf '%s;' ${order[@]} > $1.csv | |
echo >> $1.csv | |
while IFS='' read -r line || [[ -n "$line" ]]; do | |
if ! [[ "$line" == *"Passing"* ]]; then continue; fi | |
IFS=',' read -r -a split <<< "$line" |
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.anie.anie | |
import android.app.NotificationChannel | |
import android.app.NotificationManager | |
import android.app.PendingIntent | |
import android.content.Intent | |
import android.os.Build | |
import android.support.v4.app.NotificationCompat | |
import android.support.v4.app.NotificationCompat.DEFAULT_ALL | |
import com.anie.anie.studentHome.StudentHomeActivity |
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
#!/bin/bash | |
while getopts ":f:o:" p; do | |
case "${p}" in | |
f) | |
infile=${OPTARG} | |
;; | |
o) | |
outfile=${OPTARG} | |
;; | |
esac |
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
:: 6/3/14 21:09 - 5/4/14 03:18 | |
:: iProtect 4.1 | |
:: Criador: [email protected] | |
:: Versão anterior (4.0) -----> http://pastebin.com/QBjhnQvf | |
:: Basta seguir as instruções dos menus do programa | |
:: Incluida barra de progresso ao criptografar | |
@echo off | |
setlocal enabledelayedexpansion | |
mode con cols=69 lines=20 |
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.PendingIntent; | |
import android.appwidget.AppWidgetProvider; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.os.AsyncTask; | |
import android.support.annotation.NonNull; | |
import android.widget.RemoteViews; | |
import java.util.HashMap; | |
import java.util.Map; |