Skip to content

Instantly share code, notes, and snippets.

View ngtrian's full-sized avatar
😃
Working from home

Tri Ân ngtrian

😃
Working from home
View GitHub Profile
@ngtrian
ngtrian / rewrite-nginx-server.conf
Created April 17, 2023 06:07 — forked from wimarbueno/rewrite-nginx-server.conf
remove html extension and trailing slash with nginx
server {
listen 80;
server_name test.com *.test.com;
rewrite ^(/.*)\.html(\?.*)?$ $1$2 permanent;
rewrite ^/(.*)/$ /$1 permanent;
root /path/to/project/root;
index index.html;
try_files $uri/index.html $uri.html $uri/ $uri =404;
@ngtrian
ngtrian / index.md
Created October 19, 2018 01:47
index docs.nopviet.com
@ngtrian
ngtrian / embedded-file-viewer.md
Created September 8, 2017 04:28 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@ngtrian
ngtrian / visor-archivos-online.md
Created September 8, 2017 03:54 — forked from izazueta/visor-archivos-online.md
Google Docs Viewer & Office Web Apps Viewer

Google Docs Viewer

Only files under 25 MB can be previewed with the Google Drive viewer.

Google Drive viewer helps you preview over 16 different file types, listed below:

  • Image files (.JPEG, .PNG, .GIF, .TIFF, .BMP)
  • Video files (WebM, .MPEG4, .3GPP, .MOV, .AVI, .MPEGPS, .WMV, .FLV)
  • Text files (.TXT)
  • Markup/Code (.CSS, .HTML, .PHP, .C, .CPP, .H, .HPP, .JS)
  • Microsoft Word (.DOC and .DOCX)
@ngtrian
ngtrian / thiet-lap-co-ban-nopcommerce.md
Last active March 14, 2017 03:09
Thiết lập cơ bản nopCommerce

Thiết lập Store

Mặc định sau khi cài đặt nopCommerce, chỉ có một cửa hàng được tạo, và bạn cần thiết lập như bên dưới

Truy cập ConfigurationStores

Nhấn Edit để thiết lập

@ngtrian
ngtrian / unfollow.js
Created February 15, 2017 02:50 — forked from JamieMason/unfollow.js.md
Unfollow everyone on twitter.com
// 1. Go to https://twitter.com/following.
// 2. Keep scrolling to the bottom repeatedly until all your followers are loaded.
// 3. Run this in your console.
[].slice.call(document.querySelectorAll('.unfollow-text')).forEach(function(button) {
button.click();
});
@ngtrian
ngtrian / gist:dd3d14d0c1c4f1349e1d9fa82e01637a
Created November 26, 2016 06:13 — forked from jonathanmoore/gist:2640302
Get the share counts from various APIs

Share Counts

I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.

If you want to roll up all of these into a single jQuery plugin check out Sharrre

Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.

Twitter

@ngtrian
ngtrian / 1_README.md
Created October 18, 2016 00:07 — forked from Daniel15/1_README.md
Complete Google Drive File Picker example

Google Drive File Picker Example

This is an example of how to use the Google Drive file picker and Google Drive API to retrieve files from Google Drive using pure JavaScript. At the time of writing (14th July 2013), Google have good examples for using these two APIs separately, but no documentation on using them together.

Note that this is just sample code, designed to be concise to demonstrate the API. In a production environment, you should include more error handling.

See a demo at http://stuff.dan.cx/js/filepicker/google/