虫虫首页|资源下载|资源专辑|精品软件
登录|注册

AtoM

  • Gregarius是一个基于web的RSS/RDF/AtoM聚合程序

    Gregarius是一个基于web的RSS/RDF/AtoM聚合程序,它运行于您的web服务器,聚合您想要的任何资源。 1、完全基于web。 2、简单、有密码保护的管理及设置。 3、运用AJAX技术。 4、支持全文搜索。 5、完全符合web标准。 6,基于开源协议的免费软件。

    标签: Gregarius AtoM web RSS

    上传时间: 2016-07-25

    上传用户:dreamboy36

  • This package is a free collection of Matlab routines for computing wave AtoM transforms in one, two

    This package is a free collection of Matlab routines for computing wave AtoM transforms in one, two and three dimensions.

    标签: collection transforms computing routines

    上传时间: 2017-03-05

    上传用户:1583060504

  • 針對最新的Intel AtoM N270主機板透過SMBus存取GPIO埠範例(以KEEX-2030板子為範例)

    針對最新的Intel AtoM N270主機板透過SMBus存取GPIO埠範例(以KEEX-2030板子為範例)

    标签: Intel SMBus AtoM 2030

    上传时间: 2017-03-30

    上传用户:xc216

  • INTEL AtoM CPU 对linux系统的支持白皮书

    INTEL AtoM CPU 对linux系统的支持白皮书

    标签: INTEL linux AtoM CPU

    上传时间: 2014-08-21

    上传用户:cc1

  • Three dimensional hydrogen AtoM spherical harmonics visualization.

    Three dimensional hydrogen AtoM spherical harmonics visualization.

    标签: visualization dimensional harmonics spherical

    上传时间: 2017-05-18

    上传用户:kbnswdifs

  • 可以收藏RSS和AtoM格式新闻频道,还可以收藏常用的html格式的网址;可以在新闻快客的地址栏直接输入任何网址浏览网页官方网址:http://t811.uu1001.com

    可以收藏RSS和AtoM格式新闻频道,还可以收藏常用的html格式的网址;可以在新闻快客的地址栏直接输入任何网址浏览网页官方网址:http://t811.uu1001.com

    标签: AtoM 1001 html http

    上传时间: 2017-06-11

    上传用户:qazxsw

  • ProfessionalAjax 本书是一本关于Ajax技术、模式和使用场景的开发人员级教程

    ProfessionalAjax 本书是一本关于Ajax技术、模式和使用场景的开发人员级教程,不仅介绍了Ajax的基本知识,还讨论了Ajax模式和框架,同时针对XML(包括XPath和XSLT)、RSS/AtoM、Web服务、JSON和Web用户界面组件等主题,阐述了如何将Ajax和这些技术有效地结合在一起,并利用Ajax开发的一个WebMail系统实例。书中经典的实例、完整的源代码,都将给读者带来“实战”的指导。与本书配套的源代码可以在图灵网站下载。 本书内容广泛且深入,适用于中高层次的Web网站开发人员。

    标签: ProfessionalAjax Ajax 模式 教程

    上传时间: 2015-09-30

    上传用户:凌云御清风

  • Liferea is an abbreviation for Linux Feed Reader. It is a news aggregator for online news feeds. It

    Liferea is an abbreviation for Linux Feed Reader. It is a news aggregator for online news feeds. It supports a number of different feed formats including RSS/RDF, CDF and AtoM. There are many other news readers available, but these others are not available for Linux or require many extra libraries to be installed. Liferea tries to fill this gap by creating a fast, easy to use, easy to install news aggregator for GTK/GNOME. It was last updated for Liferea version 1.4.

    标签: news abbreviation aggregator for

    上传时间: 2016-12-05

    上传用户:luopoguixiong

  • YESIR520是一个提供个性化主页服务的网站

    YESIR520是一个提供个性化主页服务的网站,类似IGOOGLE。您不仅可以聚合RSS和AtoM的频道,而且可以聚合google gadget和QQ的个人空间。 以拖拽的方式调整布局,方便而且直观。网站信息自动更新,无需手动刷新页面。该网站基于web2.0,实现了网站结构拖拽式布局,网站内容动态式聚合,网站样式个性化切换。 该项目在IE6、IE7、FireFox 、chrome 、Safari测试通过。

    标签: YESIR 520 个性化

    上传时间: 2017-05-16

    上传用户:独孤求源

  • c#简单计算器

    // 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; // The title bar text // Foward declarations of functions included in this code module: AtoM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM); struct person {   char name[10];   int ID;   int cj_yw;   int cj_sx;   struct person* next;   struct person* pro; }per; int APIENTRY WinMain(HINSTANCE hInstance,                      HINSTANCE hPrevInstance,                      LPSTR     lpCmdLine,                      int       nCmdShow) {   // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); LoadString(hInstance, IDC_MY, szWindowClass, MAX_LOADSTRING); MyRegisterClass(hInstance); // Perform application initialization: if (!InitInstance (hInstance, nCmdShow))  { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_MY); // Main message loop: while (GetMessage(&msg, NULL, 0, 0))  { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))  { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // //  FUNCTION: MyRegisterClass() // //  PURPOSE: Registers the window class. // //  COMMENTS: // //    This function and its usage is only necessary if you want this code //    to be compatible with Win32 systems prior to the 'RegisterClassEx' //    function that was added to Windows 95. It is important to call this function //    so that the application will get 'well formed' small icons associated //    with it. // AtoM MyRegisterClass(HINSTANCE hInstance) { WNDCLASSEX wcex; wcex.cbSize = sizeof(WNDCLASSEX);  wcex.style = CS_HREDRAW | CS_VREDRAW; wcex.lpfnWndProc = (WNDPROC)WndProc; wcex.cbClsExtra = 0; wcex.cbWndExtra = 0; wcex.hInstance = hInstance; wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_MY); wcex.hCursor = LoadCursor(NULL, IDC_ARROW); wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); wcex.lpszMenuName = (LPCSTR)IDC_MY; wcex.lpszClassName = szWindowClass; wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_SMALL); return RegisterClassEx(&wcex); } // //   FUNCTION: InitInstance(HANDLE, int) // //   PURPOSE: Saves instance handle and creates main window // //   COMMENTS: // //        In this function, we save the instance handle in a global variable and //        create and display the main program window. // BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {    HWND hWnd;    hInst = hInstance; // Store instance handle in our global variable    hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);    if (!hWnd)    {       return FALSE;    }    ShowWindow(hWnd, nCmdShow);    UpdateWindow(hWnd);    return TRUE; } // //  FUNCTION: WndProc(HWND, unsigned, WORD, LONG) // //  PURPOSE:  Processes messages for the main window. // //  WM_COMMAND - process the application menu //  WM_PAINT - Paint the main window //  WM_DESTROY - post a quit message and return // // LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; PAINTSTRUCT ps; HDC hdc; TCHAR szHello[MAX_LOADSTRING]; LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING); switch (message)  { case WM_COMMAND: wmId    = LOWORD(wParam);  wmEvent = HIWORD(wParam);  // Parse the menu selections: switch (wmId) { case IDM_ABOUT:   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);   break; case IDM_EXIT:   DestroyWindow(hWnd);   break; default:   return DefWindowProc(hWnd, message, wParam, lParam); } break; case WM_PAINT: hdc = BeginPaint(hWnd, &ps); // TODO: Add any drawing code here... RECT rt; GetClientRect(hWnd, &rt); DrawText(hdc, szHello, strlen(szHello), &rt, DT_CENTER); EndPaint(hWnd, &ps); break; case WM_DESTROY: PostQuitMessage(0); break; default: return DefWindowProc(hWnd, message, wParam, lParam);    }    return 0; } // Mesage handler for about box. LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_INITDIALOG: return TRUE; case WM_COMMAND: if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)  { EndDialog(hDlg, LOWORD(wParam)); return TRUE; } break; }     return FALSE; }

    标签: 计算器 学生

    上传时间: 2016-12-29

    上传用户:767483511