📜 [專欄新文章] Uniswap v3 Features Explained in Depth
✍️ 田少谷 Shao
📥 歡迎投稿: https://medium.com/taipei-ethereum-meetup #徵技術分享文 #使用心得 #教學文 #medium
Once again the game-changing DEX 🦄 👑
Image source: https://uniswap.org/blog/uniswap-v3/
Outline
0. Intro1. Uniswap & AMM recap2. Ticks 3. Concentrated liquidity4. Range orders: reversible limit orders5. Impacts of v36. Conclusion
0. Intro
The announcement of Uniswap v3 is no doubt one of the most exciting news in the DeFi place recently 🔥🔥🔥
While most have talked about the impact v3 can potentially bring on the market, seldom explain the delicate implementation techniques to realize all those amazing features, such as concentrated liquidity, limit-order-like range orders, etc.
Since I’ve covered Uniswap v1 & v2 (if you happen to know Mandarin, here are v1 & v2), there’s no reason for me to not cover v3 as well ✅
Thus, this article aims to guide readers through Uniswap v3, based on their official whitepaper and examples made on the announcement page. However, one needs not to be an engineer, as not many codes are involved, nor a math major, as the math involved is definitely taught in your high school, to fully understand the following content 😊😊😊
If you really make it through but still don’t get shxt, feedbacks are welcomed! 🙏
There should be another article focusing on the codebase, so stay tuned and let’s get started with some background noise!
1. Uniswap & AMM recap
Before diving in, we have to first recap the uniqueness of Uniswap and compare it to traditional order book exchanges.
Uniswap v1 & v2 are a kind of AMMs (automated market marker) that follow the constant product equation x * y = k, with x & y stand for the amount of two tokens X and Y in a pool and k as a constant.
Comparing to order book exchanges, AMMs, such as the previous versions of Uniswap, offer quite a distinct user experience:
AMMs have pricing functions that offer the price for the two tokens, which make their users always price takers, while users of order book exchanges can be both makers or takers.
Uniswap as well as most AMMs have infinite liquidity¹, while order book exchanges don’t. The liquidity of Uniswap v1 & v2 is provided throughout the price range [0,∞]².
Uniswap as well as most AMMs have price slippage³ and it’s due to the pricing function, while there isn’t always price slippage on order book exchanges as long as an order is fulfilled within one tick.
In an order book, each price (whether in green or red) is a tick. Image source: https://ftx.com/trade/BTC-PERP
¹ though the price gets worse over time; AMM of constant sum such as mStable does not have infinite liquidity
² the range is in fact [-∞,∞], while a price in most cases won’t be negative
³ AMM of constant sum does not have price slippage
2. Tick
The whole innovation of Uniswap v3 starts from ticks.
For those unfamiliar with what is a tick:
Source: https://www.investopedia.com/terms/t/tick.asp
By slicing the price range [0,∞] into numerous granular ticks, trading on v3 is highly similar to trading on order book exchanges, with only three differences:
The price range of each tick is predefined by the system instead of being proposed by users.
Trades that happen within a tick still follows the pricing function of the AMM, while the equation has to be updated once the price crosses the tick.
Orders can be executed with any price within the price range, instead of being fulfilled at the same one price on order book exchanges.
With the tick design, Uniswap v3 possesses most of the merits of both AMM and an order book exchange! 💯💯💯
So, how is the price range of a tick decided?
This question is actually somewhat related to the tick explanation above: the minimum tick size for stocks trading above 1$ is one cent.
The underlying meaning of a tick size traditionally being one cent is that one cent (1% of 1$) is the basis point of price changes between ticks, ex: 1.02 — 1.01 = 0.1.
Uniswap v3 employs a similar idea: compared to the previous/next price, the price change should always be 0.01% = 1 basis point.
However, notice the difference is that in the traditional basis point, the price change is defined with subtraction, while here in Uniswap it’s division.
This is how price ranges of ticks are decided⁴:
Image source: https://uniswap.org/whitepaper-v3.pdf
With the above equation, the tick/price range can be recorded in the index form [i, i+1], instead of some crazy numbers such as 1.0001¹⁰⁰ = 1.0100496621.
As each price is the multiplication of 1.0001 of the previous price, the price change is always 1.0001 — 1 = 0.0001 = 0.01%.
For example, when i=1, p(1) = 1.0001; when i=2, p(2) = 1.00020001.
p(2) / p(1) = 1.00020001 / 1.0001 = 1.0001
See the connection between the traditional basis point 1 cent (=1% of 1$) and Uniswap v3’s basis point 0.01%?
Image source: https://tenor.com/view/coin-master-cool-gif-19748052
But sir, are prices really granular enough? There are many shitcoins with prices less than 0.000001$. Will such prices be covered as well?
Price range: max & min
To know if an extremely small price is covered or not, we have to figure out the max & min price range of v3 by looking into the spec: there is a int24 tick state variable in UniswapV3Pool.sol.
Image source: https://uniswap.org/whitepaper-v3.pdf
The reason for a signed integer int instead of an uint is that negative power represents prices less than 1 but greater than 0.
24 bits can cover the range between 1.0001 ^ (2²³ — 1) and 1.0001 ^ -(2)²³. Even Google cannot calculate such numbers, so allow me to offer smaller values to have a rough idea of the whole price range:
1.0001 ^ (2¹⁸) = 242,214,459,604.341
1.0001 ^ -(2¹⁷) = 0.000002031888943
I think it’s safe to say that with a int24 the range can cover > 99.99% of the prices of all assets in the universe 👌
⁴ For implementation concern, however, a square root is added to both sides of the equation.
How about finding out which tick does a price belong to?
Tick index from price
The answer to this question is rather easy, as we know that p(i) = 1.0001^i, simply takes a log with base 1.0001 on both sides of the equation⁴:
Image source: https://www.codecogs.com/latex/eqneditor.php
Let’s try this out, say we wanna find out the tick index of 1000000.
Image source: https://ncalculators.com/number-conversion/log-logarithm-calculator.htm
Now, 1.0001¹³⁸¹⁶² = 999,998.678087146. Voila!
⁵ This formula is also slightly modified to fit the real implementation usage.
3. Concentrated liquidity
Now that we know how ticks and price ranges are decided, let’s talk about how orders are executed in a tick, what is concentrated liquidity and how it enables v3 to compete with stablecoin-specialized DEXs (decentralized exchange), such as Curve, by improving the capital efficiency.
Concentrated liquidity means LPs (liquidity providers) can provide liquidity to any price range/tick at their wish, which causes the liquidity to be imbalanced in ticks.
As each tick has a different liquidity depth, the corresponding pricing function x * y = k also won’t be the same!
Each tick has its own liquidity depth. Image source: https://uniswap.org/blog/uniswap-v3/
Mmm… examples are always helpful for abstract descriptions 😂
Say the original pricing function is 100(x) * 1000(y) = 100000(k), with the price of X token 1000 / 100 = 10 and we’re now in the price range [9.08, 11.08].
If the liquidity of the price range [11.08, 13.08] is the same as [9.08, 11.08], we don’t have to modify the pricing function if the price goes from 10 to 11.08, which is the boundary between two ticks.
The price of X is 1052.63 / 95 = 11.08 when the equation is 1052.63 * 95 = 100000.
However, if the liquidity of the price range [11.08, 13.08] is two times that of the current range [9.08, 11.08], balances of x and y should be doubled, which makes the equation become 2105.26 * 220 = 400000, which is (1052.63 * 2) * (110 * 2) = (100000 * 2 * 2).
We can observe the following two points from the above example:
Trades always follow the pricing function x * y = k, while once the price crosses the current price range/tick, the liquidity/equation has to be updated.
√(x * y) = √k = L is how we represent the liquidity, as I say the liquidity of x * y = 400000 is two times the liquidity of x * y = 100000, as √(400000 / 100000) = 2.
What’s more, compared to liquidity on v1 & v2 is always spread across [0,∞], liquidity on v3 can be concentrated within certain price ranges and thus results in higher capital efficiency from traders’ swapping fees!
Let’s say if I provide liquidity in the range [1200, 2800], the capital efficiency will then be 4.24x higher than v2 with the range [0,∞] 😮😮😮 There’s a capital efficiency comparison calculator, make sure to try it out!
Image source: https://uniswap.org/blog/uniswap-v3/
It’s worth noticing that the concept of concentrated liquidity was proposed and already implemented by Kyper, prior to Uniswap, which is called Automated Price Reserve in their case.⁵
⁶ Thanks to Yenwen Feng for the information.
4. Range orders: reversible limit orders
As explained in the above section, LPs of v3 can provide liquidity to any price range/tick at their wish. Depending on the current price and the targeted price range, there are three scenarios:
current price < the targeted price range
current price > the targeted price range
current price belongs to the targeted price range
The first two scenarios are called range orders. They have unique characteristics and are essentially fee-earning reversible limit orders, which will be explained later.
The last case is the exact same liquidity providing mechanism as the previous versions: LPs provide liquidity in both tokens of the same value (= amount * price).
There’s also an identical product to the case: grid trading, a very powerful investment tool for a time of consolidation. Dunno what’s grid trading? Check out Binance’s explanation on this, as this topic won’t be covered!
In fact, LPs of Uniswap v1 & v2 are grid trading with a range of [0,∞] and the entry price as the baseline.
Range orders
To understand range orders, we’d have to first revisit how price is discovered on Uniswap with the equation x * y = k, for x & y stand for the amount of two tokens X and Y and k as a constant.
The price of X compared to Y is y / x, which means how many Y one can get for 1 unit of X, and vice versa the price of Y compared to X is x / y.
For the price of X to go up, y has to increase and x decrease.
With this pricing mechanism in mind, it’s example time!
Say an LP plans to place liquidity in the price range [15.625, 17.313], higher than the current price of X 10, when 100(x) * 1000(y) = 100000(k).
The price of X is 1250 / 80 = 15.625 when the equation is 80 * 1250 = 100000.
The price of X is 1315.789 / 76 = 17.313 when the equation is 76 * 1315.789 = 100000.
If now the price of X reaches 15.625, the only way for the price of X to go even higher is to further increase y and decrease x, which means exchanging a certain amount of X for Y.
Thus, to provide liquidity in the range [15.625, 17.313], an LP needs only to prepare 80 — 76 = 4 of X. If the price exceeds 17.313, all 4 X of the LP is swapped into 1315.789 — 1250 = 65.798 Y, and then the LP has nothing more to do with the pool, as his/her liquidity is drained.
What if the price stays in the range? It’s exactly what LPs would love to see, as they can earn swapping fees for all transactions in the range! Also, the balance of X will swing between [76, 80] and the balance of Y between [1250, 1315.789].
This might not be obvious, but the example above shows an interesting insight: if the liquidity of one token is provided, only when the token becomes more valuable will it be exchanged for the less valuable one.
…wut? 🤔
Remember that if 4 X is provided within [15.625, 17.313], only when the price of X goes up from 15.625 to 17.313 is 4 X gradually swapped into Y, the less valuable one!
What if the price of X drops back immediately after reaching 17.313? As X becomes less valuable, others are going to exchange Y for X.
The below image illustrates the scenario of DAI/USDC pair with a price range of [1.001, 1.002] well: the pool is always composed entirely of one token on both sides of the tick, while in the middle 1.001499⁶ is of both tokens.
Image source: https://uniswap.org/blog/uniswap-v3/
Similarly, to provide liquidity in a price range < current price, an LP has to prepare a certain amount of Y for others to exchange Y for X within the range.
To wrap up such an interesting feature, we know that:
Only one token is required for range orders.
Only when the current price is within the range of the range order can LP earn trading fees. This is the main reason why most people believe LPs of v3 have to monitor the price more actively to maximize their income, which also means that LPs of v3 have become arbitrageurs 🤯
I will be discussing more the impacts of v3 in 5. Impacts of v3.
⁷ 1.001499988 = √(1.0001 * 1.0002) is the geometric mean of 1.0001 and 1.0002. The implication is that the geometric mean of two prices is the average execution price within the range of the two prices.
Reversible limit orders
As the example in the last section demonstrates, if there is 4 X in range [15.625, 17.313], the 4 X will be completely converted into 65.798 Y when the price goes over 17.313.
We all know that a price can stay in a wide range such as [10, 11] for quite some time, while it’s unlikely so in a narrow range such as [15.625, 15.626].
Thus, if an LP provides liquidity in [15.625, 15.626], we can expect that once the price of X goes over 15.625 and immediately also 15.626, and does not drop back, all X are then forever converted into Y.
The concept of having a targeted price and the order will be executed after the price is crossed is exactly the concept of limit orders! The only difference is that if the range of a range order is not narrow enough, it’s highly possible that the conversion of tokens will be reverted once the price falls back to the range.
As price ranges follow the equation p(i) = 1.0001 ^ i, the range can be quite narrow and a range order can thus effectively serve as a limit order:
When i = 27490, 1.0001²⁷⁴⁹⁰ = 15.6248.⁸
When i = 27491, 1.0001²⁷⁴⁹¹ = 15.6264.⁸
A range of 0.0016 is not THAT narrow but can certainly satisfy most limit order use cases!
⁸ As mentioned previously in note #4, there is a square root in the equation of the price and index, thus the numbers here are for explantion only.
5. Impacts of v3
Higher capital efficiency, LPs become arbitrageurs… as v3 has made tons of radical changes, I’d like to summarize my personal takes of the impacts of v3:
Higher capital efficiency makes one of the most frequently considered indices in DeFi: TVL, total value locked, becomes less meaningful, as 1$ on Uniswap v3 might have the same effect as 100$ or even 2000$ on v2.
The ease of spot exchanging between spot exchanges used to be a huge advantage of spot markets over derivative markets. As LPs will take up the role of arbitrageurs and arbitraging is more likely to happen on v3 itself other than between DEXs, this gap is narrowed … to what extent? No idea though.
LP strategies and the aggregation of NFT of Uniswap v3 liquidity token are becoming the blue ocean for new DeFi startups: see Visor and Lixir. In fact, this might be the turning point for both DeFi and NFT: the two main reasons of blockchain going mainstream now come to the alignment of interest: solving the $$ problem 😏😏😏
In the right venue, which means a place where transaction fees are low enough, such as Optimism, we might see Algo trading firms coming in to share the market of designing LP strategies on Uniswap v3, as I believe Algo trading is way stronger than on-chain strategies or DAO voting to add liquidity that sort of thing.
After reading this article by Parsec.finance: The Dex to Rule Them All, I cannot help but wonder: maybe there is going to be centralized crypto exchanges adopting v3’s approach. The reason is that since orders of LPs in the same tick are executed pro-rata, the endless front-running speeding-competition issue in the Algo trading world, to some degree, is… solved? 🤔
Anyway, personal opinions can be biased and seriously wrong 🙈 I’m merely throwing out a sprat to catch a whale. Having a different voice? Leave your comment down below!
6. Conclusion
That was kinda tough, isn’t it? Glad you make it through here 🥂🥂🥂
There are actually many more details and also a huge section of Oracle yet to be covered. However, since this article is more about features and targeting normal DeFi users, I’ll leave those to the next one; hope there is one 😅
If you have any doubt or find any mistake, please feel free to reach out to me and I’d try to reply AFAP!
Stay tuned and in the meantime let’s wait and see how Uniswap v3 is again pioneering the innovation of DeFi 🌟
Uniswap v3 Features Explained in Depth was originally published in Taipei Ethereum Meetup on Medium, where people are continuing the conversation by highlighting and responding to this story.
👏 歡迎轉載分享鼓掌
同時也有6部Youtube影片,追蹤數超過75的網紅Nazurah Asaraf,也在其Youtube影片中提到,*Watch in 720p!* Felt like doing a short vlog-ish video during our (Nadhirah, Afnan and myself) trip to Saatchi Gallery! This video is a compilation ...
「abstract function」的推薦目錄:
- 關於abstract function 在 Taipei Ethereum Meetup Facebook 的最讚貼文
- 關於abstract function 在 Christopher Doyle 杜可風 Facebook 的最佳貼文
- 關於abstract function 在 老闆 來點寇汀吧。 Boss,CODING please. Facebook 的精選貼文
- 關於abstract function 在 Nazurah Asaraf Youtube 的精選貼文
- 關於abstract function 在 吳老師教學部落格 Youtube 的最佳解答
- 關於abstract function 在 吳老師教學部落格 Youtube 的最佳解答
abstract function 在 Christopher Doyle 杜可風 Facebook 的最佳貼文
我們的電影大多是在一如往常的空間拍攝,狹小的環境讓我們要變法或是即慶創作,用一個更具創意的方式,讓觀眾確切跟主角和他們的處境「親近」。我相信在工作現場處理空間上的挑戰,能讓演員、團隊以至最終面對的觀眾,都能構成一份能量。
日以作夜,顧名思義是把日景當夜景拍攝,最佳的時份莫過於黃昏,日落西山下,「天上的光」映照空間帶出優雅的沉鬱感。若用黑白菲林拍攝,加上紅色濾鏡,藍天會變黑。如現代用彩色菲林拍攝,最好不要拍到天空,而要讓影像曝光不足,再為臉龐補光。到數碼攝影時代,有更多方法甚至DaVinci Resolve已能解決不少難題。
很多時,你不能夠為海面打燈,它會看得出被照明。同一道理在沙漠:你怎能携上幾顆大燈去補光,讓它看起來像月亮映照遼闊沙漠的模樣。當你在北歐夏季時間拍攝,當地日照至晚上11點….在冰島,太陽高懸地平線上,24小時晝夜不息….當你要去一個准予你拍攝的地方拍攝,那為何一定要選擇這地方,若非本來就能有其他選擇?
拍攝「真」夜景,每個人的精力大約到凌晨2點便慢慢減退….你減慢了速度,腦袋也不如日間般靈光….喝一杯咖啡或威士忌或有幫助,大約到凌晨4點倦意的循環漸過,但始終失去了專注和行動力。
對我來說,拍攝《三更之回家》的美感在於採取了實務的選擇,大量以日景作夜景拍攝。故事的主角們像處身「地獄的邊緣」:一個抽象又不明確的地方。他們的世界就只有PMQ這空間,它是在世界外圍的邊緣,所以我認為它值得有屬於自己的觸感、外觀和氛圍。我希望大家永遠不知日夜,就像故事帶出我們無從知道何謂真實與幻象,夢想與夢魘。
Most of our films are made in the space in which they are told. The limitations of small spaces make one adapt, or improvise, and respond to what is there in a more creative way I believe the audience feels literally “closer” to the characters and their predicaments because of this. I am sure that in “solving” the challenges of the working environment, a certain energy is created which engages the actors, the team and ultimately an audience.
Day for Night means what it says: you shoot a night scene during the daylight hours. It works best when around dusk when the sun has gone down but what is called “sky light” gives the space an ethereal moodiness. With black and white film, a red filter would turn a blue sky black. With modern colour film, it’s best to keep the sky out of shot and underexpose the image but try to light up the faces. With new digital technology there is a whole lot even DaVinci Resolve can help you achieve.
In most situations you can’t light the sea. It will look lit. Same thing with the desert: how can you get big lamps far enough out there to make it look like the moon has lit such a vast space. When you shoot in Northern Europe in Summer in most places it’s light till 11 pm … in Iceland the sun is hangs on the horizon for the full 24 hours of a day …. So you make the film the location allows you to make. And anyway why did you choose to make it here or there if the way the place is not the reason you came here in the first place?
When you shoot “ real ” night everyone’s energy starts to fade around 2 am …. You slow down. Your mind doesn't react as fast … a coffee or a whiskey might help, and usually most come out of this cycle around 4 am, but still you lose focus and function.
But for me with Three, Going Home is was as much an aesthetic as practical choice to shoot so much day for night. It seemed to me that the characters were in some kind of LIMBO: an abstract, unspecified place . Their world is that PMQ space itself. It is outside the outside world, so I felt it deserved a feel and look and mood of its own. I hoped we would never really know what time of day or night it is, just as the story suggests that we don't know what is real or imagined, fantasy or nightmare.
影片來源Video:《三更之回家》 “Three, Going Home” (2002)
#前荷里活道已婚警察宿舍 #三更之回家 #陳可辛 #真實與幻象
#PMQ #ThreeGoingHome #FruitChan #realorimagined
abstract function 在 老闆 來點寇汀吧。 Boss,CODING please. Facebook 的精選貼文
200527 Abstract Trigger 抽象開關
準備課程時候的範例再細修,
用不同的動態對應不同的聲音!
圓形是鑼,方形是喀喀的木頭聲,三角形是刷的聲音,
嘗試配上不同的easing function 製造動感。
https://www.openprocessing.org/sketch/906168
老闆的 IG 追起來 👉 https://www.instagram.com/bosscodingplease/
【互動藝術程式創作入門】募資順利結束,已經突破 3330%!準備精彩課程範例中 👉 https://hahow.in/cr/creative-coding-1
#dailycodingchallenge #generativeart #creativecoding #p5js #digitalart #creativecodeart #new_media_art #art #graphic #codeart
abstract function 在 Nazurah Asaraf Youtube 的精選貼文
*Watch in 720p!*
Felt like doing a short vlog-ish video during our (Nadhirah, Afnan and myself) trip to Saatchi Gallery! This video is a compilation of both Nadhirah and my videos.
Thanks for watching!
►PROFILE LINKS◄
My artworks: http://ofnazurah.deviantart.com
Twitter: https://twitter.com/ofnazurah
Instagram: http://instagram.com/ofnazurah
►MUSIC◄
- https://soundcloud.com/imkuma/falling-for-somebody-new

abstract function 在 吳老師教學部落格 Youtube 的最佳解答
陳郁夫老師的龍泉與寒泉--為古籍裝上GPS
最近恰好一位碩士班同學來找我詢問關於龍泉二號的事,
主要是因為是他的博士論文要在近期內提出,對古籍查詢系統需求甚鉅,
目前網路上能查到十三經、二十五史與諸子的大概只有陳老師的寒泉,
與中研院的漢籍資料庫,陳郁夫老師的寒泉又有故宮與台北大學兩地的網站,
可是故宮網站無預警的卸下二十五史資料庫,台北大學又連不上線,
而漢籍資料庫也好不到哪去,經常性的無法連線,
讓我這位即將畢業的博士同學倍感煎熬,於是找我協助,
看有沒有一種方式可以提供他穩定的查詢。
陳郁夫老師的龍泉:
老師的龍泉與寒泉的差別就在單機版與網路版,
網路本的優點是可線上查詢,但礙於網路的穩定性,若連不上線,便無法提供查詢。
單機版的龍泉則沒有這樣的問題,隨時開啟,隨時查詢,
此外,陳老師也順應趨勢,很早以前就將程式製成隨身可攜版,
亦即隨身碟插上電腦,便可執行查詢的動作,相當的便利,
也就是一支隨身碟,變是古籍圖書館。
此外,單機版亦提供進階功能:
1.瀏覽搜尋所得資料:
可在查詢到的資料中任意自由前後上下翻閱,感覺上像在古籍中裝上GPS(衛星導航)般,
只要設定一個目的地,便可不怕迷失方向的找到方向。
2.編輯、修改、選取、儲存功能:
針對古籍資料中可能的錯誤,提供使用者自行修改資料庫的功能,
讓資料庫的正確性可不斷提供,以滿足研究者對資料正確性的保證。
3.找到資料的上段、下段、篇首與篇末功能:
除了可查詢關鍵字的段落外,有別於網路查詢的缺點,
提供上下段落查詢的功能,讓研究者可以針對所需資料進一步深度瀏覽。
4.單筆匯集:
將搜尋所得資料,羅列出來,可精要的快速瀏覽,有點要摘要的功能。
5.資料分布:
這個功能可以用在與其他經典資料分布情況上的比較上,快速得到分布一覽表。
陳郁夫教授 龍泉一號 龍泉二號 寒泉資料庫 數位典藏 東吳 師大 教授 吳老師 古籍資料庫 文獻數位化 軟體開發
Professor Chen Yufu Longquan and Cold Spring - fitted with GPS for the classics
In addition, the standalone version also provides advanced features:
1. Browse the information available to search:
In the query to the information available in any of the free to read up and down before and after, feel like in the ancient Zhongzhuang GPS (satellite navigation) as,
By setting a destination, be not afraid of losing the direction of find the direction.
2. Edit, modify, select, store features:
For antiques may be errors in the database provides users with the initiative to revise the functions of
So that the accuracy of the database can continue to provide to meet the guarantee of the accuracy of information researchers.
3. To find information in the above paragraph, the next section of articles and Pianmo first function:
In addition to keyword queries paragraphs, the distinct disadvantage of online queries,
Query functions to provide the upper and lower passages, so that researchers can browse for the necessary information for further depth.
4. Single collection:
To search for available information, have set out to incisive fast browsing, a bit to abstract functions.
5. Data distribution:
This feature can be used in with other classical data on the distribution of comparison, quick get the distribution list.
Professor Chen Yufu Longquan Longquan on the 1st on the 2nd Cold Spring Library Digital Archives, Professor Wu National Taiwan Normal University Soochow teacher ancient literature digital library software development

abstract function 在 吳老師教學部落格 Youtube 的最佳解答
陳郁夫老師的龍泉與寒泉--為古籍裝上GPS
最近恰好一位碩士班同學來找我詢問關於龍泉二號的事,
主要是因為是他的博士論文要在近期內提出,對古籍查詢系統需求甚鉅,
目前網路上能查到十三經、二十五史與諸子的大概只有陳老師的寒泉,
與中研院的漢籍資料庫,陳郁夫老師的寒泉又有故宮與台北大學兩地的網站,
可是故宮網站無預警的卸下二十五史資料庫,台北大學又連不上線,
而漢籍資料庫也好不到哪去,經常性的無法連線,
讓我這位即將畢業的博士同學倍感煎熬,於是找我協助,
看有沒有一種方式可以提供他穩定的查詢。
陳郁夫老師的龍泉:
老師的龍泉與寒泉的差別就在單機版與網路版,
網路本的優點是可線上查詢,但礙於網路的穩定性,若連不上線,便無法提供查詢。
單機版的龍泉則沒有這樣的問題,隨時開啟,隨時查詢,
此外,陳老師也順應趨勢,很早以前就將程式製成隨身可攜版,
亦即隨身碟插上電腦,便可執行查詢的動作,相當的便利,
也就是一支隨身碟,變是古籍圖書館。
此外,單機版亦提供進階功能:
1.瀏覽搜尋所得資料:
可在查詢到的資料中任意自由前後上下翻閱,感覺上像在古籍中裝上GPS(衛星導航)般,
只要設定一個目的地,便可不怕迷失方向的找到方向。
2.編輯、修改、選取、儲存功能:
針對古籍資料中可能的錯誤,提供使用者自行修改資料庫的功能,
讓資料庫的正確性可不斷提供,以滿足研究者對資料正確性的保證。
3.找到資料的上段、下段、篇首與篇末功能:
除了可查詢關鍵字的段落外,有別於網路查詢的缺點,
提供上下段落查詢的功能,讓研究者可以針對所需資料進一步深度瀏覽。
4.單筆匯集:
將搜尋所得資料,羅列出來,可精要的快速瀏覽,有點要摘要的功能。
5.資料分布:
這個功能可以用在與其他經典資料分布情況上的比較上,快速得到分布一覽表。
陳郁夫教授 龍泉一號 龍泉二號 寒泉資料庫 數位典藏 東吳 師大 教授 吳老師 古籍資料庫 文獻數位化 軟體開發
Professor Chen Yufu Longquan and Cold Spring - fitted with GPS for the classics
In addition, the standalone version also provides advanced features:
1. Browse the information available to search:
In the query to the information available in any of the free to read up and down before and after, feel like in the ancient Zhongzhuang GPS (satellite navigation) as,
By setting a destination, be not afraid of losing the direction of find the direction.
2. Edit, modify, select, store features:
For antiques may be errors in the database provides users with the initiative to revise the functions of
So that the accuracy of the database can continue to provide to meet the guarantee of the accuracy of information researchers.
3. To find information in the above paragraph, the next section of articles and Pianmo first function:
In addition to keyword queries paragraphs, the distinct disadvantage of online queries,
Query functions to provide the upper and lower passages, so that researchers can browse for the necessary information for further depth.
4. Single collection:
To search for available information, have set out to incisive fast browsing, a bit to abstract functions.
5. Data distribution:
This feature can be used in with other classical data on the distribution of comparison, quick get the distribution list.
Professor Chen Yufu Longquan Longquan on the 1st on the 2nd Cold Spring Library Digital Archives, Professor Wu National Taiwan Normal University Soochow teacher ancient literature digital library software development
