martes, 31 de marzo de 2020

Habilitar siempre se abra aplicación y no pida las UAC anunciante desconocido se ejecute siempre windows 10 - Включить всегда открытое приложение и не просить неизвестного рекламодателя UAC всегда запускать windows 10

Habilitar siempre se abra aplicación y no pida las UAC anunciante desconocido se ejecute siempre windows 10

Включить всегда открытое приложение и не просить неизвестного рекламодателя UAC всегда запускать windows 10

Enable always open app and don't ask UAC unknown advertiser to always run windows 10

Tutoriales
https://www.trucoswindows.com/truco/deshabilitar-uac-para-una-determinada-aplicacion
https://www.youtube.com/watch?v=Ai_l_L-8o-c


Turn off UAC prompts on specific Apps - Windows 10 - YouTube


Tutorial para Apagar las UAC de aplicaiones en Windows 10 con creacion de acceso directo
Por: Alexander Arias

- Abrir el programador de tareas: Tecla windos + R
            digite: taskschd.msc
- Crear una Tarea Nueva
   Nombre
   Pestaña GEneral: Ejecutar con los privilegios más altos
   Pestaña acciones: Buscar el .exe que se quiere ejecutar
   Pestaña condiciones: Deseleccionar todo
   Pestaña COnfiguración: chulo solo en Casilla Permitir que la tarea se ejecute a petición

- Se puede ejecutar desde el programador de tareas: Click derecho ejecutar, esto para ver si funciono

- Crear acceso directo:
 
  Click derecho en el escritorio
  En escriba la ubicación del elemento: c:\windows\system32\schtasks.exe /run /tn "Saltarse UAC para Paint Tool SAI"
   O simplemente:  schtasks.exe /run /tn "Saltarse UAC para Paint Tool SAI"
En siguiente se le da el Nombre: Paint Tool SAI

   Se ensaya: es decir doble click en el icono

- PErsonalizar Icono: CLick derecho en el icono: Escoger un icono al gusto



This is how you disable UAC on SPECIFIC applications without shutting off UAC completely for your system (recommend to leave system wide UAC on)




DOWNLOAD PAINT TOOL SAI FULL VERSION - FREE & PORTABLE


DOWNLOAD PAINT TOOL SAI FULL VERSION - FREE & PORTABLE




https://drive.google.com/drive/folders/0B2rlHrSpGhl3OUlUT082a3VlX1E



Ever Heard About Paint Tool SAI?  

*heavy breathing*

Hey guys, I'm still here, alive.

Just lurking around the web looking for something to publish. Nothing to do for now, but if I'm writing a post now, there have to  be something with it. It's like my hands are working on it's own with me spacing out thinking about my past while wasting my time (heck, what's with that?).

Man, you sure are weird.
Well, I guess let me just be that annoying guy who introduces you with things you've already knew. Maybe, it's better than reading my rants and swears how much time you've wasted in here. (Please, bear with it.)

Let's get back to the main topic, had you ever used Paint Tool Sai?

According to Wikipedia, Paint Tool Sai is used as a lightweight painting application. Details about it can be found on the site. I won't talk about it, I'm here to make you feel left out for not knowing about this. Why?

Obviously, this software is freaking awesome. Talk about easy, after you are used to it, you could even make an artwork using your mouse. Not that crappy stick man but the real thing-or even anime-like.


Yeah, using mouse maybe.

One thing that I love using SAI is the Lineart function provided. This is the best feature for those who can't afford to buy drawing tablets but wants to try digital arts. You could draw lines and edit it by moving the respective points using your mouse. They also provide the pressure tools to adjust the lines thickness just like using the pen when drawing...

To be honest, I'm not that good in promoting things. Just try it out and use it yourself to know more about it.

Full Version Direct Download (Portable): Google Drive

viernes, 27 de marzo de 2020

update Window 10 build 1903 download offline - Обновление Window 10 build 1903 скачать офлайн

update Window 10 build 1903 download offline
Обновление Window 10 build 1903 скачать офлайн

Manually Install Windows 10 version 1903 May 2019 Update

To upgrade your current version of Windows 10 to the May 2019 Update, head to the Windows 10 download page. Then click the “Update now” button to download the Update Assistant tool.

https://www.groovypost.com/howto/manually-install-windows-10-1903-may-2019-update-now/

download update
https://www.microsoft.com/en-us/software-download/windows10

Métodos de Biseccion con ingreso de funcion como string y las funciones inline y eval en octave o matlab Методы деления пополам с вводом функции в виде строковых и встроенных и оценочных функций в октаве или матричном Bisection method with function input as string and inline and eval functions in octave or matlab

Métodos de Biseccion con ingreso de funcion como string y las funciones inline y eval en octave o matlab
Методы деления пополам с вводом функции в виде строковых и встроенных и оценочных функций в октаве или матричном
Bisection method with function input as string and inline and eval functions in octave or matlab

Autor: Alexander Arias
Fecha: 26 de marzo de 2020

Código:

disp("Métodos de Biseccion con inline");
xai=input('Ingrese el intervalo inferior: ');
xbi=input('Ingrese el intervalo superior: ');
tol=input('Ingrese el porcentaje de error: ');
%syms x;
%ejemplo: limite inferior 12, superior 16
%error: 0.5
%funcion: '(668.06/x)*(1-exp(-0.146843*x))-40'
fxstr=input('Ingrese la funciòn: ');
fx=inline(fxstr);
i=1;
%f1=subs(fx,x,xai);
%f2=subs(fx,x,xbi);
f1=feval(fx,xai);
f2=feval(fx,xbi);
ea(i)=100;
if f1*f2 < 0
    xa(i)=xai; f1=feval(fx,xai);%f1=subs(f,x,xa(i));
    xb(i)=xbi; f2=feval(fx,xbi);%f2=subs(f,x,xb(i));
    xr(i)=(xa(i)+xb(i))/2; f3=feval(fx,xr(i));%f3=subs(f,x,xr(i));
    fprintf('It.       Xa               Xr             Xb           Error aprox \n');
    fprintf('%2d \t %11.7f \t %11.7f \t %11.7f \n',i,xa(i),xr(i),xb(i));
    while abs(ea(i)) >= tol,
      if f1*f3<0
         xa(i+1)=xa(i);f1=feval(fx,xa(i+1));%f1=subs(f,x,xa(i+1));
         xb(i+1)=xr(i);f2=feval(fx,xb(i+1));%f2=subs(f,x,xb(i+1));
      end
      if f1*f3> 0
         xa(i+1)=xr(i);f1=feval(fx,xa(i+1));%f1=subs(f,x,xa(i+1));
         xb(i+1)=xb(i);f2=feval(fx,xb(i+1));%f2=subs(f,x,xb(i+1));
      end     
      xr(i+1)=(xa(i+1)+xb(i+1))/2; f3=feval(fx,xr(i+1));%f3=subs(f,x,xr(i+1));
      ea(i+1)=abs((xr(i+1)-xr(i))/(xr(i+1))*100);
      fprintf('%2d \t %11.7f \t %11.7f \t %11.7f \t %7.3f \n',...
              i+1,xa(i+1),xr(i+1),xb(i+1),ea(i+1));
      i=i+1;
   end
else
   fprintf('No existe una raíz en ese intervalo');
end

Metodo de la biseccion en matlab con ingreso de funcion normal y syms (simbólico)



https://beastieux.com/2008/10/25/codigo-matlab-%E2%80%93-metodo-de-la-biseccion/

xai=input('Ingrese el intervalo inferior: ');
xbi=input('Ingrese el intervalo superior: ');
tol=input('Ingrese el porcentaje de error: ');
syms x;
f=input('Ingrese la funciòn: ');
i=1;
f1=subs(f,x,xai);
f2=subs(f,x,xbi);
ea(i)=100;
if f1*f2 < 0
    xa(i)=xai; f1=subs(f,x,xa(i));
    xb(i)=xbi; f2=subs(f,x,xb(i));
    xr(i)=(xa(i)+xb(i))/2; f3=subs(f,x,xr(i));
     
    fprintf('It.       Xa               Xr             Xb           Error aprox \n');
    fprintf('%2d \t %11.7f \t %11.7f \t %11.7f \n',i,xa(i),xr(i),xb(i));
    while abs(ea(i)) >= tol,
      if f1*f3<0
         xa(i+1)=xa(i);f1=subs(f,x,xa(i+1));
         xb(i+1)=xr(i);f2=subs(f,x,xb(i+1));
      end
      if f1*f3> 0
         xa(i+1)=xr(i);f1=subs(f,x,xa(i+1));
         xb(i+1)=xb(i);f2=subs(f,x,xb(i+1));
      end     
      xr(i+1)=(xa(i+1)+xb(i+1))/2; f3=subs(f,x,xr(i+1));
      ea(i+1)=abs((xr(i+1)-xr(i))/(xr(i+1))*100);
      fprintf('%2d \t %11.7f \t %11.7f \t %11.7f \t %7.3f \n',...
              i+1,xa(i+1),xr(i+1),xb(i+1),ea(i+1));
      i=i+1;
   end
else
   fprintf('No existe una raíz en ese intervalo');
end

martes, 24 de marzo de 2020

Descargar videos de youtube online seleccionando la calidad del video - Скачать видео на YouTube онлайн, выбрав качество видео

Descargar videos de youtube online seleccionando la  calidad del video

Скачать видео на YouTube онлайн, выбрав качество видео

Download youtube videos online by selecting the video quality


https://www.y2mate.com/es15

Sugerencia: inserte "pp" despues de la palabra "youtube" en el enlace para descargar archivos de Videos y MP3 de YouTube de la manera más rápida.
tip how to quick download youtube video mp3

Subir imagenes a blogger, blogspot, un blog de google - Upload images to blogger, blogspot, a google blog - Загрузить изображения в блоггер, blogspot, блог Google

Subir imagenes a blogger, blogspot, un blog de google
Upload images to blogger, blogspot, a google blog
Загрузить изображения в блоггер, blogspot, блог Google

1. S epegan las imagenes en un documento de word
2. se guarda
3. Se sube el archivo a una carpeta del drive de google
4. Se abre el archivo con doble click y opcion "open with Google Docs"
5. Una vez este abierto, se selecciona todo o las imagenes a copiar
6. Se pegan al blogspot correspondiente

1TB Storage in office.com account, account company with server in sharepoint microsoft, my.sharepoint.com

Storage in office.com account, account company with server in sharepoint microsoft, my.sharepoint.com


El tamaño para guardar información es de 1TB

Site Settings : Storage Metrics  This page displays the allocation of quota within your site.
Site Collection
1024.00 GB free of 1024.00 GB