Messages - Cpilot [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 57next
1
Developer's Corner / Re: New Twist on Basic
« on: April 28, 2011, 10:47 PM »
Looks just like a kind of merger of AutoIt3 and AutoHotKey to me,
Well, you obviously don't have a clue so who needs your $21.95.
AutoHotKey is for script kiddies.
AutoIt3 is a pretty good and powerful script language, just goes to show the level of "programmers" who exist here.
Save your comments for 4chan.

2
Developer's Corner / New Twist on Basic
« on: April 26, 2011, 11:28 PM »
There's a new Indy Basic that I think has a lot of potential.
MiniBasic
Accesses the API, NASM, small executable, compiles resources, OOP and some COM.
Here's an example program of a modeless dialog.
##INCLUDE "windows.inc"
##NOCONSOLE
##define IDD_DLG1 1000
##define IDC_STC1 1001
##define IDC_BTN1 1002
##define ERROR_ALREADY_EXISTS 183
@API DestroyWindow(hwnd:int),int
@API CreateDialogParamA(hInstance:int,lpTemplateName:pointer,hWndParent:int,lpDialogFunc:int,dwInitParam:int),int
WINDOW win
int hinstance,hwnd,hdialog,hicon,item
win.Open(0,0,240,180,WS_OVERLAPPEDWINDOW|WS_VISIBLE|BUFFERED|CENTERED,0,"Modeless Dialog",NULL,&handler)
win.AddControlEx("BUTTON","Click Me!",120,5,70,25,0,0,100)
hicon = ExtractIconA(hinstance,"dia2.exe",0)
SendMessageA(win.GetHandle(),WM_SETICON,0,hicon)
hinstance= GetModuleHandleA(0)

do:processmessages():until win.GetHandle()=NULL
 
func handler(WINDOW wnd),int
select wnd.Message
case ID_CLOSE
DestroyWindow(hdialog)
wnd.Close()
case ID_CONTROL
select wnd.ControlID
case 100
if wnd.NotifyCode = 0 and item = 0 then
hdialog = CreateDialogParamA(hinstance,IDD_DLG1,hwnd,&ToolDlgProc,0)
ShowWindow(hdialog,SW_SHOW)
item = 1
end if
end select
end select
return 0
endf
func ToolDlgProc(hwnd:int, Message:uint,wParam:int,lParam:int)
Select Message
Case WM_COMMAND
If LOWORD(wParam) = IDC_BTN1 then DestroyWindow(hdialog)
item = 0
End Select
Return 0
endf
Give it a look, there's a demo version and if you like it it's only $21.95....License includes free updates.

3
Living Room / Re: Egypt Blacks Out Internet!
« on: January 28, 2011, 10:32 PM »
Anyone else notice how the current U.S. administration made efforts to put into place an Internet kill switch for the President but responds to Egypt by saying that shutting down of Internet is a "sign of dictators"?

See: Obama Can Shut Down Internet For 4 Months Under New Emergency Powers

Anyone from Egypt or in touch with people who are who can give us an update from your perspective?

Nobody in Egypt has internet right now, so I don't think so. :P
Best reason I've ever seen to tell government to keep their hands off the internet.

4
Personally I'm more disturbed by DHS taking a role that in reality has very little to do with the purpose that they were created for.
There are other entities charged with the responsibility of enforcing copyright law and going after violators with the means at their disposal to take the proper steps.
The move of DHS into what is in essence a domestic issue not involving national security extends it's powers in a way that wasn't even suggested by the administration that created it.
If this is the trend of the current administration then the paranoia of a few years ago is becoming a reality.


5
Living Room / Homeland Security Shutting Down Web Copyright Violators
« on: November 26, 2010, 09:00 PM »
How this is a function of national security is beyond me.

Homeland Security seizes domain names
The investigative arm of the Homeland Security Department appears to be shutting down websites that facilitate copyright infringement.

Immigration and Customs Enforcement (ICE) has seized dozens of domain names over the past few days, according to TorrentFreak.
ICE appears to be targeting sites that help Internet users download copyrighted music, as well as sites that sell bootleg goods, such as fake designer handbags.
The sites are replaced with a note from the government: "This domain named has been seized by ICE, Homeland Security Investigations."

Pages: [1] 2 3 4 5 6 ... 57next
Go to full version