This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * !!!!!!! this css is not maintenance !!!!!!!! | |
| * !!! the maintenanceing css are -> https://github.com/HaiTo/usefull_facebook_at_work !!! | |
| */ | |
| #globalContainer { | |
| width: calc( 100% - 300px) !important; | |
| min-width: 1014px; | |
| } | |
| #contentArea { | |
| width: calc( 100% - 40px ) !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| homedir "github.com/mitchellh/go-homedir" | |
| "os" | |
| "time" | |
| ) | |
| func main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(d){function l(){(function($){ | |
| var i, t, a, tw, img_src, track_range; | |
| var s = function(i){ | |
| var e = document.getElementById(i).innerHTML; | |
| return e | |
| .replace(/&/g, "%26") | |
| .replace(/</g, "%3c") | |
| .replace(/>/g, "%3e"); | |
| }; | |
| t = s("currently-playing-title"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data Queue a = DeQue [a] [a] deriving (Show) | |
| head' :: Queue a -> a | |
| head' (DeQue (x:_) _) = x | |
| checkf :: [a] -> [a] -> Queue a | |
| checkf [] r = DeQue (reverse r) [] | |
| checkf l r = DeQue l r | |
| tail' :: Queue a -> Queue a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FollowCommand | |
| def initialize(user, params) | |
| @user = user | |
| @params = params | |
| end | |
| using UserCommand::Follow | |
| def execute! | |
| user = User.find(@params[:id]) | |
| User.transaction do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Object | |
| def 借方 | |
| :dr | |
| end | |
| alias 左 借方 | |
| def 貸方 | |
| :cr | |
| end | |
| alias 右 貸方 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>osyare</title> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/aws-sdk/2.194.0/aws-sdk.min.js"></script> | |
| <script | |
| src="http://code.jquery.com/jquery-3.3.1.slim.min.js" | |
| integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" | |
| crossorigin="anonymous"></script> | |
| <script type="module"> |
OlderNewer