Skip to content

Instantly share code, notes, and snippets.

@Fernando-Dev
Fernando-Dev / API.md
Created March 7, 2020 20:30 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@Fernando-Dev
Fernando-Dev / PdfPrint.java
Created January 30, 2019 13:56 — forked from brettwold/PdfPrint.java
How to save a PDF from any Android WebView
package android.print;
import android.os.CancellationSignal;
import android.os.ParcelFileDescriptor;
import android.util.Log;
import java.io.File;
public class PdfPrint {
Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
@Fernando-Dev
Fernando-Dev / pom.xml
Created May 1, 2018 04:39 — forked from 3355844/pom.xml
Finished Simple JDBC(mySql) jsp servlet CRUD
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>lalala</groupId>
<artifactId>lalala</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>lalala Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
@Fernando-Dev
Fernando-Dev / AndroidManifest.xml
Created April 2, 2018 06:46 — forked from BrandonSmith/AndroidManifest.xml
Quick example of how to schedule a notification in the future using AlarmManager
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cards.notification">
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"