link.medium.com
這兩天疫情又開始緊張起來,政府也開始要求各單位恢復過去的實聯制,但這不對啊,我們不是已經有「臺灣社交距離」 APP ?這是最好的推廣機會,只要各單位在進出時要求訪客拿出手機 APP…
![]()
frontend/Components/Content.jsx
``` // @flow import * as React from 'react'; import ReactMarkdown from 'react-markdown'; import type { Locale } from '../Types/Locale'; const enUS = ` ### Who can get the COVID-19 vaccine? You can get the COVID-19 vaccine for free if you are part of the eligible groups set by the Taiwanese government. If you intend to travel outside of Taiwan, you may pay out-of-pocket for a vaccine. ### What vaccines are available? Currently, the Taiwanese government is administering the AstraZeneca vaccine. ### How do I use this website? Look for hospitals in your area. If the 'Availability' column on the right says 'Available', then there are COVID-19 out-of-pocket vaccines available. If it says 'Unavailable', the hospital has no open appointments. If it says 'No Data', we haven't found a way to add the data to this website yet. Please check the hospital directly by clicking on 'Register here'. ### How can I learn more? * [English FAQs by the Taiwan CDC](<https://www.cdc.gov.tw/File/Get/rJJ09nktKU7btX_ZTEo_4w>) ### Who built this website? This website was built by volunteers with the [g0v](<https://g0v.tw>) civic hacker network. It is not associated with the Taiwanese government and is not an official resource. For official information, please check the [Taiwan CDC's website](<https://cdc.gov.tw>). ### How can I help? This website relies on crawling hospital websites to get real-time information. We need your help to build the rest! Please join the g0v slack and fork our code on [GitHub](<https://github.com/g0v/vaccinate>) `; const zhTW = ` ### 誰能夠接種COVID-19疫苗? COVID-19公費疫苗已開放給公費疫苗接種對象。詳細資料請參考 [衛生福利部疾病管理署官網](<https://www.cdc.gov.tw/Category/Page/9mcqWyq51P_aYADuh3rTBA>)。 此外,COVID-19自費疫苗也開放給任何有出國需求在台的人。接種對象不限國籍。 ### 現在能夠打哪一種疫苗? 疾病管理署正在供應AstraZeneca的疫苗。 ### 該怎麼使用本網站? 如果在您附近的醫院旁邊看到「Available」的話,表示醫院有自費COVID-19疫苗名額。 請直接往醫院官網報名。如果顯示「No Data」,表示本網不提供醫院顯示名額狀況的訊息。 請跟隨連接,跟醫院直接查詢名額。 ### 本網站是由誰開發的? 本網站由[g0v](<https://g0v.tw>)公民科技社群內的Civic Hacker開發的。非官方頁面。如需要 官方諮詢,請查看[衛生福利部疾病管理署官網](<https://cdc.gov.tw>). ### 你能夠怎麼協助本網? 本網透過扒醫院官網的方式提供現時的名額資訊。總共有31個網站。小編無法一個人寫那麼多! 如果您有興趣幫忙的話,請加入g0v的Slack並且Fork我們在 [GitHub](<https://github.com/g0v/vaccinate>)上的Code! Please help me translate this text. Contribute by adding to [this file](<https://github.com/g0v/vaccinate/blob/master/frontend/Content.jsx>) `; const bahasa = ` ### Siapa yang bisa mendapatkan vaksin COVID-19? Anda bisa mendapatkan vaksin COVID-19 secara gratis jika Anda termasuk dalam kelompok yang memenuhi syarat yang ditetapkan oleh pemerintah Taiwan. Jika Anda berniat bepergian ke luar Taiwan, Anda bisa membayar sendiri untuk mendapatkan vaksin. ### Vaksin apa yang tersedia? Saat ini, pemerintah Taiwan sedang mengelola Vaksin AstraZeneca. ### Bagaimana cara menggunakan situs web ini? Anda bisa menggunakannya untuk mencari rumah sakit di daerah Anda. Jika kolom 'Ketersediaan' di sebelah kanan bertuliskan 'Tersedia', maka akan ada vaksin COVID-19 yang bisa diberikan. Jika tertulis 'Tidak Tersedia', maka rumah sakit tersebut tidak ada janji terbuka. Jika tertulis 'Tidak Ada Data', artinya kami belum menemukan cara untuk menambahkan data ke situs web ini. Tolong cek rumah sakit langsung dengan mengklik 'Daftar di sini'. ### Bagaimana saya dapat mempelajari lebih lanjut? * Ada bisa melihat [FAQ Bahasa Inggris oleh CDC Taiwan](<https://www.cdc.gov.tw/File/Get/rJJ09nktKU7btX_ZTEo_4w>) ### Siapa yang membangun situs web ini? Situs web ini dibuat oleh sukarelawan dengan jaringan peretas sipil [g0v](<https://g0v.tw>). Kami tidak terkait dengan pemerintah Taiwan dan bukan merupakan sumber resmi. Untuk informasi resmi, silakan cek [situs web CDC Taiwan](<https://cdc.gov.tw>). `; const ja = ` Japanese translation is a work in progress. Please contribute by adding to [this file](<https://github.com/g0v/vaccinate/blob/master/frontend/Content.jsx>) `; const ph = ` Tagalog translation is a work in progress. Please contribute by adding to [this file](<https://github.com/g0v/vaccinate/blob/master/frontend/Content.jsx>) `; function getContent(language: string): string { switch (language) { case 'enUS': return enUS; case 'zhTW': return zhTW; case 'id': return bahasa; case 'ja': return ja; case 'ph': return ph; default: return zhTW; } } export default function Content(props: { setLocale: ((Locale => Locale) | Locale) => void, }): React.Node { const [language, setLanguage] = React.useState('zhTW'); const { setLocale } = props; return ( <> <div style={{ textAlign: 'center' }}> <div className="btn-group" role="group" aria-label="Basic outlined example" > <button type="button" onClick={() => { setLanguage('enUS'); setLocale('en'); }} className="btn btn-outline-primary">English</button> <button type="button" onClick={() => { setLanguage('zhTW'); setLocale('zh'); }} className="btn btn-outline-primary">華語</button> <button type="button" onClick={() => { setLanguage('id'); setLocale('en'); }} className="btn btn-outline-primary">Bahasa</button> <button type="button" onClick={() => { setLanguage('ja'); setLocale('en'); }} className="btn btn-outline-primary">日本語</button> <button type="button" onClick={() => { setLanguage('ph'); setLocale('en'); }} className="btn btn-outline-primary">Tagalog</button> </div> </div> <div style={{ marginTop: 10 }}> <ReactMarkdown>{getContent(language)}</ReactMarkdown> </div> </> ); } ```
#1 [Parser] Add support for NTU Yunlin Hospital.
*Context* We are writing parsers to populate data on appointment availability. *This Pull Request* 1. Adds the website for making appointments for NTU Yunlin Hospital COVID-19 vaccines. 2. Sets kjcl as the point-of-contact for the hospital 3. Adds a parser. *Test Plan* ☑︎ `yarn tc` passes with no errors ☑︎ `yarn lint` fixes formatting errors. ☑︎ Load up the site and confirm it's working. <https://user-images.githubusercontent.com/8745371/116392727-5ebb0980-a853-11eb-9cf3-91aadd601ff5.png|Screenshot from 2021-04-28 18-55-24>
![]()
g0v.hackmd.io
![]()
Apple
Privacy-Preserving Contact Tracing - Apple and Google
Contact Tracing makes it possible to combat the spread of the COVID-19 virus.
![]()
Facebook Groups
【已獲管理員同意貼文】 嗨大家好,我是「臺灣社交距離APP」的負責人,最近疫情升溫,歡迎大家下載APP,保護你我的安全。 希望透過網路社群的力量解決一些使用上的疑問,同時促進更多人安裝,提升科技防疫網路。 :sparkle:無需個資|使用者無需註冊、無需上傳資料也無需GPS 定位資訊 :sparkle:去識別化|使用者手持裝置每 10-20 分鐘自動生成一個隨機的、不可回溯的、無法還原的雜湊值(Hashed...
src/data/footprints/wanhua.geojson
``` { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "磅磅仔三府宮", "time_from": "2021-05-01T07:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.82568669319153, 25.120885380289486] } }, { "type": "Feature", "properties": { "name": "竹山紫南宮", "time_from": "2021-05-01T10:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.7226014137268, 23.81709091441698] } }, { "type": "Feature", "properties": { "name": "竹山丸滿餐廳", "time_from": "2021-05-01T12:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.71502685546875, 23.803648356404732] } }, { "type": "Feature", "properties": { "name": "正統鹿耳門", "time_from": "2021-05-01T13:00:00+08:00", "time_to": "2021-05-01T14:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.12723684310915, 23.06792660178379] } }, { "type": "Feature", "properties": { "name": "萬國通路創意觀光工廠", "time_from": "2021-05-01T13:00:00+08:00", "time_to": "2021-05-01T14:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.28000473976137, 22.93548200695695] } }, { "type": "Feature", "properties": { "name": "大寮朝鳳宮", "time_from": "2021-05-01T17:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.40898144245148, 22.619517367310966] } }, { "type": "Feature", "properties": { "name": "金獅湖保安宮", "time_from": "2021-05-01T20:30:00+08:00", "time_to": "2021-05-02T07:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [120.32708287239075, 22.666095846322797] } }, { "type": "Feature", "properties": { "name": "鹿港天后宮", "time_from": "2021-05-02T07:00:00+08:00", "time_to": "2021-05-02T13:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.4314637184143, 24.059308190861135] } }, { "type": "Feature", "properties": { "name": "東勢開安宮", "time_from": "2021-05-02T07:00:00+08:00", "time_to": "2021-05-02T13:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.26636838912964, 23.710081273458318] } }, { "type": "Feature", "properties": { "time_from": "2021-05-02T13:00:00+08:00", "time_to": "2021-05-02T18:00:00+08:00", "estimated": "yes", "name": "金福華餐廳" }, "geometry": { "type": "Point", "coordinates": [120.58160305023193, 24.250447033528673] } }, { "type": "Feature", "properties": { "name": "白沙屯拱天宮", "time_from": "2021-05-02T13:00:00+08:00", "time_to": "2021-05-02T18:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.70919036865234, 24.571499199010827] } }, { "type": "Feature", "properties": { "name": "後龍乾富宮", "time_from": "2021-05-02T13:00:00+08:00", "time_to": "2021-05-02T18:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.77419102191924, 24.604415887196744] } }, { "type": "Feature", "properties": { "name": "古都餐廳", "time_from": "2021-05-02T18:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [121.43782854080199, 24.971314445662607] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-02T11:00:00+08:00", "time_to": "2021-05-02T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-03T11:00:00+08:00", "time_to": "2021-05-03T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-04T11:00:00+08:00", "time_to": "2021-05-04T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-05T11:00:00+08:00", "time_to": "2021-05-05T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-06T11:00:00+08:00", "time_to": "2021-05-06T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "美金飲酒店", "time_from": "2021-05-06T14:00:00+08:00", "time_to": "2021-05-06T18:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [121.49816751480103, 25.036096156289407] } }, { "type": "Feature", "properties": { "name": "信義市場", "time_from": "2021-05-07T09:00:00+08:00", "time_to": "2021-05-07T10:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [121.7526340484619, 25.129666556487447] } }, { "type": "Feature", "properties": { "name": "鴻達茶藝館", "time_from": "2021-05-07T11:00:00+08:00", "time_to": "2021-05-07T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.50083899497984, 25.03619822432358] } }, { "type": "Feature", "properties": { "name": "良食小吃店", "time_from": "2021-05-07T17:30:00+08:00", "time_to": "2021-05-07T23:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.49837672710417, 25.036256548876413] } }, { "type": "Feature", "properties": { "name": "美金飲酒店", "time_from": "2021-05-07T14:00:00+08:00", "time_to": "2021-05-07T22:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [121.49801731109618, 25.036256548876413] } }, { "type": "Feature", "properties": { "name": "青龍宮", "time_from": "2021-05-07T06:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [121.49241149425507, 25.028868551490316] } }, { "type": "Feature", "properties": { "name": "鹿港竹安宮", "time_from": "2021-05-07T11:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.45600593090056, 24.079654441890884] } }, { "type": "Feature", "properties": { "name": "芳苑普天宮", "time_from": "2021-05-07T12:00:00+08:00", "estimated": "yes" }, "geometry": { "type": "Point", "coordinates": [120.31679391860962, 23.92932772481873] } …
src/data/footprints/1203.geojson
``` { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "晶華亭餐廳", "time_from": "2021-05-04T18:00:00+08:00", "time_to": "", "estimated": true, "investigating": true }, "geometry": { "type": "Point", "coordinates": [121.45468890666962, 25.041826415882806] } }, { "type": "Feature", "properties": { "name": "來來按摩 蘆洲長安店", "time_from": "2021-05-06T16:00:00+08:00", "time_to": "2021-05-06T17:30:00+08:00", "estimated": true, "investigating": true }, "geometry": { "type": "Point", "coordinates": [121.46073460578918, 25.081721815384785] } }, { "type": "Feature", "properties": { "name": "大風車婚宴會館", "time_from": "2021-05-06T19:00:00+08:00", "time_to": "2021-05-06T21:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.48038983345032, 25.081784976847242] } }, { "type": "Feature", "properties": { "name": "菜市場", "time_from": "2021-05-07T06:00:00+08:00", "time_to": "2021-05-07T06:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.4580202102661, 25.054442735744203] } }, { "type": "Feature", "properties": { "name": "楊老爹肉圓", "time_from": "2021-05-07T11:00:00+08:00", "time_to": "2021-05-07T20:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.44651889801025, 25.042069423518775] } }, { "type": "Feature", "properties": { "name": "遠東 SOGO 台北復興館", "time_from": "2021-05-07T16:00:00+08:00", "time_to": "2021-05-07T18:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.54322862625123, 25.041087669712546] } }, { "type": "Feature", "properties": { "name": "三重力行市場", "time_from": "2021-05-08T07:30:00+08:00", "time_to": "2021-05-08T08:30:00+08:00", "estimated": true }, "geometry": { "type": "Point", "coordinates": [121.48632287979126, 25.067495080451838] } }, { "type": "Feature", "properties": { "name": "楊老爹肉圓", "time_from": "2021-05-08T11:00:00+08:00", "time_to": "2021-05-08T20:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.44651889801025, 25.042069423518775] } }, { "type": "Feature", "properties": { "name": "菘賓餐廳", "time_from": "2021-05-08T12:30:00+08:00", "time_to": "2021-05-08T13:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.4387458562851, 25.08779002550195] } }, { "type": "Feature", "properties": { "time_from": "2021-05-08T19:00:00+08:00", "name": "阿秋越南美食", "time_to": "2021-05-08T20:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.47250413894653, 25.084306550149776] } }, { "type": "Feature", "properties": { "name": "林口三井 Outlet", "time_from": "2021-05-08T19:30:00+08:00", "time_to": "2021-05-08T21:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.36536598205568, 25.07057573633808] } }, { "type": "Feature", "properties": { "name": "醐同燒肉夜食五號店", "time_from": "2021-05-08T20:00:00+08:00", "estimated": true }, "geometry": { "type": "Point", "coordinates": [121.56789422035217, 25.035352515191246] } }, { "type": "Feature", "properties": { "name": "國父紀念館 巧虎奇幻音樂世界演奏會 (場次 10:30)", "time_from": "2021-05-08T10:30:00+08:00", "time_to": "2021-05-08T12:30:00+08:00", "estimated": "true" }, "geometry": { "type": "Point", "coordinates": [121.56020164489746, 25.040037864868324] } }, { "type": "Feature", "properties": { "name": "方記三杯滷味", "time_from": "2021-05-08T12:00:00+08:00", "estimated": "true", "investigating": true }, "geometry": { "type": "Point", "coordinates": [121.29154086112976, 25.049952330031257] } }, { "type": "Feature", "properties": { "name": "海霸王餐廳蘆洲店", "time_from": "2021-05-08T18:00:00+08:00", "estimated": "true", "investigating": true }, "geometry": { "type": "Point", "coordinates": [121.47776126861571, 25.081464310623613] } }, { "type": "Feature", "properties": { "name": "基隆八斗子釣魚", "time_from": "2021-05-09T07:00:00+08:00", "time_to": "2021-05-09T12:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.79441213607787, 25.14075868861908] } }, { "type": "Feature", "properties": { "name": "成泰里守望相助活動中心", "time_from": "2021-05-09T08:00:00+08:00", "time_to": "2021-05-09T12:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.44230246543883, 25.08990824097644] } }, { "type": "Feature", "properties": { "name": "卡拉OK (調查中)", "time_from": "2021-05-09T11:00:00+08:00", "time_to": "2021-05-09T16:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.56592011451721, 25.048581848773185] } }, { "type": "Feature", "properties": { "name": "好市多 Costco 新莊店", "time_from": "2021-05-09T11:00:00+08:00", "time_to": "2021-05-09T14:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.43406271934509, 25.02707981154962] } }, { "type": "Feature", "properties": { "name": "二泉湖畔咖啡", "time_from": "2021-05-09T12:00:00+08:00", "estimated": true, "investigating": true }, "geometry": { "type": "Point", "coordinates": [120.98553299903868, 24.675487935842042] } }, { "type": "Feature", "properties": { "name": "下城老地方酒餐館", "time_from": "2021-05-09T12:00:00+08:00", "estimated": true, "investigating": true }, "geometry": { "type": "Point", "coordinates": [121.52336418628691, 24.963752328740913] } }, { "type": "Feature", "properties": { "name": "新竹市城隍廟", "time_from": "2021-05-09T14:00:00+08:00", "estimated": true, "investigating": true }, "geometry": { "type": "Point", "coordinates": [120.96603870391844, 24.804431654260682] } }, { "type": "Feature", "properties": { "name": "天母銀座日本料理", "time_from": "2021-05-09T18:00:00+08:00", "estimated": true, "investigating": true, "time_to": "" }, "geometry": { "type": "Point", "coordinates": [121.52809023857117, 25.1077512931344] } }, { "type": "Feature", "properties": { "name": "尚井日式涮涮鍋", "time_from": "2021-05-09T14:00:00+08:00", "time_to": "2021-05-09T15:00:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.48081898689269, 25.066396909936863] } }, { "type": "Feature", "properties": { "name": "人从众牛排館", "time_from": "2021-05-09T18:00:00+08:00", "time_to": "2021-05-09T19:30:00+08:00" }, "geometry": { "type": "Point", "coordinates": [121.4626497030…
facebook.com
疫情升溫的時候,才會特別感覺到平凡的日常,這麼得來不易。除了衛生習慣不能鬆懈,順手下載「台灣社交距離」APP 也能讓接下來的疫情更能被掌握。請大家幫忙推廣,做好防疫基本功、一起保護你我! :pushpin: APP 下載連結:<http://onelink.to/a98ctu> :pushpin: 如果你想協助張貼這份文宣,歡迎自行下載 pdf 印出: <https://bit.ly/33C0Bzh> -...
![]()
蘋果新聞網
【疫情大爆炸】「臺灣社交距離App」上架!鼓勵全民下載 不用個資、若確診獎勵5千元 | 蘋果新聞網 | 蘋果日報
中央流行疫情指揮中心今(14)日表示,為優化疫情調查效率及發掘可能風險個案,衛生福利部疾病管制署與行政院資安處、台灣人工智慧實驗室(Taiwan AI Labs)合作開發「臺灣社交距離App」,利用手持裝置的藍牙訊號強度,偵測使用者間接觸的距離與時間,以科技輔助記錄其過去14...
![]()
Log into Facebook to start sharing and connecting with your friends, family, and people you know.
Log into Facebook to start sharing and connecting with your friends, family, and people you know.
covid19.mutix.co
以明確告知、僅存28天、禁止目的外利用、配合疫調、安全維護及資安防護為原則
![]()
g0v.hackmd.io
![]()
note.mowd.tw
台灣新冠肺炎病例關係
m.facebook.com
■■ 緊急企劃 ■■ 巴哈姆特號召大家安裝《臺灣社交距離》app ,保護自己和家人,還能抽大獎 ! ■■ 活動辦法 ■■ 1. 安裝《臺灣社交距離》app並開啟「接觸通知功能」 2. 手機「桌面截圖」(需含臺灣社交距離app) 3. 在本貼文下方留言 #臺灣社交距離app #保護你和我 並附上截圖 4. 5/23(日) 24:00 截止,5/25(二) 公佈得獎名單 5. PS5...
![]()
Cool3c
臺灣社交距離 app 並未要求隱私項目,那它的運作原理、防疫效益又是如何 - Cool3c
Chevelle.fu發佈臺灣社交距離 app 並未要求隱私項目,那它的運作原理、防疫效益又是如何,留言15篇於2021-05-14 22:00:隨著這一周以來台灣武漢肺炎疫情忽然增加多起無法追蹤感染源的案例,不免為一年以來未有明顯本體案例的台灣造成人心惶惶,雖然衛福部亡羊補牢的在 5 月初正式推出...
![]()
meet.jit.si
Join a WebRTC video conference powered by the Jitsi Videobridge
cdc.gov.tw
![]()
Airtable
Airtable | Everyone's app platform
Airtable is a low-code platform for building collaborative apps. Customize your workflow, collaborate, and achieve ambitious outcomes. Get started for free.
![]()
stream-lab.net
Stream Lab知惠科技長期鑽研於大數據及人工智慧技術,我們用我們深耕智慧機器人的所有技術,快速打造了一個可以提供給台灣店家與顧客快速填妥實聯登記的方式,並致力於資訊擷取、文字探勘、深度學習、非結構性資訊整合與海量資料解析等加值服務技術研發。
HackMD
COVID-19 疫情資訊野生整合平台 by g0vers - HackMD
本平台為 g0v 貢獻者彙整而成,非政府官方所設,所有內容僅供參考。轉傳資訊前,請注意資訊來源,勿協助傳遞不實資訊。
硬是要學 SOFT4FUN
商家公司看過來!不用寫程式也能建立自己的 COVID-19 防疫實聯制調查表單 | 硬是要學 SOFT4FUN
國內疫情又開始升溫,為了減少來源不明的社區感染,衛福部鼓勵店家實施「實聯制」,只要是開放性場域都建議實施。一般商家通常沒有能力建構自己的系統,不過現在已經有熱心的單位建立一套系統,讓商家都可以免費建置自己的實聯制表單,只需要一個 Google 帳號就可以,強烈建議商家導入使用!
![]()
旅遊
協助建構防疫「實聯制」 知惠科技無償提供店家與民眾登記系統 | 聯合新聞網:最懂你的新聞網站
新冠肺炎(COVID-19)疫情已經進入社區感染階段,疫情警戒也調升至2級,因應疫情發展,各大業者也陸續宣布進入相關場所,除了將落實防疫政策外,且全面實施「實聯制」,首當其衝的非餐飲業者莫屬,必須在最