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 profile::postgres { | |
| class { 'postgresql::server': | |
| ip_mask_deny_postgres_user => '0.0.0.0/32', | |
| ip_mask_allow_all_users => '192.168.3.0/24', | |
| listen_addresses => '*', | |
| } | |
| $databases = hiera_hash('postgresql_databases', {}) | |
| $roles = hiera_hash('postgresl_roles', {}) | |
| $database_grants = hiera_hash('postgresql_database_grants', {}) |
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
| SELECT | |
| 'actualizator' AS comment_type, | |
| wo.ID AS workorder_id, | |
| comments.ID AS id, | |
| comments.Comments AS comment, | |
| comments.Date AS DATE, | |
| author.ID AS author_id, | |
| author.FullName AS author_fullname | |
| FROM WorkOrderActualizatorComments AS comments | |
| INNER JOIN WorkOrderActualizator AS actualizator ON comments.WorkOrderActualizatorId = actualizator.Id |
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
| Model (call 'Model.connection' to establish a connection) | |
| unknown OID 24: failed to recognize type of 'typinput'. It will be treated as String. | |
| unknown OID 194: failed to recognize type of 'typdefaultbin'. It will be treated as String. | |
| unknown OID 1034: failed to recognize type of 'typacl'. It will be treated as String. | |
| Model(typname: string, typnamespace: integer, typowner: integer, typlen: integer, typbyval: boolean, typtype: string, typcategory: string, typispreferred: boolean, typisdefined: boolean, typdelim: string, typrelid: integer, typelem: integer, typarray: integer, typinput: , typoutput: , typreceive: , typsend: , typmodin: , typmodout: , typanalyze: , typalign: string, typstorage: string, typnotnull: boolean, typbasetype: integer, typtypmod: integer, typndims: integer, typcollation: integer, typdefaultbin: , typdefault: text, typacl: ) | |
| initial state: | |
| reserved: {#<Thread:0x007f81f18cb7c8 run>=>70098044115400} | |
| non_leaker: |
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
| @Onespend.module 'Behaviors', (Behaviors, App, Backbone, Marionette, $, _) -> | |
| Behaviors.Dropdown = Marionette.Behavior.extend | |
| initialize: -> | |
| @dropdownShowed = false | |
| ui: | |
| 'dropdown': '.js-dropdown' | |
| 'header': '.js-header' |
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
| define ['backbone', 'marionette'], (Backbone, Marionette) -> | |
| App = new Marionette.Application | |
| App.on 'start', -> | |
| App.vent.on 'auth:login', -> | |
| console.log "Login" | |
| App.vent.on 'auth:logout', -> | |
| console.log "logout" |
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
| define ['backbone', 'marionette', 'config/backbone/auth'], (Backbone, Marionette, Auth) -> | |
| App = new Marionette.Application | |
| App.auth = new Auth | |
| App.auth.login | |
| email: '[email protected]' | |
| password: 'password' | |
| App.auth.on 'logged_in', -> |
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
| #!/usr/bin/env python3 | |
| import gi | |
| import os | |
| from datetime import datetime | |
| gi.require_version('Gst', '1.0') | |
| from gi.repository import GObject, Gst, Gtk | |
| from gi.repository import GdkX11, GstVideo | |
| from gi.repository.Gtk import Window, VBox, HBox, DrawingArea, ToggleButton, Button, Statusbar |
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
| #!/usr/bin/env python3 | |
| import gi | |
| import os | |
| from datetime import datetime | |
| gi.require_version('Gst', '1.0') | |
| from gi.repository import GObject, Gst, Gtk | |
| from gi.repository import GdkX11, GstVideo | |
| from gi.repository.Gtk import Window, VBox, HBox, DrawingArea, ToggleButton, Button, Statusbar |
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
| #!/usr/bin/env python3 | |
| import gi | |
| import os | |
| from datetime import datetime | |
| gi.require_version('Gst', '1.0') | |
| from gi.repository import GObject, Gst, Gtk | |
| from gi.repository import GdkX11, GstVideo | |
| from gi.repository.Gtk import Window, VBox, HBox, DrawingArea, ToggleButton, Button, Statusbar |
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
| import sys;g=open(sys.argv[1]).next;n=range | |
| for o in n(int(g())): | |
| r,p,c=('',0,g()[:-1]) | |
| for w in g()[:-1]: | |
| if w==" ":r+=w | |
| else:r+=chr(n(97,123)[ord(w)-97-int((c+c[::-1])[p%len(c*2)])]);p+=1 | |
| print r |