Skip to content

Instantly share code, notes, and snippets.

View dreamerhyde's full-sized avatar

Albert Liu dreamerhyde

  • Taiwan Bigdata Inc.
View GitHub Profile
jQuery(document).ready(function() {
/**
* Initialize background images
* backgrounds: array[]
* backgrounds[0] would appear first.
* All background images would set in the Nav bar on the bottom.
*/
var backgrounds = [
"backgrounds/room1.jpg",
"backgrounds/room2.jpg",
<?php
date_default_timezone_set('Europe/London'); // Set this to your local timezone - http://www.php.net/manual/en/timezones.php
/**
* The root directory where the repos live.
*
* @var string
*/
$root_dir = '/your/root/dir/';
" twilight256 color scheme file
" Maintainer: Neal Milstein - neal dot milstein at gmail dot com
" Last Change: 2011 Feb 1
"
" This theme copies the colors from the TextMate theme Twilight.
"
" The theme is designed to be used on a black background. I only tested it
" using a 256-color terminal; I do not think it will work on much else (gvim,
" 8-color terminal, etc.).
"
#!/bin/bash
# update libs
sudo apt-get update
sudo apt-get --assume-yes --ignore-missing --reinstall install vim bash-completion
# setting
sudo echo "
export LS_OPTIONS='--color=auto'
eval \`dircolors\`

台灣大數據誠徵 Android / IoT 工程師

一、職缺說明

職稱:

  • Android 工程師

工作內容:

// 將您的設定放入此檔案中以覆寫預設值
{
"sublimeTextKeymap.promptV3Features": true,
"editor.tabSize": 2,
"files.associations": {
"*.vue": "vue"
},
"eslint.autoFixOnSave": true,
"eslint.options": {
"extensions": [
@dreamerhyde
dreamerhyde / media-query.css
Created January 7, 2018 08:19 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@dreamerhyde
dreamerhyde / media-queries.scss
Created January 7, 2018 08:21 — forked from chrisjlee/media-queries.scss
All Media Queries breakpoints
@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:480px) { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }
@dreamerhyde
dreamerhyde / settings.json
Last active July 21, 2018 11:40
VS Code Settings
{
"editor.tabSize": 2,
"html.format.indentInnerHtml": true,
"files.associations": {
"*.vue": "vue"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true