Skip to content

Instantly share code, notes, and snippets.

@gvelizlasteniasoftware
gvelizlasteniasoftware / organization.wsdl
Created October 1, 2020 15:48 — forked from umidjons/organization.wsdl
SOAP server/client example in WSDL mode
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="Organization"
targetNamespace="urn:Organization"
xmlns:tns="urn:Organization"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
@gvelizlasteniasoftware
gvelizlasteniasoftware / gmail.php
Created June 26, 2020 20:22
PHPMailer + Gmail SMTP + Config
<?php
/**
* Habilitar en Acceso de apps menos seguras.
* Luego de loguearse en Gmail ir a:
* https://myaccount.google.com/u/0/lesssecureapps?pli=1
* y permitir esto
*/
/**
* Deshabiliar captch interno de Gmail
@gvelizlasteniasoftware
gvelizlasteniasoftware / test.v
Created June 4, 2020 23:54
Add event to Google Calendar, every last day of every month.
BEGIN:VCALENDAR
BEGIN:VEVENT
DTSTART:20200131
DTEND:20200131
RRULE:FREQ=MONTHLY;BYDAY=SU,MO,TU,WE,TH,FR,SA;BYSETPOS=-1;WKST=SU
SUMMARY:Every last day of every month
END:VEVENT
END:VCALENDAR
@gvelizlasteniasoftware
gvelizlasteniasoftware / bitsamin.sh
Last active June 4, 2020 23:56
How to download a file from Windows command line.
bitsadmin /transfer myDownloadJob /download /priority high http://test.com/test/test.rar C:\Users\Main\Desktop\test.rar
@gvelizlasteniasoftware
gvelizlasteniasoftware / AndroidManifest.xml
Created April 21, 2020 15:06
Fix Cleartext Traffic Error in Android 9 Pie (Allow HTTP traffic) | Permitir trafico HTTP en Android 9
<!-- Add usesCleartextTraffic = true -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.apache.cordova" android:versionName="1.0" android:versionCode="1">
...
<application android:usesCleartextTraffic = "true"></application>
...
</manifest>
@gvelizlasteniasoftware
gvelizlasteniasoftware / gist:51e6b06bb64f329e13f4c78ff4d09532
Last active July 25, 2023 05:40 — forked from pitch-gist/gist:2999707
HTML: Pagina Simple de Mantenimiento
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>