I hereby claim:
- I am nyilmaz on github.
- I am nyilmaz (https://keybase.io/nyilmaz) on keybase.
- I have a public key ASAoRDUuoFYFbtti_qpowOXkI9p4L2Hvgz_yfyg4z_iVuwo
To claim this, I am signing this object:
| window._data = [ | |
| { | |
| "store": "Atasehir", | |
| "quotainfo" :[ | |
| { | |
| "timeslot": "09:00 - 10:00", | |
| "capacity": 10, | |
| "filled": 10 | |
| }, | |
| { |
I hereby claim:
To claim this, I am signing this object:
| CREATE TABLE store ( | |
| id INTEGER NOT NULL AUTO_INCREMENT, | |
| company_id INTEGER NOT NULL, | |
| created_at DATETIME NOT NULL, | |
| external_id INTEGER NOT NULL, | |
| invoice_method VARCHAR(255) NOT NULL, | |
| last_updated_at DATETIME NOT NULL, | |
| NAME VARCHAR(255) NOT NULL, | |
| PRIMARY KEY (id) | |
| ); |
| 17:00:57.821 [qtp1883584519-58] WARN c.m.c.resources.ConversationResource - Conversations-->getInboxConversations(1,7800731) completed in 2736 msec. | |
| 17:01:05.648 [qtp1883584519-39] ERROR c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(6,5085487) completed in 12121 msec. | |
| 17:01:05.648 [qtp1883584519-20] ERROR c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(6,5085487) completed in 5954 msec. | |
| 17:01:05.648 [qtp1883584519-22] ERROR c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(6,5085487) completed in 10544 msec. | |
| 17:01:05.649 [qtp1883584519-38] ERROR c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(6,5085487) completed in 14334 msec. | |
| 17:01:10.537 [qtp1883584519-28] ERROR c.m.c.resources.ConversationResource - Conversations-->getInboxConversations(2,7408100) completed in 5461 msec. | |
| 17:01:12.090 [qtp1883584519-15] INFO c.m.c.resources.ConversationResource - Conversations-->getInboxConversations(6, |
| 17:00:21.483 [qtp55821173-45] INFO match.plug.cache.Cache - Connected to memcached | |
| 17:00:31.478 [qtp55821173-30] INFO c.m.c.resources.ConversationResource - Conversations-->getInboxConversations(1,8115320) completed in 1172 msec. | |
| 17:00:36.076 [qtp55821173-38] INFO c.m.c.resources.ConversationResource - Conversations-->getConversationMessages(1,6750197,2045448157) completed in 1987 msec. | |
| 17:00:42.610 [qtp55821173-36] INFO c.m.c.resources.ConversationResource - Conversations-->getInboxConversations(1,6116636) completed in 1694 msec. | |
| 17:00:51.724 [qtp55821173-17] ERROR c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(1,2677299) completed in 9099 msec. | |
| 17:00:51.724 [qtp55821173-55] WARN c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(1,2677299) completed in 2321 msec. | |
| 17:01:13.836 [qtp55821173-15] INFO c.m.c.resources.ConversationResource - Conversations-->getOutboxConversations(1,8037901) completed in 1820 msec. | |
| 17:01:46.737 [qtp55821173-24] WARN |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>Mailing</title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| <script src="http://code.highcharts.com/highcharts.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { |
| var jcarouselSkeletonObject = { | |
| default: { | |
| jcarouselSel: '.jcarousel', | |
| jcarouselOptions: {}, | |
| jcarouselPaginationOptions: {}, | |
| jcarouselControlPrevSel: '.jcarousel-control-prev', | |
| jcarouselControlNextSel: '.jcarousel-control-next', | |
| jcarouselPaginationSel: '.jcarousel-pagination', | |
| slideCount: 1 |
| private static String escapeSeleniumXpathString(String toBeEscaped) { | |
| Pattern pattern = Pattern.compile("[^'\"]+|['\"]"); | |
| Matcher matcher = pattern.matcher(toBeEscaped); | |
| final List<String> replaced = Lists.newArrayList(); | |
| while(matcher.find()) { | |
| replaced.add(matcher.group()); | |
| } | |
| return "concat(" + StringUtils.collectionToCommaDelimitedString(FluentIterable.from(replaced).transform(new Function<String, String>() { |
| public static String toUrlFriendlyCS(String str) { | |
| if(str == null) { | |
| return null; | |
| } | |
| str = removePunctuationCharacters(str, " "); // todo, implement through chars array | |
| str = removeDuplicateWhitespaces(str, " "); // todo, implement through chars array | |
| str = str.trim(); | |
| char[] chars = new char[str.length()]; |
| if(processEnum.equals(ProcessEnum.CC)){ | |
| price = rs.getDouble("price"); | |
| Bname = rs.getString("Bname"); | |
| java.sql.Date invoiceDate = rs.getDate("invoicedate"); | |
| if (null == invoiceDate) { | |
| log.error("\r\n\r\nERROR! InvoiceDate is null for orderid=" + rs.getLong("orderid")); | |
| } | |
| bean.setDATE(DATE_FORMAT.format(invoiceDate)); | |
| if (forIstanbul != null && forIstanbul) { | |
| dataReference = period.getAccount() + (dataRefoffset++); |