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
| <%= simple_form_for :user, :method => 'get', :url => users_path, :html => {:class => ''} do |f| %> | |
| <div class="form-group form-group-sm col-xs-12 col-sm-4 col-md-4 col-lg-3"> | |
| <%= f.input :username_like, input_html: { name: 'username_like', :value => params[:username_like] }, label: t('fields.user.username'), :required => false %> | |
| <%= f.input :is_active_check, input_html: { name: 'is_active_check' }, label: t('fields.user.is_active'), as: :select, checked_value: true, unchecked_value: false, :required => false, :selected => params[:is_active_check], :include_blank => '' %> | |
| <%= f.input :acl_id_ref_check, collection: Acl.all, input_html: { name: 'acl_id_ref_check' }, as: :select, label_method: :description, label: t('fields.user.acl_id'), value_method: :id, :selected => params[:acl_id_ref_check], :include_blank => '', :required => false %> | |
| <%= f.input :locale, :as => :hidden, :input_html => {:name => 'locale', :value => params[:locale] } %> | |
| <%= f.button :submit, t('search'), class: "btn-suc |
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
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: nginx | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the nginx web server | |
| # Description: starts nginx using start-stop-daemon |
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
| version :thumb, :if => :image? do | |
| process :resize_to_fit => [50, 50] | |
| end | |
| protected | |
| def image?(new_file) | |
| new_file.content_type.include? 'image' | |
| 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
| style.name: Aretes | |
| style.author: Mauro Locatelli | |
| style.date: August 3, 2015 | |
| style.credits: | |
| style.comment: | |
| toolbar: flat | |
| toolbar.pixmap: toolbar.xpm | |
| toolbar.textColor: #c0c0c0 | |
| toolbar.justify: center |
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
| #avoid flicker | |
| double_buffer yes | |
| #own window to run simultanious 2 or more conkys | |
| own_window yes | |
| own_window_transparent no | |
| own_window_type panel | |
| own_window_hints undecorate,sticky,skip_taskbar,skip_pager | |
| #borders |
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
| !Turn Caps Lock into another Control key | |
| keycode 66 = Control_L | |
| clear Lock | |
| add Control = Control_L |
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
| #!/bin/sh | |
| xmodmap ~/.Xmodmap |
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
| Section "ServerLayout" | |
| Identifier "aticonfig Layout" | |
| Screen 0 "aticonfig-Screen[0]-0" 0 0 | |
| Screen "aticonfig-Screen[0]-1" RightOf "aticonfig-Screen[0]-0" | |
| EndSection | |
| Section "Module" | |
| EndSection | |
| Section "ServerFlags" |
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
| function makeRequest(opts) { | |
| return new Promise(function(resolve, reject) { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open(opts.method, opts.url); | |
| xhr.withCredentials = true; | |
| xhr.onload = function() { | |
| if (this.status >= 200 && this.status < 300) { | |
| resolve(xhr.response); | |
| } else { | |
| reject({ |
OlderNewer