This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$array = array( | |
1 => "Overall", | |
2 => "Attack", | |
3 => "Defense", | |
4 => "Strength", | |
5 => "Hitpoints", | |
6 => "Ranged", | |
7 => "Prayer", | |
8 => "Magic", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PB15:~ ricky$ sudo gem | |
/usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:92:in `load_specification': private method `specification_version=' called for #<Gem::Specification:0x1076dd0> (NoMethodError) | |
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/specification.rb:421:in `initialize' | |
from (eval):3:in `new' | |
from (eval):3:in `load_specification' | |
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:128:in `eval' | |
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:92:in `load_specification' | |
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:128:in `load_gems_in' | |
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:127:in `each' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Antivirus Version Last Update Result | |
a-squared 4.0.0.101 2009.05.24 Riskware.HackTool.Findkey!IK | |
AhnLab-V3 5.0.0.2 2009.05.24 - | |
AntiVir 7.9.0.168 2009.05.24 TR/Agent.542720.C | |
Antiy-AVL 2.0.3.1 2009.05.22 PSWTool/Win32.RAS | |
Authentium 5.1.2.4 2009.05.24 W32/Backdoor2.DWRC | |
Avast 4.8.1335.0 2009.05.24 - | |
AVG 8.5.0.339 2009.05.24 HackTool.EEG | |
BitDefender 7.2 2009.05.24 - | |
CAT-QuickHeal 10.00 2009.05.23 Trojan.Agent.irc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'win32ole' | |
iTunes = WIN32OLE.new("iTunes.Application") | |
currentsong = iTunes.CurrentTrack | |
name = currentsong.name | |
artist = currentsong.artist | |
if name != nil then | |
puts "#{1.chr}ACTION is currently listening to: #{name} by #{artist}.#{1.chr}" | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AddHandler mono .aspx .ascx .asax .ashx .config .cs .asmx .axd | |
MonoApplications "/:/var/www/eighthbit" | |
MonoServerPath /usr/bin/mod-mono-server2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kb3llm@nix:/var/www/eighthbit$ sudo su www-data | |
sh-3.2$ mcs | |
** (/usr/lib/mono/1.0/mcs.exe:15402): CRITICAL **: _wapi_shm_file_open: shared file [/var/www/.wapi/shared_data-nix-Linux-i686-312-11-0] open error: No such file or directory | |
** (/usr/lib/mono/1.0/mcs.exe:15402): CRITICAL **: _wapi_shm_attach: shared file [/var/www/.wapi/shared_data-nix-Linux-i686-312-11-0] open error | |
** | |
** ERROR:(shared.c:346):shm_semaphores_init: assertion failed: (tmp_shared != NULL) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make[6]: Leaving directory `/home/kb3llm/src/mono-2.4/mcs/mcs' | |
make[5]: *** [do-install] Error 2 | |
make[5]: Leaving directory `/home/kb3llm/src/mono-2.4/mcs/mcs' | |
make[4]: *** [install-recursive] Error 1 | |
make[4]: Leaving directory `/home/kb3llm/src/mono-2.4/mcs' | |
make[3]: *** [profile-do--basic--install] Error 2 | |
make[3]: Leaving directory `/home/kb3llm/src/mono-2.4/mcs' | |
make[2]: *** [profiles-do--install] Error 2 | |
make[2]: Leaving directory `/home/kb3llm/src/mono-2.4/mcs' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Function checksite(ByVal site As String) | |
Dim request As HttpWebRequest | |
Dim response As HttpWebResponse = Nothing | |
Dim reader As StreamReader | |
Dim output As String | |
Try | |
request = DirectCast(WebRequest.Create("http://downforeveryoneorjustme.com/" & site), HttpWebRequest) | |
response = DirectCast(request.GetResponse, HttpWebResponse) | |
reader = New StreamReader(response.GetResponseStream()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jun 7 23:10:56 archvm sshd[2390]: error: buffer_get_ret: trying to get more bytes 4 than in buffer 0 | |
Jun 7 23:10:56 archvm sshd[2390]: fatal: buffer_get_int: buffer error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module Module1 | |
Sub Main() | |
For i As Integer = 1 To 100 | |
If i Mod 3 = 0 Then | |
Console.WriteLine("Fizz") | |
ElseIf i Mod 5 = 0 Then | |
Console.WriteLine("Bizz") | |
Else |