九溪

溪水润知林,滴露启慧心

用户工具

站点工具


home

Home

DokuWiki

DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable Formatting Syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.

Read the DokuWiki Manual to unleash the full power of DokuWiki.

Download

DokuWiki is available at https://download.dokuwiki.org/

Read More

2004-2020 © Andreas Gohr andi@splitbrain.org1) and the DokuWiki Community

The DokuWiki engine is licensed under GNU General Public License Version 2. If you use DokuWiki in your company, consider donating a few bucks ;-).

Not sure what this means? See the FAQ on the Licenses.

2018/02/03 20:43 · 160 评论

Unity 资源下载与安装

Unity官方下载


破解参考教程:

http://forum.exceedu.com/forum/forum.php?mod=viewthread&tid=26912


部分破解文件在下面:

Unity 5.2.0f Unity 5.2.1f Unity 5.2.2f Win x64破解文件 链接:http://pan.baidu.com/s/1c08wDGW 密码:rqf0

Unity 5.2.2 mac 破解补丁 链接:http://pan.baidu.com/s/1gduJ1D5 密码:b9wk

Unity 5.2.1 mac 破解补丁 链接:http://pan.baidu.com/s/1DQ5ki 密码:ugw0

Unity 5.2.0 mac 破解补丁 链接:http://pan.baidu.com/s/1mg92vEC 密码:75ed

Unity 5.1.0f3 mac 破解补丁 链接:http://pan.baidu.com/s/1hqsF4Qo 密码:fj4l

Unity 5.0.2f1 mac 破解补丁 链接:http://pan.baidu.com/s/1mgD6aDi 密码:ruqv

Unity v5.1.2f1 mac 破解补丁 链接:http://pan.baidu.com/s/1ntKVD0X 密码:tgln

Unity 5.1.3f Unity 5.1.2f Unity 5.1.1f Unity 5.0.1 Win x64破解文件 http://pan.baidu.com/s/1kT9WDDX 密码7251

Unity+v5.1.1f1(mac) 链接:http://pan.baidu.com/s/1eQ5APaE 密码:lyd3

Unity 5.0 f4 Win x64 + mac 破解文件 (unity3d 5.0.0 f4破解) mac http://kuai.xunlei.com/d/kjYrCwL6FQCunHtV9d8

Unity 5 Beta 9 Win x64破解文件 (unity3d 5.0.0b9破解)unpch95.zip(141.23KB) Unity 5 Beta 9 Win x64 (plus additional content) plus medicine.zip(17.05KB)

4.6.6 f4 —4.6.9 win 版本破解文件 http://kuai.xunlei.com/d/kjYrCwLmFQD0mntV929

4.6.5 win 版本破解文件 http://kuai.xunlei.com/d/kjYrCwLmFQD0mntV929

4.6.4 win 版本破解文件 http://kuai.xunlei.com/d/kjYrCwLmFQD0mntV929

4.6.3 win版本& mac 破解文件 http://kuai.xunlei.com/d/kjYrCwLmFQD0mntV929 mac http://kuai.xunlei.com/d/kjYrCwL0FQBynHtV5af


Unity Pro Windows版本破解方法(示例)

  1. 安装Unity(不要运行Unity),以管理员身份运行破解补丁。
  2. 点击Browse选择Unity所在路径 例如我的Unity安装路径 D:\Program Files (x86)\Unity\Editor
  3. 点击Edit,选择Unity Pro,然后点ok
  4. 点击Rand随机获取一个序列号,其实点不点都行
  5. 选择Unity版本 (注:unity5.0以下版本全部选择4.0~4.9.9,Unity5.0以上版本选择Unity5.0.0f1(beta)),然后点Patch,破解完成。
  6. 该补丁将自动创建“Unity_v4.x.ulf”文件到 Win8, Win7: C:\ProgramData\Unity WinXP : C:\Documents and Settings\All Users\Program Data\Unity
2018/02/03 20:43

去除窗体模式下的边框并设置全屏

方法一:

此段代码主要的功能就是可以精确方便的设定发布后的Unity3D文件执行时在显示屏幕上的坐标和大小,且可以以无边框非全屏的模式显示。注意:要把此代码文件命名为WindowMod.cs。C#代码如下:

WindowMod.cs
using System;
using System.Collections;
using System.Runtime.InteropServices;
using System.Diagnostics;
using UnityEngine;
public class WindowMod: MonoBehaviour
{
    public Rect screenPosition;
    [DllImport("user32.dll")]
    static extern IntPtr SetWindowLong (IntPtr hwnd,int _nIndex ,int dwNewLong);
    [DllImport("user32.dll")]
    static extern bool SetWindowPos (IntPtr hWnd, int hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);
    [DllImport("user32.dll")]
    static extern IntPtr GetForegroundWindow ();
    // not used rigth now
    //const uint SWP_NOMOVE = 0x2;
    //const uint SWP_NOSIZE = 1;
    //const uint SWP_NOZORDER = 0x4;
    //const uint SWP_HIDEWINDOW = 0x0080;
    const uint SWP_SHOWWINDOW = 0x0040;
    const int GWL_STYLE = -16;
    const int WS_BORDER = 1;
    void Start ()
    {
        SetWindowLong(GetForegroundWindow (), GWL_STYLE, WS_BORDER);
        bool result = SetWindowPos (GetForegroundWindow (), 0,
            (int)screenPosition.x,(int)screenPosition.y, (int)screenPosition.width,(int) screenPosition.height, 
            SWP_SHOWWINDOW);
    }
}

方法二:

WindowResolution.cs
using UnityEngine;  
using System.Collections;  
using System.Runtime.InteropServices;  
using System;  
 
public class WindowResolution : MonoBehaviour  
{  
    /// <summary>  
    /// 窗口宽度  
    /// </summary>  
    public int winWidth;  
    /// <summary>  
    /// 窗口高度  
    /// </summary>  
    public int winHeight;  
    /// <summary>  
    /// 窗口左上角x  
    /// </summary>  
    public int winPosX;  
    /// <summary>  
    /// 窗口左上角y  
    /// </summary>  
    public int winPosY;  
 
    [DllImport("user32.dll")]  
    static extern IntPtr SetWindowLong(IntPtr hwnd, int _nIndex, int dwNewLong);  
    [DllImport("user32.dll")]  
    static extern bool SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);  
    [DllImport("user32.dll")]  
    static extern IntPtr GetForegroundWindow();  
 
    [DllImport("User32.dll", EntryPoint = "GetSystemMetrics")]  
    public static extern IntPtr GetSystemMetrics(int nIndex);  
 
    const int SM_CXSCREEN = 0x00000000;  
    const int SM_CYSCREEN = 0x00000001;  
 
    const uint SWP_SHOWWINDOW = 0x0040;  
    const int GWL_STYLE = -16;  
    const int WS_BORDER = 1;  
    const int WS_POPUP = 0x800000;  
 
    public GUIText t;  
 
    // Use this for initialization  
    void Start()  
    {  
        winWidth = 610;  
        winHeight = 350;  
        //当前屏幕分辨率  
        int resWidth = (int)GetSystemMetrics(SM_CXSCREEN);  
        int resHeight = (int)GetSystemMetrics(SM_CYSCREEN);  
 
        winPosX = resWidth / 2 - winWidth / 2;  
        winPosY = resHeight / 2 - winHeight / 2 -1;  
 
        SetWindowLong(GetForegroundWindow(), GWL_STYLE, WS_POPUP);  
        //测试发现左下角坐标为(0,1),修改如下  
        bool result = SetWindowPos(GetForegroundWindow(), 0, winPosX, winPosY, winWidth, winHeight, SWP_SHOWWINDOW);  
        //bool result = SetWindowPos(GetForegroundWindow(), 0, winPosX, winPosY, winWidth, winHeight, SWP_SHOWWINDOW);  
 
    }  
 
    void OnGUI()  
    {  
        if (Input.GetMouseButtonDown(0))  
        {  
            t.text = "X:"+Input.mousePosition.x + " Y:" + Input.mousePosition.y;  
        }  
    }  
}
2018/02/03 20:43

Linux 时区与时间

查看和修改Linux的时区

1. 查看当前时区

date -R

2. 修改设置Linux服务器时区

方法 A

tzselect

方法 B 仅限于RedHat Linux 和 CentOS

timeconfig

方法 C 适用于Debian(推荐可用)

dpkg-reconfigure tzdata

方法D 复制相应的时区文件,替换系统时区文件;或者创建链接文件

cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime

例如:在设置中国时区使用亚洲/上海(+8)

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

查看和修改Linux的时间

1. 查看时间和日期

date

2.设置时间和日期 例如:将系统日期设定成2009年11月3日的命令

date -s 11/03/2009

将系统时间设定成下午5点55分55秒的命令

date -s 17:55:55

3. 将当前时间和日期写入BIOS,避免重启后失效

hwclock -w

注:

  • date 不加参数可以直接看到当前日期时间
  • cal 不加参数可以直接看到本月月历

参考

2018/02/03 20:43

phpMyAdmin:无法载入 mcrypt 扩展,<br />请检查 PHP 配置 问题的解决办法

环境:CentOS 6

解决办法:安装php-mcrypt libmcrypt libmcrypt-devel这三个库文件

  • 安装第三方yum源(默认yum源里面没有这几个库文件,不能使用yum安装)
#wget http://www.atomicorp.com/installers/atomic
#sh ./atomic
  • 使用yum命令安装
#yum install php-mcrypt libmcrypt libmcrypt-devel
  • 重启系统
#service httpd restart 

现在打开phpMyAdmin登录页面,没有了错误提示,问题解决

2018/02/03 20:43
1)
Please do not contact me for help and support – use the mailinglist or forum instead

评论

1xbet, 2025/04/30 12:14

I'd suggest this article to everyone curious about this field. Clear descriptions of important ideas. 1xbet

1xbet, 2025/04/30 12:14

I'd suggest this article to everyone curious about this field. Clear descriptions of important ideas. 1xbet

1xbet, 2025/04/30 11:35

I completely concur with your main argument. Additionally, I would add that this aspect is equally important. 1xbet

1xbet, 2025/04/30 11:35

I completely concur with your main argument. Additionally, I would add that this aspect is equally important. 1xbet

mostbet РФ, 2025/04/29 13:44

mostbet РФ Your fortune awaits! Enjoy exclusive bonuses! Stay tuned for special events! Subscribe to our newsletter for more! Play big! Tell your colleagues about us! Huge thanks for being part of us! Very professional! Our site is fantastic! Following your latest events! Liked and registered! You're an undisputed expert! Will share with on social media! Thank you for your assistance! Very rewarding experience! Your efforts always lead to wins! mostbet играть mostbet Кыргызстан mostbet mostbet kz

mostbet РФ, 2025/04/29 13:44

mostbet РФ Your fortune awaits! Enjoy exclusive bonuses! Stay tuned for special events! Subscribe to our newsletter for more! Play big! Tell your colleagues about us! Huge thanks for being part of us! Very professional! Our site is fantastic! Following your latest events! Liked and registered! You're an undisputed expert! Will share with on social media! Thank you for your assistance! Very rewarding experience! Your efforts always lead to wins! mostbet играть mostbet Кыргызстан mostbet mostbet kz

mostbet Azərbaycan, 2025/04/27 22:59

mostbet Azərbaycan Hit the jackpot with us! Unlock your fortune! Play with ease on our licensed platform! Don't miss out on huge jackpots! Win big! Share the joy with friends! Grateful for your loyalty! Simply fantastic! Your efforts always result in victories! Eagerly awaiting your upcoming tournaments! Bookmarked your content in my browser! You're the best! Telling everyone! Thanks for the rewarding experience! Very exciting promotion! Your skills always are rewarded! mostbet ru mostbet mostbet today mostbet Киргизия

mostbet Azərbaycan, 2025/04/27 22:59

mostbet Azərbaycan Hit the jackpot with us! Unlock your fortune! Play with ease on our licensed platform! Don't miss out on huge jackpots! Win big! Share the joy with friends! Grateful for your loyalty! Simply fantastic! Your efforts always result in victories! Eagerly awaiting your upcoming tournaments! Bookmarked your content in my browser! You're the best! Telling everyone! Thanks for the rewarding experience! Very exciting promotion! Your skills always are rewarded! mostbet ru mostbet mostbet today mostbet Киргизия

1win, 2025/04/09 18:09

¡La fortuna te acompaña! No pierdas la oportunidad de disfrutar de apuestas seguros y entretenidas en 1Win. 1win

1win, 2025/04/09 18:09

¡La fortuna te acompaña! No pierdas la oportunidad de disfrutar de apuestas seguros y entretenidas en 1Win. 1win

bet9ja old mobile, 2025/04/09 18:07

Discover Bet9ja: The Best Betting Experience in Nigeria!

bet9ja old mobile Looking for a simple betting experience? Access the Bet9ja Old Mobile version and experience fast loading times and easy navigation. Bet on soccer, casino games, and virtual races without the complexities of the new version. Start betting in minutes!

old bet9ja

bet9ja old mobile, 2025/04/09 18:07

Discover Bet9ja: The Best Betting Experience in Nigeria!

bet9ja old mobile Looking for a simple betting experience? Access the Bet9ja Old Mobile version and experience fast loading times and easy navigation. Bet on soccer, casino games, and virtual races without the complexities of the new version. Start betting in minutes!

old bet9ja

pinco, 2025/04/09 18:05

Pinco Casino'da eğlence sizi bekliyor! pinco

Pinco Casino'da hızla kayıt olabilirsiniz. Bonuslu oyunlar ve yüksek ödeme oranları ile oyun deneyiminizi zenginleştirin. pinco

pinco, 2025/04/09 18:05

Pinco Casino'da eğlence sizi bekliyor! pinco

Pinco Casino'da hızla kayıt olabilirsiniz. Bonuslu oyunlar ve yüksek ödeme oranları ile oyun deneyiminizi zenginleştirin. pinco

pin up casino india, 2025/04/09 18:04

Exciting casino options await you at Pin-Up! At Pin-Up Casino, you'll find engaging slot games, table games, sports wagers, and much more. Play premium games from top providers like NetEnt and Microgaming, and take your chance for huge wins!

pin up casino india Maximizing the ?450000 Welcome Bonus at Pin-Up Casino. The Pin Up casino welcome offer of up to ?450000 is generous, but how can you take full advantage of it? Have you received this offer yet? Let us know your strategies and tips for transforming the bonus into huge payouts. Let’s talk about how to make the most out of your first top-up!

pin up casino india, 2025/04/09 18:04

Exciting casino options await you at Pin-Up! At Pin-Up Casino, you'll find engaging slot games, table games, sports wagers, and much more. Play premium games from top providers like NetEnt and Microgaming, and take your chance for huge wins!

pin up casino india Maximizing the ?450000 Welcome Bonus at Pin-Up Casino. The Pin Up casino welcome offer of up to ?450000 is generous, but how can you take full advantage of it? Have you received this offer yet? Let us know your strategies and tips for transforming the bonus into huge payouts. Let’s talk about how to make the most out of your first top-up!

taya365 app, 2025/04/09 18:04

Use Taya365 bonuses for maximum victories taya365 app Uncover the world of online gaming with Taya365 and enjoy top-notch live games. Register today to receive huge rewards and bonuses! Taya365 and enjoy a world of adventure. Whether you're into sports betting, there's something to enjoy. Get started and win big! taya365 app download

taya365 app, 2025/04/09 18:04

Use Taya365 bonuses for maximum victories taya365 app Uncover the world of online gaming with Taya365 and enjoy top-notch live games.

Register today to receive huge rewards and bonuses! Taya365 and enjoy a world of adventure. Whether you're into sports betting, there's something to enjoy. Get started and win big! taya365 app download

Online betting in Egypt, 2025/04/04 06:20

دائماً أراهن في 1xbet Sports Betting Egypt – مضمون ومربح! أوصي به الآن! Online betting in Egypt

Online betting in Egypt, 2025/04/04 06:20

دائماً أراهن في 1xbet Sports Betting Egypt – مضمون ومربح!

أوصي به الآن! Online betting in Egypt

Mostbet BD, 2025/04/03 05:44

Mostbet জুয়া – বিশাল প্ল্যাটফর্ম ভার্চুয়াল গেমস জন্য। Mostbet BD

Mostbet BD, 2025/04/03 05:44

Mostbet জুয়া – বিশাল প্ল্যাটফর্ম ভার্চুয়াল গেমস জন্য। Mostbet BD

mostbet kazakhstan, 2025/04/01 04:33

Онлайн казино Mostbet – кең ауқымды мүмкіндіктер ұсынады спорттық ставкалар сүйінушілеріне.

mostbet kazakhstan

mostbet kazakhstan, 2025/04/01 04:33

Онлайн казино Mostbet – кең ауқымды мүмкіндіктер ұсынады спорттық ставкалар сүйінушілеріне. mostbet kazakhstan

mega moriarty, 2025/03/30 23:23

На данном сайте всегда доступна актуальная ссылка на мега мориарти, которая обновляется регулярно, чтобы вы могли без проблем попасть на нужную платформу.

mega moriarty, 2025/03/30 23:23

На данном сайте всегда доступна актуальная ссылка на мега мориарти, которая обновляется регулярно, чтобы вы могли без проблем попасть на нужную платформу.

why 1xbet is the best online casino site for UAE players Thank you for your openness and openness! �� 400 Bad Request

why 1xbet is the best online casino site for UAE players Thank you for your openness and openness! �� 400 Bad Request

1xBet تسجيل, 2025/03/19 08:29

دائماً أراهن في 1xbet مصر – مضمون ومثالي! جربه بنفسك الآن! 1xBet تسجيل

1xBet تسجيل, 2025/03/19 08:29

دائماً أراهن في 1xbet مصر – مضمون ومثالي! جربه بنفسك الآن! 1xBet تسجيل

1xBet عروض ترويجية, 2025/03/17 21:23

جربت 1xbet Mobile App Egypt – يتميز بواجهة ممتازة، السحب دون مشاكل!

1xBet عروض ترويجية

1xBet عروض ترويجية, 2025/03/17 21:23

جربت 1xbet Mobile App Egypt – يتميز بواجهة ممتازة، السحب دون مشاكل!

1xBet عروض ترويجية

Jogar FortuneRabbit sempre foi tão simples., 2025/03/14 23:47

هل تحتاج إلى أشهر شركة رهان؟ 1xbet شركة الرهان يقدم أقوى الفرص ودفعات سريعة! Jogar FortuneRabbit sempre foi tão simples.

Nam, 2025/03/14 23:47

هل تحتاج إلى أشهر شركة رهان؟ 1xbet شركة الرهان يقدم أقوى الفرص ودفعات سريعة!

Jogar FortuneRabbit sempre foi tão simples.

1xBet in Egypt, 2025/03/04 22:58

دائماً أشارك في 1xbet Sports Betting Egypt – مريح ومربح! أنصح به الآن! 1xBet in Egypt

Dalene, 2025/03/04 22:57

دائماً أشارك في 1xbet Sports Betting Egypt – مريح ومربح! أنصح به الآن! 1xBet in Egypt

1xBet تطبيق الجوال, 2025/03/04 09:47

هل تبحث عن أقوى كازينو أونلاين؟ 1xbet Egypt يقدم أفضل العروض ودفعات سريعة! 1xBet تطبيق الجوال

Sherlyn, 2025/03/04 09:47

هل تبحث عن أقوى كازينو أونلاين؟ 1xbet Egypt يقدم أفضل العروض ودفعات سريعة! 1xBet تطبيق الجوال

Apostas em futebol, 2025/02/18 15:48

دائماً أراهن في 1xbet مصر – مريح ومثالي!

أنصح به الآن! Apostas em futebol

Jamel, 2025/02/18 15:48

دائماً أراهن في 1xbet مصر – مريح ومثالي! أنصح به الآن! Apostas em futebol

请输入您的评论. 可以使用维基语法:
 
home.txt · 最后更改: 2025/02/27 17:17 由 colin