Skip to content

Commit 471f9d5

Browse files
committed
fix
1 parent 0d33316 commit 471f9d5

23 files changed

+164
-54
lines changed

_includes/footer.html

+8-7
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
{% endif %}
4343
{% if site.author.email and site.footer-links-active.email %}
4444
<li>
45-
<a href="mailto:{{ site.author.email }}" title="Email me">
45+
<a href="mailto:{{ site.author.email }}" title="Email us">
4646
<span class="fa-stack fa-lg">
4747
<i class="fa fa-circle fa-stack-2x"></i>
4848
<i class="fa fa-envelope fa-stack-1x fa-inverse"></i>
@@ -72,12 +72,13 @@
7272
{% endif %}
7373
{% if site.footer-links-active.rss %}
7474
<li>
75-
<a href="{{ site.feedburner }}" title="RSS">
76-
<span class="fa-stack fa-lg">
77-
<i class="fa fa-circle fa-stack-2x"></i>
78-
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
79-
</span>
80-
</a>
75+
<a href="{{ '/feed.xml' | prepend: site.baseurl }}" title="RSS">
76+
<span class="fa-stack fa-lg" aria-hidden="true">
77+
<i class="fa fa-circle fa-stack-2x"></i>
78+
<i class="fa fa-rss fa-stack-1x fa-inverse"></i>
79+
</span>
80+
<span class="sr-only">RSS</span>
81+
</a>
8182
</li>
8283
{% endif %}
8384
</ul>

_includes/head.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
{% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %}
1111
<title>
1212
{% if page.title == "Home" %}
13-
{{ site.title }} - {{ site.description }}
13+
{{ site.title }} | {{ site.subtitle}} - {{ site.description }}
1414
{% else %}
15-
{{ page.title }} - {{ site.title }}
15+
{{ page.title }} - {{ site.title }} | {{ site.subtitle }}
1616
{% endif %}
1717
</title>
18-
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} - {{ site.description }}" href="http://feeds.feedburner.com/AlliedTesting" />
18+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} | {{ site.subtitle }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
1919
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
2020
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" integrity="sha384-XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+" crossorigin="anonymous">
2121
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">

_includes/nav.html

+29-18
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
<nav class="navbar navbar-default navbar-fixed-top navbar-custom">
22
<div class="container-fluid">
3-
<!-- <div class="navbar-header">
4-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#main-navbar" area-expanded="false">
5-
<span class="sr-only">Toggle navigation</span>
6-
<span class="icon-bar"></span>
7-
<span class="icon-bar"></span>
8-
<span class="icon-bar"></span>
9-
</button>
10-
<a class="navbar-brand" href="{{ site.url }}">{{ site.title }}</a>
11-
</div> -->
123
<div class="navbar-header">
134
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#main-navbar" area-expanded="false">
145
<span class="sr-only">Toggle navigation</span>
@@ -17,9 +8,11 @@
178
<span class="icon-bar"></span>
189
</button>
1910
{% if site.title-img and site.subtitle-img %}
20-
<a class="navbar-brand navbar-brand-logo" href="{{ site.url }}">
11+
<a class="navbar-brand navbar-brand-logo" href="{{ site.subtitle-url }}">
12+
<img style=" float:left; display:inline" src="{{ site.baseurl }}/img/{{ site.subtitle-img }}" >
13+
</a>
14+
<a class="navbar-brand navbar-brand-logo" href="{{ site.title-url }}">
2115
<img style=" float:left; display:inline" src="{{ site.baseurl }}/img/{{ site.title-img }}" hspace=5px/>
22-
<img style=" float:left; display:inline" src="{{ site.baseurl }}/img/{{ site.subtitle-img }}" hspace=5px/>
2316
</a>
2417
{% elsif site.title-img %}
2518
<a class="navbar-brand navbar-brand-logo" href="{{ site.url }}"><img src="{{ site.baseurl }}/img/{{ site.title-img }}"/></a>
@@ -28,16 +21,34 @@
2821
{% endif %}
2922
</div>
3023

31-
<div class="collapse navbar-collapse" id="main-navbar">
24+
<div class="navbar-home-container" >
3225
<ul class="nav navbar-nav navbar-right">
3326
<li class="sidebar-nav-item{% if page.url == site.url %} active{% endif %}">
34-
<a href="{{ site.pgmexurl }}">PgMex Home{% if page.url == site.url %} <span class="sr-only">(current)</span>{% endif %}</a>
27+
<a href="{{ site.url }}" style=" font-size:18px; font-weight:900; ">Home{% if page.url == site.url %} <span class="sr-only">(current)</span>{% endif %}</a>
3528
</li>
29+
</div>
3630

37-
<li class="sidebar-nav-item{% if page.url == site.url %} active{% endif %}">
38-
<a href="{{ site.perftesturl }}">Performance Tests{% if page.url == site.url %} <span class="sr-only">(current)</span>{% endif %}</a>
39-
</li>
31+
<div class="collapse navbar-collapse" id="main-navbar" >
32+
<ul class="nav navbar-nav navbar-right">
4033

34+
{% for link in site.navbar-links %}
35+
{% if link[1].first %}
36+
<li class="navlinks-container">
37+
<a class="navlinks-parent" href="#!">{{ link[0] }}</a>
38+
<div class="navlinks-children">
39+
{% for childlink in link[1] %}
40+
{% for linkparts in childlink %}
41+
{% include navbarlink.html link=linkparts %}
42+
{% endfor %}
43+
{% endfor %}
44+
</div>
45+
</li>
46+
{% else %}
47+
<li>
48+
{% include navbarlink.html link=link %}
49+
</li>
50+
{% endif %}
51+
{% endfor %}
4152
{% comment %}
4253
The code below dynamically generates a sidebar nav of pages with
4354
`layout: page` in the front-matter. See readme for usage.
@@ -56,11 +67,11 @@
5667
</ul>
5768
</div>
5869

59-
{% if site.gravatar and (layout.show-avatar or page.show-avatar) %}
70+
{% if site.avatar and (layout.show-avatar or page.show-avatar) %}
6071
<div class="avatar-container">
6172
<div class="avatar-img-border">
6273
<a href="{{ site.url }}">
63-
<img class="avatar-img" src="http://www.gravatar.com/avatar/{{ site.gravatar.hash }}?s={{ site.gravatar.size }}" />
74+
<img class="avatar-img" src="{{ site.baseurl }}/img/{{ site.avatar }}" />
6475
</a>
6576
</div>
6677
</div>

_includes/navbarlink.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{% capture before %}{{ include.link[1] | split: "://" | first }}{% endcapture %}
2+
{% capture after %}{{ include.link[1] | split: "://" | last }}{% endcapture %}
3+
{% assign internal = true %}
4+
{% if before != after %}
5+
{% if before == "http" or before == "https" %}
6+
{% assign internal = false %}
7+
{% endif %}
8+
{% endif %}
9+
10+
{% if internal %}
11+
{% capture linkurl %}{{ site.baseurl }}/{{ include.link[1] }}{% endcapture %}
12+
{% else %}
13+
{% capture linkurl %}{{ include.link[1] }}{% endcapture %}
14+
{% endif %}
15+
16+
<a href="{{ linkurl }}">{{ include.link[0] }}</a>

_posts/2017/2017-06-06-performance-comparison-of-postgresql-connectors-in-matlab-part-I.md _posts/2017/2017-06-29-performance-comparison-of-postgresql-connectors-in-matlab-part-I.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Performance comparison of PostgreSQL connectors in Matlab, Part I: inserting data"
4-
date: 2017-06-06 19:03:16 +0300
4+
date: 2017-06-29 10:48:23 +0300
55
authors: Peter Gagarinov & Ilya Rublev
66
---
77

@@ -59,10 +59,10 @@ That means that all the queries are executed one after another without waiting f
5959
be revealed below). But that does not explain why **fastinsert** is in the most cases slower than **datainsert**.
6060

6161
The reason is rather simple. As shows an analysis of source code for these functions **fastinsert** prepares data within Matlab,
62-
creating a Java object of **org.postgresql.jdbc.PgPreparedStatement** type and filling it tuple by tuple, field by field by calling the respective
62+
creating a Java object of <span class="long-text" >**org.postgresql.jdbc.PgPreparedStatement**</span> type and filling it tuple by tuple, field by field by calling the respective
6363
setters. **datainsert** also creates an object of the same type corresponding to a special prepared statement, but, in contrast to **fastinsert**,
6464
filling of this object with data is performed in Java instead of Matlab, using a special "writer" object of
65-
**com.mathworks.toolbox.database.writeTheData** type with the following interface:
65+
<span class="long-text" >**com.mathworks.toolbox.database.writeTheData**</span> type with the following interface:
6666

6767
```java
6868
public class com.mathworks.toolbox.database.writeTheData {

about.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ We have excellent delivery capabilities
5050
We have an exemplary track record of delivering on time, within budget and achieving all other key performance criteria. We have always been able to staff a project quickly and with high quality teams, even for projects.
5151

5252
## Services
53-
<table cellspacing="1" cellpadding="4" border="0" style="vertical-align: top; background-color: transparent;"><tbody><tr ><td valign="top" >
53+
<table cellspacing="1" cellpadding="4" border="0" style="vertical-align: top; background-color: transparent; font-size: 16px; "><tbody><tr ><td valign="top" >
5454
<p><span class="alliedservices">►</span> <span class="alliedservices"><strong> </strong><span><strong>Core QA and Testing </strong></span></span></p>
55-
<hr class="alliedservices"/><ul><li>Intelligent manual testing (functional and regression)</li>
55+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>Intelligent manual testing (functional and regression)</li>
5656
<li>Trading functionality (valid/invalid orders, order status)</li>
5757
<li>Market data (data feeds, ticker plants, charts, etc.)</li>
5858
<li>Balances, positions, transactions</li>
@@ -67,7 +67,7 @@ We have an exemplary track record of delivering on time, within budget and achie
6767
</ul></td>
6868
<td valign="top">
6969
<p><span class="alliedservices">► <strong>Specialized QA and Testing </strong></span></p>
70-
<hr class="alliedservices"/><ul><li>SOR and algorithmic-trading systems testing</li>
70+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>SOR and algorithmic-trading systems testing</li>
7171
<li>Behavioural testing</li>
7272
<li>Three levels of market simulation</li>
7373
<li>Back testing of trading strategies</li>
@@ -81,7 +81,7 @@ We have an exemplary track record of delivering on time, within budget and achie
8181
</ul></td>
8282
</tr><tr><td valign="top">
8383
<p><span class="alliedservices">► <strong>Mobile Application Testing Services </strong></span></p>
84-
<hr class="alliedservices"/><ul><li>Testing services</li>
84+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>Testing services</li>
8585
<li>Testing software functionality</li>
8686
<li>Testing integration with internal and external systems</li>
8787
<li>Testing application deployment</li>
@@ -91,7 +91,7 @@ We have an exemplary track record of delivering on time, within budget and achie
9191
</ul></td>
9292
<td valign="top">
9393
<p><span class="alliedservices">► <strong>Financial Engineering</strong></span></p>
94-
<hr class="alliedservices"/><ul><li>In-depth financial testing</li>
94+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>In-depth financial testing</li>
9595
<li>Trading algorithms and decision-making</li>
9696
<li>Forecasting and descriptive modeling</li>
9797
<li>Trading and performance analytics</li>
@@ -100,15 +100,15 @@ We have an exemplary track record of delivering on time, within budget and achie
100100
</td>
101101
</tr><tr><td valign="top">
102102
<p><span class="alliedservices">► <strong>QA Consulting</strong></span></p>
103-
<hr class="alliedservices"/><ul><li>QA strategy development</li>
103+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>QA strategy development</li>
104104
<li>Automation strategy</li>
105105
<li>QA process audit</li>
106106
<li>Test coverage analysis</li>
107107
<li>Business analysis Support Services</li>
108108
</ul></td>
109109
<td valign="top">
110110
<p><span class="alliedservices">► <strong>Support Services</strong></span></p>
111-
<hr class="alliedservices"/><ul><li>Test environment maintenance and support</li>
111+
<hr class="alliedservices"/><ul style="margin:5px;padding:5px;" ><li>Test environment maintenance and support</li>
112112
<li>Release management</li>
113113
<li>First and second-level support</li>
114114
<li>Operability testing</li>

0 commit comments

Comments
 (0)