Cita de: El_Andaluz en 14 Septiembre 2015, 23:46 PMPetición de randominze
Cita de: Randomize en 16 Septiembre 2015, 18:48 PMCaya, caya, está la mar de interesante...
Allá cada uno con sus rarezas
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: El_Andaluz en 14 Septiembre 2015, 23:46 PMPetición de randominze
Cita de: Randomize en 16 Septiembre 2015, 18:48 PMCaya, caya, está la mar de interesante...
Cita de: arkangelX en 16 Septiembre 2015, 19:04 PM
Gracias Eleкtro por responder, pido las disculpas por no expresarme bien.
El tema es que no me copia los archivos por fecha, en este caso quiero los de 2015 y me copia los con fecha 2013, 2014 y 2015. Con respecto a excluir -1229 -1230 -1231 esto lo hace bien.
Saludos y gracias.
Cita de: arkangelX en 16 Septiembre 2015, 18:11 PM¿Qué estoy haciendo mal?.
/XD "*-1229*" "*-1230*" "*-1231*"
Imports NetworkUtil
Imports NetworkUtil.NetworkTrafficMonitor
Public NotInheritable Class Form1 : Inherits Form
Dim WithEvents procNetMon As NetworkUtil.ProcessTrafficMonitor
Private Sub Form1_Load() Handles MyBase.Load
Me.procNetMon = New ProcessTrafficMonitor(Process.GetCurrentProcess.Id)
Me.procNetMon.UpdateBehavior = UpdateBehaviorEnum.FireAlwaysAfterTick
Me.procNetMon.UpdateInterval = 1000 ' 1 sec.
Me.procNetMon.Start()
End Sub
Private Sub ProcNetMon_TrafficChanged(ByVal sender As Object, ByVal e As ProcessTrafficMonitor.TrafficChangedEventArgs) _
Handles procNetMon.TrafficChanged
Me.LabelBytesReceived.Text = String.Format("Bytes received: {0} kb", (e.BytesReceived / 1024).ToString("n2"))
Me.LabelDlSpeed.Text = String.Format("DL Speed: {0} kb/sec", (e.DiffBytesReceived / 1024).ToString("n2"))
Me.LabelBytesSent.Text = String.Format("Bytes sent: {0} kb", (e.BytesSent / 1024).ToString("n2"))
Me.LabelUlSpeed.Text = String.Format("UL Speed: {0} kb/sec", (e.DiffBytesSent / 1024).ToString("n2"))
End Sub
Private Sub BtDownloadUrl_Click() Handles BtDownloadUrl.Click
Dim url As String = "http://download.thinkbroadband.com/10MB.zip"
Dim client As New WebClient()
client.DownloadFileAsync(New Uri(url), Path.GetTempFileName())
End Sub
Private Sub BtPauseMon_Click() Handles BtPauseMon.Click
If Me.procNetMon.IsActive Then
Me.procNetMon.Stop()
Else
Me.procNetMon.Start()
End If
End Sub
End Class
Dim WithEvents netMon As New NetworkTrafficMonitor(NetworkTrafficMonitor.GetAvaliableInterfaceNames.First)
Cita de: engel lex en 16 Septiembre 2015, 07:11 AM
un codigo de ejemplo en batch (convertir un numero de decimal a binario)@ECHO OFF
:: Check Windows version: NT 4 or later required
IF NOT "%OS%"=="Windows_NT" GOTO Syntax
:: Check number of command line arguments: 1 and only 1 required
IF "%~1"=="" GOTO Syntax
IF NOT "%~2"=="" GOTO Syntax
:: Check if the command line argument consists of zeroes and ones only
ECHO "%~1"| FINDSTR /R /B /C:"\"[01][01]*\"$" >NUL || GOTO Syntax
:: Initialize the variables
SET Binary=%~1
SET Decimal=0
SET DigVal=1
:: Display the initial binary value
SET Binary
:Loop
:: Extract the last digit from the binary number
IF %Binary% GTR 1 (
SET Digit=%Binary:~-1%
SET Binary=%Binary:~0,-1%
) ELSE (
SET /A Digit = %Binary%
SET Binary=0
)
:: Add the digit's value to the decimal result
IF %Digit% EQU 1 SET /A Decimal = %Decimal% + %DigVal%
:: Increment the digit's value (multiply by 2)
SET /A DigVal *= 2
:: If the value of the remaining digits is
:: greater than 0, loop to the next iteration
IF %Binary% GTR 0 GOTO Loop
:: Clean up aal variables but one
SET Binary=
SET Digit=
SET DigVal=
:: Display the decimal result
SET Decimal
:: Exit with the decimal result as return code
EXIT /B %Decimal%
:Syntax
ECHO Bin2Dec.bat, Version 1.00 for Windows NT 4 and later
ECHO Convert binary numbers to decimal
ECHO.
ECHO Usage: BIN2DEC binary_number
ECHO.
ECHO Written by Rob van der Woude
ECHO http://www.robvanderwoude.com
Dim bin As String = "101001001" ' 329
Dim dec As Integer = Convert.ToInt32(bin, fromBase:=2)
Console.WriteLine(dec)
Cita de: Beito en 16 Septiembre 2015, 04:01 AMpara encontrarle un sentido al juego de los hacker
Cita de: Beito en 16 Septiembre 2015, 05:12 AMLo complicado no es un problema para mí
Cita de: Beito en 16 Septiembre 2015, 05:12 AMelijo Batch por que no hay S.O de habitual uso , que no la comprenda , donde quiera que esté puedo divertirme usándolo , encontrándolo la lógica de un programa y eso
Cita de: Beito en 16 Septiembre 2015, 05:12 AMsabes de algún Manual realmente bien redactado por allí?
CMD.exe /C Help
'//Estado de red
Dim ipv4Stats As IPv4InterfaceStatistics
ipv4Stats = NetworkInterface.GetAllNetworkInterfaces(0).GetIPv4Statistics
If NetworkInterface.GetIsNetworkAvailable() Then
Dim interfaces As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces()
For Each ni As NetworkInterface In interfaces
If ni.OperationalStatus = OperationalStatus.Up Then
If (ni.NetworkInterfaceType <> NetworkInterfaceType.Tunnel) AndAlso
(ni.NetworkInterfaceType <> NetworkInterfaceType.Loopback) Then
Dim statistics As IPv4InterfaceStatistics = ni.GetIPv4Statistics()
If (statistics.BytesReceived > 0) AndAlso (statistics.BytesSent > 0) Then
' En ste punto tenemos una interfáz de red (Internet) activa...
' ...una de varias que pueden haber conectadas y activas al PC.
End If
End If
End If
Next ni
End If
CitarDim n = ipv4Time.GetActiveTcpConnections().Cast(Of System.Net.NetworkInformation.TcpConnectionInformation).First(Function(el) el.State)
Dim state As TcpState = ipv4Time.GetActiveTcpConnections.First.State
Option Explicit On
Option Strict On
Option Infer Off
Class
...
End Class
Cita de: El_Andaluz en 14 Septiembre 2015, 16:00 PMLas rupias no se lo que es, pero al caso como se explica este caso que un experto forense compare la escritura del cuadernos de notas de satnam con la de taranjit y de la casualidad que las encuentres semejantes ? Lo veo curioso.
Cita de: sowi12 en 14 Septiembre 2015, 12:44 PMSi tu ejemplo está muy bien, pero tal y como me han enseñado a mí (que o lo hago como piden los profesores que tengo o ni me lo miran), tu ejemplo no encajan "con sus enseñanzas" por lo que se ve.