Bubble sorting with Perl
#!/usr/bin/perl use strict; use Data::Dumper; sub swap{ @_[ 0, 1 ] = @_[ 1, 0 ]; } sub […]
#!/usr/bin/perl use strict; use Data::Dumper; sub swap{ @_[ 0, 1 ] = @_[ 1, 0 ]; } sub […]
Open Powershell as an Administrator on the web server, then run: $apmem= gwmi -ComputerName localhost -NS ‘root\WebAdministration’ -class ‘WorkerProcess’ |
If you are receiving “Processing data for a remote command failed with the following error message: The WSMan provider” message
I was looking for a good (and free) GoLang IDE. Then I found fully opensource LITEIDE. It supports code completion
Catch [System.OutOfMemoryException]{ bla bla bla… }
Using PowerShell Open Powershell Window Execute following cmdlets. Import-Module ServerManager Add-WindowsFeature PowerShell-ISE
# Load the ODP assembly [Reflection.Assembly]::LoadFile(“C:\oracle\11.2.0\client_2\odp.net\bin\4\Oracle.DataAccess.dll”)|Out-Null # #vars&cons $stations =@{ “424”=”Istanbul”; “421”=”İzmir” } $dbuser=”user” $dbpasswd=”password” connect to Oracle $constr =