• 開源游戲 0 A.D. Alpha 11 已經發布- 代號 Kronos 資訊

    0 A.D.是一款自由開源的即時戰略游戲,該游戲最近發布了另一個alpha版本,該版本代號“Kronos”,此版本帶來了許多新的功能。

    jopen 2012-09-09   6657   0
    游戲  

    Java String字符串0或空格 代碼段

    package cn.com.songjy; import java.text.NumberFormat; //Java 中給數字左邊補0 public class NumberFormatTest { public static void main(String[] args) { // 待測試數據 int i = 1; // 得到一個NumberFormat的實例 NumberFormat n

    碼頭工人 2016-08-17   91259   17
    P10

      0 outline 文檔

    xionghsh 2017-03-28   10181   0

    Create A Slider From A Select Box 開源項目

    這是一個漂亮的jQuery插件能夠自動將select boxes轉換成一個sliders控件。

    碼頭工人 2019-02-23   498   0
    jQuery   Slider  

    A*(A星)算法Go lang實現 代碼段

    package main import ( "container/heap" "fmt" "math" "strings" ) import "strconv" type OpenList []*_AstarPoint func (self OpenList) Len() int { return len(self) } func (self OpenList) Less(i, j int) bo

    gww3 2015-05-13   1099   0
    算法  

    A*(A星)算法python實現 代碼段

    #!/usr/bin/python # vim:set fileencoding=utf-8 # 在春節放假前兩天我偶然看到了A*算法,感覺挺有意思。正好放假前 # 也沒有什么事情,就花了一個下午寫出算法的骨架,節后又花了半天 # 時間完善屏幕輸出的細節并且調試完成。 # 該實現只是一時興起的隨手而作,沒有考慮性能和擴展性等問題。正 # 在學習A*的朋友可以拿去隨便折騰。 # email: wan

    gww3 2015-05-13   1891   0
    算法  
    P170

    m0n0wall 中文手冊 文檔

    m0n0wall 是一項針對建立一個完整的、嵌入式的防火墻軟件包的計劃,該軟件包可以安裝 于嵌入式 PC里, 提供所有商業防火墻的重要特性(包括易用性),而且價格只有商業防火 墻幾分之一(自由軟件)。 m0n0wall 是基于 bare-bones version of FreeBSD,包括一個 WEB 服務器,PHP 和其它一 些工具軟件。整個系統的配置保存在一個 XML文件當中,條理清晰。 m0n0wall 可能是第一個啟動時通過 PHP 配置的UNIX 系統,這種結構勝于使用 shell腳本。 并且整個系統的配置用 XML 格式保存。

    clbus 2014-07-26   669   0
    P170

    m0n0wall 中文手冊 文檔

    m0n0wall 是基于 bare-bones version of FreeBSD,包括一個 WEB 服務器,PHP 和其它一 些工具軟件。整個系統的配置保存在一個 XML文件當中,條理清晰。 m0n0wall 可能是第一個啟動時通過 PHP 配置的UNIX 系統,這種結構勝于使用 shell腳本。 并且整個系統的配置用 XML 格式保存。

    csnetstar 2012-06-21   1526   0

    模擬帝國時代的游戲,0 A.D. Alpha 8 發布 資訊

    0 A.D 是由 WIldfire Games 開發的免費跨平臺游戲,支持 Windows, Mac OS X和Linux。近日它發布了 alpha 1 版本,代號為 “Argonaut”,這個版本可以正常玩,但可能會出現一些Bug。這個游戲的源代碼基于GPL V2發布,其它素材,音樂,聲音內容基于CC-BY-SA許可證發布。

    jopen 2011-12-24   13390   0
    游戲  
    P9

      j?a?v?a?中?f?i?n?a?l?、?f?i?n?a?l?l?y?、?f?i?n?a?l?i?z?e?的?區別 文檔

    ?雖然這三個單詞在Java中都存在,但是并沒有太多關聯: ?final:java中的關鍵字,修飾符。? 1.如果一個類被聲明為final,就意味著它不能再派生出新的子類,不能作為父類被繼承。因此,一個類不能同時被聲明為absrtact抽象類的和final的類。

    千里馬 2014-08-10   4378   0

    Yarn – A small embeddable VM with a custom instruction set 經驗

    A small embeddable VM with a custom instruction set and statically allocated heap.

    ugsn5183 2016-02-27   9473   0
    YARN  
    P8

      A星算法 文檔

    這篇文章并不試圖對這個話題作權威的陳述。取而代之的是,它只是描述算法的原理,使你可以在進一步的閱讀中理解其他相關的資料。 最后,這篇文章沒有程序細節。你盡可以用任意的計算機程序語言實現它。如你所愿,我在文章的末尾包含了一個指向例子程序的鏈接。 壓縮包包括C++和Blitz Basic兩個語言的版本,如果你只是想看看它的運行效果,里面還包含了可執行文件。

    shaobo8910 2012-03-06   3643   0
    P

    Python in a nutshell 文檔

    這本書是面向已經對PYTHON有所了解的讀者的,里面對PYTHON本身的介紹并不是非常的仔細,對于第一次學習PYTHON的讀者可能會比較難懂。 另一方面,這本書是一本非常出色的參考書,里面覆蓋了大部分PYTHON編程中會用到的技巧和知識。如果是經常使用PYTHON的話,買一本放在手邊是非常值得的。 可是值得一提的是其實書中大部分的內容在PYTHON的網站上都找的到,再加上那個著名的在線的PYTHON QUICK REFERENCE,這本書的價值就沒那么高了。

    kome2000 2012-03-14   264   0
    P41

      A SharePoint Developer Introduction 文檔

    Web Parts are an essential component of ASP.NET technologies used by SharePoint to present dynamic information to users. Web parts are the most common customization created for SharePoint. A Web Part is a reusable component that exists on a Web Part Page and can present any type of web-based information. The objective of this lab is to learn about how to utilize enhancements available in SharePoint 2010 to build Visual Web Parts and connect web parts for use in the SharePoint system.

    torney 2015-07-28   1415   0
    P

    XAML in a Nutshell 文檔

    When Microsoft releases Windows Vista, the new operating system will support applications that employ graphics now used by computer games-clear, stunning and active. The cornerstone for building these new user interfaces is XAML ("Zammel"), the XML-based markup language that works with Windows Presentation Foundation (WPF), Vista's new graphics subsystem.

    如子可教 2015-06-02   409   0
    P26

      A SharePoint Developer Introduction 文檔

    The objective of this lab is to learn about how to create a web part that renders and updates list data that is deployed as a Sandboxed Solution. A Sandboxed Solution can be deployed to a site by a site administrator without requiring intervention from the farm administrator. The solution has full access to the immediate site and restricted access to system resources and other sites.

    torney 2015-07-28   1346   0

    This is a test article~ 博客

    hello open-open~, I ' m coming`

    tomzhang 2011-08-10   828   0
    P25

      A SharePoint Developer Introduction 文檔

    Client Object Model provides a unified and complete object model for SharePoint to access SharePoint site data from remote clients. By including the Client Object Model library, developers can build SharePoint application as quickly as possible. It provides complete access to SharePoint site data. The objective of this lab is to learn about: ? How to use the new Client Object Model. ? How to use the new REST API framework in SharePoint 2010.

    torney 2015-07-28   1806   0

    A*算法的GUI實現 代碼段

    前言 A*算法是常用的游戲算法之一,也是初學者比較難掌握的一個算法。 本文在Unity中以GUI的方式形象的再現了A*算法的詳細步驟, 包括地圖的搜索、FGH的計算以及開啟關閉列表的變化等。 博文首發地址:http://blog.csdn.net/duzixi 步驟一: 創建Unity新工程新場景 步驟二: 創建AStar.cs腳本,將以下代碼內容粘貼覆蓋后,保存運行即可 /// <summary

    m2m2c 2015-02-19   1606   0
    C#  

    a-LMS 開源項目

    a-LMS是一個用Java語言實現并遵守SCORM 1.2的學習管理系統(LMS)。

    碼頭工人 2019-01-17   9510   0
    1 2 3 4 5 6 7 8 9 10
  • sesese色