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 Test.MixProject do | |
use Mix.Project | |
def project do | |
[ | |
app: :test, | |
version: "0.1.0", | |
elixir: "~> 1.15", | |
elixirc_paths: elixirc_paths(Mix.env()), | |
start_permanent: Mix.env() == :prod, |
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
<?php | |
namespace App\Http\Controller\Graph; | |
use Doctrine\Common\Annotations\AnnotationReader; | |
use Doctrine\Common\Annotations\Reader; | |
use Doctrine\Common\Collections\Collection; | |
use Doctrine\ORM\Mapping\ManyToMany; | |
use Doctrine\ORM\Mapping\ManyToOne; |
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 MyApp.Serializer.Fields do | |
defmacro __using__(fields) do | |
quote do | |
@json_group_fields unquote(fields) | |
def get_fields_for_group(group) do | |
group = MapSet.new(group) | |
Enum.reduce(@json_group_fields, [], fn {f, g}, acc -> | |
g = MapSet.new(g) |
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 React, { useEffect } from 'react'; | |
import ForceGraph3D from '3d-force-graph'; | |
import md5 from 'blueimp-md5'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import Close from '@material-ui/icons/Close'; | |
import Input from '@material-ui/core/Input'; | |
import InputAdornment from '@material-ui/core/InputAdornment'; | |
import IconButton from '@material-ui/core/IconButton'; | |
import SelectedTree from './Tree'; |
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
case entities do | |
nil -> | |
text | |
entities -> | |
Enum.filter(entities, fn | |
%{type: "text_link"} -> true | |
_e -> false | |
end) | |
|> Enum.reduce({0, []}, fn %{length: length, offset: offset, url: url}, {prev, acc} -> |
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
function SignCadesBES_Async_File(certListBoxId, dataToSign, onSign, onError) { | |
cadesplugin.async_spawn(function* (arg) { | |
var e = document.getElementById(arg[ 0 ]); | |
var selectedCertID = e.selectedIndex; | |
if (selectedCertID == -1) { | |
alert("Select certificate"); | |
return; | |
} | |
var certificate = global_selectbox_container[ selectedCertID ]; | |
var Signature; |
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
const path = require('path'); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
module.exports = function(env) { | |
const production = process.env.NODE_ENV === 'production'; | |
return { | |
devtool: production ? 'source-maps' : 'eval', | |
entry: [ | |
'./js/app.js', | |
'./css/app.css', | |
'./css/phoenix.css', |
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 Behaviours.Telegram do | |
@moduledoc false | |
@callback sendInfo(accountId :: term, info :: term) :: {:ok} | |
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
{ | |
"proc": { | |
"pid_file": "/var/run/nxs-chat-srv.pid", | |
"queue_worker_term_timeout": 10, | |
"rest_api_term_timeout": 10, | |
"daemonize": true | |
}, | |
"logging": { | |
"level": 31, | |
"path": "/var/log/nxs-chat-srv/nxs-chat-srv.log" |
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 { combineReducers } from 'redux' | |
import { reducer as formReducer } from 'redux-form' | |
import { routerReducer } from 'react-router-redux' | |
import App from './App' | |
import Menu from './Menu' | |
import Login from './Login' | |
import UniList from './UniList' | |
import UniForm from './UniForm' |
NewerOlder