Skip to content

Instantly share code, notes, and snippets.

View jiunjiun69's full-sized avatar
🈹
無量加班

LinHungChun jiunjiun69

🈹
無量加班
View GitHub Profile
@imba-tjd
imba-tjd / .Cloud.md
Last active July 23, 2024 07:11
☁️ 一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

@wotupset
wotupset / Heroku教學01
Last active April 19, 2023 04:14
Heroku Command Line Interface (CLI) 使用筆記
官網下載
https://devcenter.heroku.com/articles/heroku-cli
安裝heroku-windows-amd64.exe
安裝完Heroku 會安裝Git
預設資料夾是
C:\Program Files\Heroku
C:\Program Files\Git
@bartholomej
bartholomej / css-media-queries-cheat-sheet.css
Last active July 15, 2024 23:48
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@rponte
rponte / calculate_more_power.sql
Created January 5, 2012 18:52
calculating tables size in Oracle
COLUMN TABLE_NAME FORMAT A32
COLUMN OBJECT_NAME FORMAT A32
COLUMN OWNER FORMAT A10
SELECT
owner, table_name, TRUNC(sum(bytes)/1024/1024) Meg
FROM
(SELECT segment_name table_name, owner, bytes
FROM dba_segments
WHERE segment_type = 'TABLE'