鏡週刊 Mirror Media
【就地合法找議長1】非法工廠喬納管 議長服務處囂張收錢掛保證
本刊接獲投訴,台南市議長郭信良縱容服務處主任黃龍生,包攬非法佔用農地的工廠,納管為「特定登記工廠」,未來有可能就地合法,農地變工業用地,暴漲數10倍;知情人士質疑,中央已表態要嚴格把關,黃憑什麼敢打包票?除非他利用議長施壓,否則根本就是詐財!
![]()
<@U8TERFWFR> 由於開發上遇到一點問題,待會想詢問一下 API 的設計: - `PUT /factories/{id}/{attribute}` 能否改成 `PUT /factories/{id}` with body: ``` { attr1: value1, attr2: value2, } ``` 這樣 drf 好像就可以幫忙做 validation? - 是否需要提供 `GET /factories/{id}` 這個 API ,因為 update 如果出錯,是不是需要重新 query 一次?
gitpod.io
Gitpod - Online IDE for GitHub
One-click ready-to-code development environments for GitHub.
g0v.hackmd.io
![]()
Zoom Video
Join our Cloud HD Video Meeting now
Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars across mobile, desktop, and room systems. Zoom Rooms is the original software-based conference room solution used around the world in board, conference, huddle, and training rooms, as well as executive offices and classrooms. Founded in 2011, Zoom helps businesses and organizations bring their teams together in a frictionless environment to get more done. Zoom is a publicly traded company headquartered in San Jose, CA.
![]()
The Django Book
Django Book Home - Python Django Tutorials
The Django Book - comprehensive Python Django Tutorials, easy to understand Django documentation and more!
GitHub
Support embedding geolocation data by Yukaii · Pull Request #1289 · hackmdio/codimd
Screenshots Spec ```geo longitude,latitude,zoomFactor ``` or ```geo Address ``` Notes We can provide more customization through YAML-like config in the future: location: lng: 123.123123 lat:...
g0v.hackmd.io
![]()
<@U038DCDRC> <http://try.middle2.com|try.middle2.com> 加了 ssh pub key 之後遇到 Permission denied (publickey)
cna.com.tw
台中大雅區工廠大火 兩名消防員殉職【更新】 | 社會 | 重點新聞 | 中央社 CNA
台中市大雅區一處工廠今天凌晨發生火警,火勢一發不可收拾,消防局獲報到場搶救,凌晨3時多發現兩名進入火場救災的消防人員失聯,消防局已成立救援小組持續搜救中。
![]()
GitHub
[backend] GeoDjango setting by stegben · Pull Request #16 · yoyo930021/Disfactory
setting up README add database setting with postgis modify docker setting decide SRID
GitHub
[backend] GeoDjango setting by stegben · Pull Request #16 · yoyo930021/Disfactory
設定 PostGIS 和 GeoDjango,順便加個 model field 的範例和 migration setting up README add database setting with postgis modify docker setting decide SRID
facebook.com
地球公民基金會, 高雄市. 127K likes. 地球公民基金會不接受政府、財團補助,是獨立自主的環保團體。透過調查研究、揭露台灣環境問題,提出解決方案。連結各種社會力,改變法令政策,以各種行動帶來正面的改變!
try 我更新成 buster 了,可以再試試看
g0v.hackmd.io
![]()
edwilliams.org
Javascript Great Circle Calculator
Javascript Great Circle Calculator using ellipsoidal earth models
關於 PostGIS 的 table schema ,如果租屋只是點位的話,建議 table 可以直接建成 CREATE TABLE house ( id SERIAL, geom GEOMETRY(POINT, 3857), data JSON ); CREATE INDEX house_geom ON house USING GIST(geom); 3857 是以公尺為單位的全球平面座標系,速度會比經緯度快很多,因為經緯度要算距離範圍因為是球面會需要很多 sin, cos 的計算,但是變成以公尺為單位的球面座標就只要平面 建索引可以讓查詢速度變快很多 然後 PostgreSQL 的 JSON type 真的超好用,可以把 PostgreSQL 當作 NoSQL 用 XD