This file contains 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 elixir | |
defmodule Committer do | |
defstruct [:name, :email] | |
def list(repo) do | |
repo | |
|> from_repo | |
|> Stream.unfold(fn str -> | |
case String.split(str, "\n", parts: 2, trim: true) do |
This file contains 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
INSERT INTO lgcp8_categories (id, title, alias, parent_id, published, access, description, language, created_user_id, modified_user_id, metadesc, metakey, metadata, params, extension) SELECT id+1000, name, alias, CASE WHEN parent = 0 THEN 1 ELSE parent+1000 END, published, access, description, language, 996, 0, name, name, "{}", "{\"category_layout\":\"\",\"image\":\"\"}", "com_content" FROM lgcp8_k2_categories |
This file contains 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
--- srclib/stdio.in.h.orig 2011-08-07 16:42:06.000000000 +0300 | |
+++ srclib/stdio.in.h 2013-01-10 15:53:03.000000000 +0200 | |
@@ -695,7 +695,9 @@ | |
/* It is very rare that the developer ever has full control of stdin, | |
so any use of gets warrants an unconditional warning. Assume it is | |
always declared, since it is required by C89. */ | |
-_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); | |
+#if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16) | |
+ _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); | |
+#endif |
This file contains 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
defmodule Config do | |
@moduledoc """ | |
This module handles fetching values from the config with some additional niceties | |
""" | |
@default_app_name :some_app | |
@default_endpoint SomeApp.Endpoint | |
@doc """ | |
Fetches key from the default endpoint config, and prepare it with _get/3. |
This file contains 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
module Best.SomeA do | |
def some_func, do: IO.puts("Hello World!" | |
end |
This file contains 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
Concurrent | |
.future(thread_pool) do | |
update_spin(spin, title: "Resizing image #{image.id}") | |
service.run(image) | |
end | |
.then do |r| | |
update_spin(spin, title: "Resized image #{r.id}") | |
r | |
end | |
.rescue { |_| nil } |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Autocomplete address With Semantic UI</title> | |
<link rel="stylesheet" href="semantic/dist/semantic.css"> | |
</head> | |
<body> | |
This file contains 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 lang="en"> | |
<head> | |
<title>{{ site.name }}</title> | |
<meta charset="utf-8"> | |
<meta name="format-detection" content="telephone=no" /> | |
<link rel="icon" href="{{ 'favicon.ico' | theme_image_url }}"> | |
<link rel="shortcut icon" href="{{ 'favicon.ico' | theme_image_url }}"> | |
{{ 'style.css' | stylesheet_tag }} | |
{{ 'jquery.js' | javascript_tag }} |
This file contains 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
[Unit] | |
Description=MRCR Sites Puma Server | |
[email protected] mongod.service | |
[email protected] mongod.service | |
[email protected] mongod.service | |
[Service] | |
Type=simple | |
User=merkulov | |
PIDFile=/srv/apps/sites_mrcr_ru/shared/tmp/pids/puma.pid |
This file contains 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 {Injectable, OpaqueToken, Inject} from '@angular/core'; | |
import * as PhoenixBase from 'phoenix/web/static/js/phoenix.js'; | |
import {Channel, Socket} from 'phoenix/web/static/js/phoenix.js'; | |
import {Observable} from 'rxjs/Observable'; | |
import {isFunction} from 'lodash'; | |
import {Observer} from 'rxjs/Observer'; | |
import {LoggerService} from './'; | |
export declare class Timer { | |
callback: any; |