BLOG ARTICLE 분류 전체보기 | 58 ARTICLE FOUND

  1. 2008.09.02 Saleen ScanFS Pro
  2. 2008.09.02 Flickr Downloader
  3. 2008.09.02 Saleen Remote Synchronization
  4. 2008.09.02 Saleen Folder Synch
  5. 2008.09.02 Creative BASIC - Ionic Wind Software
  6. 2008.09.02 Aurora Compiler - Example Syntax
  7. 2008.09.02 Aurora Compiler
  8. 2008.09.02 Google Code Search

Saleen ScanFS Pro

SOFTWARE 2008. 9. 2. 03:03
▪ Search in single directories or directory groups
▪ Search and replace in multiple files
▪ Supports simple or regular expressions for filenames and file contents
▪ Live preview of file contents, without the need to rescan the file system
▪ Live preview of images
▪ Windows Explorer integration (by clicking the search button, or pressing F3)
▪ Search using multiple file patterns
▪ Save/Load search criteria
▪ Full unicode support (filenames, file contents, search results, search and replace)
 ▪ Refine search mode (search within catalogs or existing results)
▪ Copy/Move/Delete/Rename files and/or directories ▪ Drag-drop support, e.g. drop files in explorer windows
▪ Can be used as a visual replacement for the command-line grep command

Download Download



ScansFS

Search results screen


 ScansFS 

Live preview of file contents based on keywords or regular expressions
ScansFS 
Live preview of media files
AND

Flickr Downloader

SOFTWARE 2008. 9. 2. 02:56
Features  
New feature 17 Mar 2008: Can save entire sets in one click
 Allows saving multiple images from a set's thumbnail and detail view     
Note: This feature has been tested on these types of pages
1) Thumbnails view (small 75x75 pixel icons).     
e.g. http://www.flickr.com/photos/hkvam/sets/1724323/
2) Detail view (~240x240 pixel icons)   
 e.g. http://www.flickr.com/photos/hkvam/sets/1724323/detail/
3) Pool view (~100x100 pixel icons)    
e.g. http://www.flickr.com/groups/thatsclassy/pool/
Can automatically download the best available quality for a picture.     
  The program allows you to define your preferred image quality (original, large, medium)
    It can also save protected images that are placed below the transparent "spaceball" area
Add tags to downloaded images
Add ratings to pictures Tags: mass flickr downloader, batch flickr downloader  

 Download    

Size  1008 KB


Download Download Flickr Downloader
Full support for Windows Vista™ This program fully supports the Windows Vista operating system.
   Help topic 1: Saving multiple pictures and entire sets      
To save multiple pictures navigate to a set (e.g. once in a picture click browse below the previous/next icons). To download some of the pictrures shown, click on those pictures to select them and press "Save Selected" To save all pages for the current set click the small "V" button and then "Save All Pages".
 

Known issue when saving an entire set.
Some sets do not "reveal" their total number of pages. For example the set shown here has about 400 pages but only shows some of the nearest pages to the current page. On the other hand this set directly shows that it consists of 33 pages. Flickr Downloader needs this information to enqueue all pages. To work around this issue for now, if you come across such a case you will need to navigate to the last page of the set manually and then press "Save all pages"
           Screenshots
    Flickr picture downloader   

Selecting and saving multiple pictures
  Flickr picture downloader    
By simply clicking "save picture" in a single-picture page...
  Flickr picture downloader   
.. you actually save the original full-size picture
AND

Features  
- Replicates local directory structure remotely  
- Automatically detects modified files   
- Side by side comparison of local and remote directory structures   
- One way synchronization from client to server   
- Fast and reliable HTTP transport   
- Automatic / Manual upload method  
- Automatic detection and enqueuing of local modified files   
- Automatic detection of conflicts   -
 Automatic detection of time offset between Local and Remote sides     (timezone difference).  

Download    

 Screenshots     Remote File Synch
AND

Saleen Folder Synch

SOFTWARE 2008. 9. 2. 02:43
Features  

- Performs comparisons between two directories  

- Reports new, updated, renamed, moved and deleted files  

- Performs synchronization from the source to the destination path  

- Can be used for differential or full backups.  

Download FolderSynch

AND

Creative BASIC Creative BASIC is an interpretive language suitable for hobbiests, students, and those looking to get their feet wet with programming. Creative BASIC is syntax compatible with the original IBasic Standard language and features the following: - Create Windows™ programs, 3D games and utilities. - Supports Windows 95/98/ME/NT/2000/XP and VISTA. - Compiles stand-alone executables. - Run programs directly from the IDE. - DirectX™ Support with sprites, screens and scrolling maps. - Direct3D Support with lights, cameras, shapes and scenes. - Built-in editor, debugger and GUI/Dialog designer. - Resource compiler included. - No external libraries or runtimes required. - Full MDI (Multiple Document Interface) support. - Dynamic window, dialog, and control creation. - Simple BASIC-like syntax. - Over 250 commands and functions built in! - Access to DLLs and the Windows API for unlimited extensibility. - Structured data types (UDTs) fully supported. - Console support and Console compiler. - Graphics primitives supported. - Bitmap, JPEG, GIF, Cursor and Icon support is built in. - Wave file support. - Random access file support. - Memory allocation and management functions. - Low and high level printer support. - Embedded browser windows for web-enabled applications. - Component creation and include support. - Rich edit, list view, status window and toolbar controls. Creative BASIC is Freeware Download Now
Blogged with the Flock Browser
AND

Below is an example of what the syntax structure looks like in an Aurora source code file.
//TestWindow definition
class TestWindow : CWindow
{
declare virtual OnClose(),int;
declare virtual OnControl(int nID, int nNotifyCode, unsigned int hControl),int;
declare virtual OnCreate(),int;
}

global sub main()
{
TestWindow win;
win.Create(0,0,300,212,AWS_VISIBLE|AWS_SYSMENU,0,"Test Window",NULL);
win.EnableTabs(1);
win.AddControl(CTBUTTON,"Close",45,157,70,20,0x50000000|AWS_TABSTOP,0x0,1);
win.AddControl(CTBUTTON,"OK",183,157,70,20,0x50000001|AWS_TABSTOP,0x0,2);
win.AddControl(CTGROUPBOX,"Enter Your Name",19,10,254,134,0x50000007,0x0,3);
win.AddControl(CTEDIT,"",39,42,218,21,0x50800000|AWS_TABSTOP,0x200,4);
win.SetFocus(4);
CControl *pControl = win.GetControl(3);
pControl->SetColor(0,0xFFFFFF);
do{ wait();} until !win.IsValid();
}

TestWindow::OnCreate()
{
CenterWindow();
return 0;
}

TestWindow::OnClose()
{
Destroy();
return 0;
}

TestWindow::OnControl(int nID, int nNotifyCode, unsigned int hControl),int
{
select(nID)
{
case 1:
if(nNotifyCode = 0)
Destroy();
case 2:
if(nNotifyCode = 0)
{
CControl *pControl = GetControl(4);
MessageBox(this,"OK Pressed",pControl->GetText());
SetFocus(4);
}
}
return 0;
}

AND

Aurora Compiler

SOFTWARE 2008. 9. 2. 02:27
aurora_debug.png

Aurora features a syntax similar to C++ with high level commands making it ideal for students and advanced programmers alike. Aurora can create stand alone executables with no runtime libraries needed.

Main Features

  • Fast 32-bit compiler, assembler, and linker.
  • Uses standard COFF and LIB format files for maximum compatibility.
  • Easily upgradeable with add-on command libraries.
  • Integrated editor, source-level debugger, and compiler.
  • Multi-module programming supports unlimited source and include files.
  • Interfaces seamlessly with Windows™ technologies.
  • COM and OOP (class) support.
  • Supports Windows 95/98/ME/NT/2000/XP/Vista.
  • Intrinsic unicode support.
  • Linux support in development.
  • Built-in GUI/Form designer.
  • Built-in menu designer.
  • Gui, database, string, math, console, file, 2D and 3D libraries included.
  • Integrated resource compiler.
  • All tools can be run from the command line as well as the IDE.
  • Robust data type support including classes, structures and unions.
The Aurora Compiler is Freeware


AND

Google Code Search

SOFTWARE 2008. 9. 2. 02:19
AND