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>User Info</title></head> | |
<body> | |
<div id="#user" class="user"> | |
<div class="name"> | |
<label>User Name</label> | |
<input type="text" data-bind="value: name"> | |
</div> |
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: cb_stat_insert_trigger_function() | |
-- DROP FUNCTION cb_stat_insert_trigger_function(); | |
CREATE OR REPLACE FUNCTION cb_stat_insert_trigger_function() | |
RETURNS trigger AS | |
$BODY$ | |
DECLARE | |
dateName text; |
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" | |
var arr []string | |
func main(){ | |
// array | |
arr = make([]string,0) | |
force("asd", 3, "", func(thisString string){ | |
/// array += thisString |
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
<?php | |
// ... some code here | |
public function editAction() { | |
$auth = new AuthenticationService(); | |
if (!$auth->hasIdentity()) { | |
$this->redirect()->toUrl('/login'); | |
} |
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
_log_pskb(date_created,link_id,logname,log) | |
account(id,uid,sum) | |
account_attach(account_id,file_id,name,orig_name) | |
account_transaction(user_id,yd) | |
activate_service(code,email,data) | |
admin_log_users(user_id,log_id,last_comment_view) | |
annoy(ip,last_req) | |
articles(title,short,msgtext,sign,logo,link) | |
articles_comments(from_id,parent_id,from_ip,created_time,article_id,msgtext,youtube_link) | |
articles_comments_files(comment_id,file_id,small,inline,temp) |
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
-- show running queries (pre 9.2) | |
SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(clock_timestamp(), query_start), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |