Skip to content

Instantly share code, notes, and snippets.

View tatd3v's full-sized avatar
🎯
Focused

Tats tatd3v

🎯
Focused
View GitHub Profile
@tatd3v
tatd3v / passportPayment.js
Created April 10, 2024 14:01
PAGO DE PASAPORTE GOBERNACION ANTIOQUIA
// ==UserScript==
// @name Passport Payment Form Automation MED
// @version 0.1
// @description Automate filling out payment form
// @author Tats
// @match https://sedeelectronica.antioquia.gov.co/pasaporte/user/pago/*
// @grant none
// ==/UserScript==
Error: EISDIR: illegal operation on a directory, read
at Object.readSync (node:fs:625:3)
at tryReadSync (node:fs:390:20)
at Object.readFileSync (node:fs:427:19)
at UnableToResolveError.buildCodeFrameMessage (/home/tqueen/Documents/ELECSIS/TeachMe/teachme-mobile/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:304:17)
at new UnableToResolveError (/home/tqueen/Documents/ELECSIS/TeachMe/teachme-mobile/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:290:35)
at ModuleResolver.resolveDependency (/home/tqueen/Documents/ELECSIS/TeachMe/teachme-mobile/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:168:15)
at DependencyGraph.resolveDependency (/home/tqueen/Documents/ELECSIS/TeachMe/teachme-mobile/node_modules/metro/src/node-haste/DependencyGraph.js:353:43)
at /home/tqueen/Documents/ELECSIS/TeachMe/teachme-mobile/node_modules/metro/src/lib/transformHelpers.js:271:42
at Server.<anonymous> (/home/tqueen/Documents/ELECSIS/
package com.edu.uac.co.potterhead;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
@Override
public void onBindViewHolder(@NonNull RecyclerAdapter.CharacterViewHolder holder, int position) {
Character character = characterList.get(position);
holder.tvName.setText(character.getName());
holder.tvHouse.setText(character.getHouse());
holder.tvPatronous.setText(character.getPatronus());
holder.tvSpecies.setText(character.getBloodStatus());
holder.tvSpecies.setText(character.getSpecies());
package com.edu.uac.co.potterhead.Interface;
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Header;
import retrofit2.http.Headers;
public interface PotterHeadApi {
public class ListActivity extends AppCompatActivity {
PatientController pC;
ListView pList;
PatientCursorAdapter pca;
Patient pat;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
package com.edu.uac.co.grupo6_act4;
import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.CursorAdapter;
import android.widget.TextView;
package com.edu.uac.co.grupo6_act4;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import android.database.Cursor;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;