Herramientas Informaticas

Categoría: Sin categoría Página 16 de 51

Vision del mundo perfecto Creando

Desde hace tiempo he estado pensando cual seria mi visión del mundo perfecto para mi, es decir, si yo tuviera el poder de cambiar el mundo que cosas cambiaría, y es allí donde me puse a pensar.
Me puse a meditar sobre que es lo que mi ser busca y e encontrado y pensé en lo siguiente, yo necesito libertad, ¿y realmente soy libre?, ¿En donde se encuentra la libertad?, ¿Que es la libertad?, ¿soy realmente libre?, ¿Estas cómodo con tu vida?
La libertad es algo que tenemos que aprender a tomar como seres vivos que somos, tal como las aves son libres volando por los cielos sin pensar en el mañana, ni que comerán, ni cuanto ganaran, quisiera ser ave, pero no, soy un humano, eso creo.
Si las aves tienen la ventaja de volar, por que es de su naturaleza volar y ser libre, yo como humano debo de tener mi propia naturaleza, para sentirme libre, que sera, ¿Es trabajar día a día para comer y poder mantenerme? no suena muy alentador.
Entonces mi naturaleza cual es, para hacer lo que es natural, la naturaleza de un ser como yo es pensar y ser creativo, es fácil si lo intentas, es cuestión de cerrar los ojos y ya se genera una solución se genera un pensamiento.
El mundo perfecto se pinta sobre el lienzo interno de nosotros mismos.
Tu puedes crear tu mundo, pero antes piensa como quieres que este sea.
La realidad la puedes modificar y al tiempo es como quieres que sea viajando por un sin numero de probabilidades. 

Imaginar y crear es de nuestra naturaleza, es lo que nos dará libertad, usa tus alas, sigue tu naturaleza, no te conviertas en algo mecánico que vive día al día haciendo lo mismo.

Atte.
Una forma de vida que intenta encontrar la naturaleza de su cuerpo, alma y espíritu, intentando crecer tanto intelectual como espiritual.

Sigue tu naturaleza y que nadie te reprima

(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v2.0”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));

GAMEPLAY 8-BIT BOY RETRO

[youtube http://www.youtube.com/watch?v=2dqtMAKZanA]

Que tal camaradas uno mas a la lista, espero les guste, saludos 😀

(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v2.0”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));

LET’S ASSAULTCUBE PISTOLAZOS GRATIS MY FRIEND

[youtube http://www.youtube.com/watch?v=j6f2wHyPXsA]

QUE TAL CAMARADAS LES DEJO ESTE FABULOSO JUEGO DE DISPAROS COMO ME GUSTAN, ESPERO LES GUSTE ES GRATIS Y LO PUEDES DESCARGAR DE LA SIGUIENTE PAGINA

http://assault.cubers.net/

UEDES SEGUIRME DESDE LOS SIGUIENTES ENLACES

BLOG

http://goo.gl/YO2SK6

TWITTER

http://goo.gl/spNRQE

FACEBOOK

http://goo.gl/IWRIib

(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/es_LA/sdk.js#xfbml=1&version=v2.0”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));

Gameplay Kof 2002

Extraer los conceptos de un CFDI V3.2 XML en C#

 

Buenas camaradas.

 

Les dejo la parte del fuente para poder sacar la información de un XML de la factura, es esta parte sacaremos lo que son los conceptos, es decir, el detalle de la factura, es donde vienen los productos.

Una vez que tengamos la clase cfdv32.cs al proyecto, que les dije como generarla en entradas anteriores, codificamos de la siguiente manera.

Le dejo el video demostrativo también

   1: using System;

   2: using System.Collections.Generic;

   3: using System.ComponentModel;

   4: using System.Data;

   5: using System.Drawing;

   6: using System.Linq;

   7: using System.Text;

   8: using System.Threading.Tasks;

   9: using System.Windows.Forms;

  10: using System.Xml.Serialization;

  11: using System.Xml;

  12: using System.Data.SQLite;

  13: using LECTOR_CFDI.Clases; 

  14:  

  15: namespace LECTOR_CFDI

  16: {

  17:     public partial class Form1 : Form

  18:     {

  19:         string strUUID;

  20:         string strSelloSat;

  21:         string strNoCertificadoSat;

  22:         string strSelloCFD;

  23:         string strFechaTimbrado;

  24:         string strVersion;

  25:         

  26:         public Form1()

  27:         {

  28:             InitializeComponent();

  29:         }

  30:  

  31:         private void button1_Click(object sender, EventArgs e)

  32:         {

  33:             XmlSerializer serielizer = new XmlSerializer(typeof(Comprobante));

  34:             XmlTextReader reader = new XmlTextReader(@"C:xml.xml");

  35:             Comprobante factura = (Comprobante)serielizer.Deserialize(reader);

  36:  

  37:             classConexion bd = new classConexion();

  38:  

  39:  

  40:             classComplemento complemento = new classComplemento();

  41:             complemento.strUUID = (factura.Complemento.Any[0].Attributes[3].Value);

  42:             complemento.strVersion = (factura.Complemento.Any[0].Attributes[2].Value);

  43:             complemento.strFechaTimbrado = (factura.Complemento.Any[0].Attributes[4].Value);

  44:             complemento.strSelloSat = (factura.Complemento.Any[0].Attributes[7].Value);

  45:             complemento.strSelloCFD = (factura.Complemento.Any[0].Attributes[5].Value);

  46:             complemento.strNoCertificadoSat = (factura.Complemento.Any[0].Attributes[6].Value);

  47:             complemento.insertar();

  48:  

  49:             //INSERTANDO LOS CONCEPTOS

  50:             foreach (ComprobanteConcepto comp in factura.Conceptos)

  51:             {

  52:                 classConceptos clsConceptos = new classConceptos();

  53:                 clsConceptos.strUUID = complemento.strUUID;

  54:                 clsConceptos.strImporte = comp.importe.ToString () ;

  55:                 clsConceptos.strDescripcion = comp.descripcion.ToString();

  56:                 clsConceptos.strValorUnitario = comp.valorUnitario.ToString();

  57:                 clsConceptos.strCantidad = comp.cantidad.ToString();

  58:                 clsConceptos.insertar();

  59:  

  60:             }

  61:         

  62:         }

  63:         

  64:     }

  65: }

MAKE MONEY WITH YOUR LITTLE YOUTUBE CHANNEL WITH FREEDOM

you want to make money quickly, easily and safely with your videos to Youtube, and have enabled the production of income and still do not have Network , this will interest

(Network for all large and small youtubers … a few requirements and voluntary permanence):

In such case you are directly Youtube Partner , you know how slow and difficult the process of revision to monetize videos and almost always appears like the famous and hated exclamation point (!). Means you need tests to check the commercial use rights (although the video is 100% yours).

Most Networks to accept you as a partner, make you sign forced contracts last from one year but actually are perpetual contracts because when you send a request for dismissal, postpone your request whenever they want meaning they can not leave can ever take over your content and often acquire a debt if you do not reach the minimum yield (100USD).

When you become a member of Freedom at last you will be FREE to earn money with your videos.

automatically avoid the review process and so ALL can monetize your videos (with no copyright or third-party content).

Characteristics of Freedom:

  1. No minimum payment . Monthly payments via PayPal automatically and NOT forces you to get a minimum of performance and you need not be of age to receive your money.
  2. No forced contracts. If you did not like Freedom can go as you please, with one click and without explanation. But pay attention: if you decide to leave, you can only return to the Freedom family when you have a different channel.
    Music to your videos. Freedom offers you an extensive music library, plus: IF YOU ARE A MUSICIAN, PROTECT YOUR CONTENT.
  3. . What everyone is looking GAMER If you do PlayGames of any game, Freedom is for you and all MineCrafteros we offer: free contests and next-generation servers.
  4. Transparency. Month after month can watch every penny you earned no buts or censorship.
    It was founded in early 2014. Its founder is George Vanous .
  5. Intuitive interface. Dashboard Panel and User friendly, features tutorials and forums to grow your channel.
    60% to 70% commission. You get a 60% down and if your channel is large or becomes of great, you get 70%.
    If you have more than one channel and you’re part of Freedom, you can add (s) at no extra requests.

Cons

No support in Spanish and need before entering your Adsense account linked to your youtube channel (if you’re underage, there are several ways to do so).

Requirements

  • Have at least 8 videos and 30 reproductions daily (1k per month).
  • If you are interested in being part of Freedom I recommend entering through the referral link you leave at the end.
  • What is the referral link? When you enter using a referral link means that a verified user or a direct advisor to Freedom are recommending your channel and thus have more opportunities.
  • You can use this link referred to enter the networkhttps://www.freedom.tm/via/JULIO101290

As I started.

I at first, I started up my notes from school , to blogs, to Blogger to be exact, then went to Youtube asvideo tutorials because it did not have much space to store books and notebooks. I also realized that he could find faster notes needed in the blog, to look for browsing books.

Then I realized that they could charge, just to make use of this service, using google adsense.

Until recently I realized this wonderful network, I’ve since August 2014, and have paid me month after month.

At first takes two months, like any network, and then you’ll be paying it.

It is certainly a good deal, where you learn, and you do not need stationery, plus no risk, taking creativity you can do much.

Dare to make money with your videos, and you’ll be FREE, starting today, enters through the following link referred https://www.freedom.tm/via/Julio101290151410

VIDEO DEMONSTRATION

[youtube http://www.youtube.com/watch?v=O5byE1C4hqc&hl=en&hd=1]

ZDAEMON: DIVERSIÓN BARRILISTICA

 

Saludos 😀
GAMERCRAFT: gamercraft.g-s.nu
Espero que les guste tanto como a mi ;D
—————————————-­­———————————-
ALGUNAS PREGUNTAS;
¿Con que programas grabas?
Me cambie a DXTORY
¿Jugaras mas juegos?
Si ya que hasta el momento me estoy preparando
¿Vas a hacer videos sobre Minecraft?
Si ya que tenga todo muy bien gestionado 😀
—————————————-­­———————————
¿DONDE TE PUEDO SEGUIR?
FACEBOOK:https://www.facebook.com/elvisjassyel
TWITTER: NO DISPONIBLE TEMPORALMENTE
SKYPE: Jassyel Leyva Rodríguez
—————————————-­————————————
CANALES FAVORITOS:
REAPER: https://www.youtube.com/channel/UCJ4u…
SKYDOESMINECRAFT: https://www.youtube.com/user/SkyDoesM…
AVI THE GAMER: https://www.youtube.com/channel/UCLJK… | PROXIMAMENTE NUEVA SERIE 😀

[youtube http://www.youtube.com/watch?v=YWpVe9f1iLc&hl=en&hd=1]

GAMERCRAFT: ESTOY DE VUELTA! – #02 SERVER MINECRAFT 1.7.2 []

[youtube http://www.youtube.com/watch?v=scjVtaAvSMw&hl=en&hd=1]

Mi hermano, ya esta creciendo, alli la lleva

 

Apollenlo porfa

 

Saludos

COMO PONER BOTON DE DONACIONES PAYPAL A CANAL DE YOUTUBE

[youtube http://www.youtube.com/watch?v=tkmOv9jnNes&hl=en&hd=1]

NUEVO CANAL DE DAILYMOTION

[dailymotion-channel user=elJulius555 type=carousel]

Página 16 de 51

Creado con WordPress & Tema de Anders Norén