description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
(?i)^(?:.+)?(?:facebook|fb).(?:[a-z\.]{2,6})(/pages|/pg|/group[s])?/([^/]+)(?:/|$) | https://www.facebook.com/groups/330664430790820/ | Facebook: parse page name from url | 2018-06-08T09:29:35.000Z |
|
<meta.*(X\-UA\-Compatible).*\/> | <head runat="server">
<meta http-equiv="X-UA-Compatible" content="IE=11" />
<meta http-equiv="X-UA-Compatible" content="IE=231" />
</head>
<h1>Ceci est <u>un test</u></h1>
<table>
<tr valign="center">
<td><h1 style="display:block; font-weight:700; font-size:26;">Niveau H1</h1>
<h2 style="display:block; font-weight:700; font-size:20;">Niveau H2</h2>
<h3>Niveau H3</h3></td>
</tr>
<tr>
<td><h4>Niveau H4</h4><h5>Niveau H5</h5><h6>Niveau H6</h6></td>
</tr>
</table> | search for X-UA-Compatible Metadata tag | 2018-09-24T14:38:12.000Z |
|
\b"{0,1}[A-Z0-9_][A-Z0-9._%+-]*[A-Z0-9_]\@(?![. \-])(([A-Z0-9-]+\.)+[A-Z]{2,8}|\[{0,1}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])\]{0,1})\b | invalid formats
cf+2@3465456rteyaesrgrdsfgsdfg@thefloow.com
@@@
Leading dot in address eg .cf@thefloow.com
Trailing dot in address eg cf+.@thefloow.com
Multiple dots eg cf+..1@thefloow.com
Leading dash in front of domain eg cf@-thefloow.com
invalid top level domain names eg cf@thefloow.web
Multiple dots in the domain portion cf@thefloow..com
plainaddress Missing @ sign and domain
#@%^%#$@#$@#.com Garbage
@domain.com Missing username
Joe Smith <email@domain.com> Encoded html within email is invalid
email.domain.com Missing @
email@domain@domain.com Two @ sign
.email@domain.com Leading dot in address is not allowed
email.@domain.com Trailing dot in address is not allowe
email..email@domain.com Multiple dots
あいうえお@domain.com Unicode char as address
email@domain.com (Joe Smith) Text followed email is not allowed
email@domain Missing top level domain (.com/.net/.org/etc)
email@-domain.com Leading dash in front of domain is invalid
email@domain.web .web is not a valid top level domain
email@111.222.333.44444 Invalid IP format
email@domain..com Multiple dot in the domain portion is invalid
plainaddress
#@%^%#$@#$@#.com
@example.com
Joe Smith <email@example.com>
email.example.com
email@example@example.com
.email@example.com
email.@example.com
email..email@example.com
あいうえお@example.com
email@example.com (Joe Smith)
email@example
email@-example.com
email@example.web
email@111.222.333.44444
email@111.222.333.244
email@01.222.233.244
email@example..com
Abc..123@example.com
“(),:;<>[\]@example.com
just"not"right@example.com
this\ is"really"not\allowed@example.com
valid formats
ip address as domain name eg cf@192.168.0.1
quoted strings eg "cf"@thefloow.com
email@domain.com Valid email
firstname.lastname@domain.com Email contains dot in the address field
email@subdomain.domain.com Email contains dot with subdomain
firstname+lastname@domain.com Plus sign is considered valid character
email@123.123.123.123 Domain is valid IP address
email@[123.123.123.123] Square bracket around IP address is considered valid
"email"@domain.com Quotes around email is considered valid
1234567890@domain.com Digits in address are valid
email@domain-one.com Dash in domain name is valid
_______@domain.com Underscore in the address field is valid
email@domain.name .name is valid Top Level Domain name
email@domain.co.jp Dot in Top Level Domain name also considered valid (use co.jp as example here)
firstname-lastname@domain.com Dash in address field is valid
email@example.com
firstname.lastname@example.com
email@subdomain.example.com
firstname+lastname@example.com
email@123.123.123.0
email@[123.123.0.123]
email@123.0.123.123
email@[0.123.123.123]
“email”@example.com
1234567890@example.com
email@example-one.com
_______@example.com
email@example.name
email@example.museum
email@example.co.jp
3465456rteyaesrgrdsfgsdfg@thefloow.com
firstname-lastname@example.com
much.“more\ unusual”@example.com
very.unusual.“@”.unusual.com@example.com
very.“(),:;<>[]”.VERY.“very@\\ "very”.unusual@strange.example.com | email test | 2017-08-09T10:40:00.000Z |
|
^[+|-]?(90.0{6}|[0-8]?[0-9].[0-9]{6})$ | // Valid values
-90.000000
90.000000
1.000000
-1.000000
9.999999
88.888888
77.777777
66.666666
55.555555
44.444444
33.333333
22.222222
11.111111
00.000000
-9.999999
-88.888888
-77.777777
-66.666666
-55.555555
-44.444444
-33.333333
-22.222222
-11.111111
// Invalid values
-90.000001
-90.000010
-90.000100
-90.001000
-90.010000
-90.100000
-91.000000
90.000001
90.000010
90.000100
90.001000
90.010000
90.100000
91.000000
+190.000000
190.000000
-190.000000
-90.00000
-90.0000
-90.000
-90.00
-90.0
-90.
-90
-9
190.000000
90.00000
90.0000
90.000
90.00
90.0
90.
90
9
| Lat | 2020-04-30T16:05:44.000Z |
|
([a-z])\1{2,}[\s|\w]* | http://www.youtube.com/watch?v=qsXHcwe3krw
http://41.media.tumblr.com/tumblr_lfouy03PMA1qa1rooo1_500.jpg
enfp and intj moments https://www.youtube.com/watch?v=iz7lE1g4XM4 sportscenter not top ten plays https://www.youtube.com/watch?v=uCdfze1etec pranks
| Remove multiple letter repeating words | 2021-02-28T23:56:03.000Z |
|
^{([a-zA-Z0-9_\.]+)?(,[a-zA-Z0-9_\.]+)*}$ | {a.b.c,d.ef} | iOS multiple bundle IDs separated by , and starting and ending with {} | 2018-01-08T18:47:06.000Z |
|
Supply an appropriate regular expression which will find all words which have the character ‘a’ in them, then 0 or more characters later have the string “epe”, then 0 or more characters later have the character “y”. The “y” character must occur AT THE END of the word in question, but the first ‘a’ does not have to appear at the start of the word. | a.*epe.*y$ | arrrepeeey
#Supply an appropriate regular expression which will find all words which have the character ‘a’ in them, then 0 or more characters later have the string “epe”, then 0 or more characters later have the character “y”. The “y” character must occur AT THE END of the word in question, but the first ‘a’ does not have to appear at the start of the word.# | Find all words with Character and specific string and end in y | 2019-11-05T19:21:15.000Z |
(.BB|BB(?=(\.))) | BB.BB.
BB.BB
.BB.BB
.BB.BB | Non-symmetric positive lookahead (touching relation) | 2020-08-04T09:23:39.000Z |
|
^(\\|[a-zA-Z]:)(\\\w[\w-.]*){2,} | \\se8p10000683
\\se8p10000683\appdata\aps\apsinstaller\done\abru0103-497-0018855-oav-cc-999-00zfz7g
\\se8p10000683\appdata\aps\apsinstaller\done\00a.bd.con
\\se8p10000683\appdata\aps\..\..\inetpub\ftproot
\\se8p10000683\appdata\aps\..\inetpub\ftproot
\\se8p10000683\appdata\aps\%2e
c:\boot.ini
c:\windows\notepad.exe
p:\appdata\aps\apsinstaller\done\abru0103-497-0018855-oav-cc-999-00zfz7g
p:\appdata\aps\coucou.pdf
\\se8p10000683\appdata\aps\%2e.pdf
\\se8p10000683\appdata\aps\test.pdf
| Path Manipulation (Input Validation and Representation, Data Flow) | 2018-04-10T08:29:11.000Z |
|
Task
You have a test string S. Your task is to match the pattern Xxxxx.
Here, x denotes a word character, and X denotes a digit.
S must start with an X digit and end with '.' symbol.
S should be 6 characters long only. | ^\d\w{4}\.$ | 3sssd.
| Matching Start and End | 2019-03-06T16:00:51.000Z |
(?:(?:(\w[\w\-]*\w)(?:@(.+))?):)?(.+) | instance_name@region:/file/path
instance_name:/file/path
/file/path | lightsail cli scp argument parsing | 2017-07-29T22:05:19.000Z |
|
WIP | href=\"([^\"]+)\" | <div id="main-section" class="main-section search">
<section class="outer-container fluid-container no-border-bottom search-summary">
<div class="inner-container">
<div class="h3-regular">
61 results found for: <span class="h3-demi">cybersecurity</span>
</div>
</div>
</section>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/fast-data-will-revolutionize-cybersecurity-in-2016/" data-element="search-results" data-description="search-results" data-element-position="1" data-page-position="109" data-label="cybersecurity">
<h3 class="h3-regular-8">Fast data will revolutionize cybersecurity in 2016</h3>
<p>To analyze all the traffic inside your network, as well as attacks from the outside, you need a ton more processing power than most companies deploy now. You need not just big data – a darling tech-concept throughout the last few years – but fast data, the concept we expect to hear tons more about in 2016.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/sec-2015-examination-priorities-cybersecurity-compliance-and-controls/" data-element="search-results" data-description="search-results" data-element-position="2" data-page-position="110" data-label="cybersecurity">
<h3 class="h3-regular-8">SEC: 2015 examination priorities – cybersecurity compliance and controls</h3>
<p>Registered broker-dealers and investment advisers received a stern warning to strengthen their cybersecurity programs or face further regulatory scrutiny.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/sec-commissioner-stresses-cybersecurity-risks/" data-element="search-results" data-description="search-results" data-element-position="3" data-page-position="111" data-label="cybersecurity">
<h3 class="h3-regular-8">SEC commissioner stresses cybersecurity risks</h3>
<p>Kara Stein, a commissioner at the US Securities and Exchange Commission, said cybersecurity has become one of the most significant issues affecting investors, corporate issuers, and financial institutions.Stein spoke today in London at an event organised by the Institute of Chartered Accountants in England and Wales and British American Business.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/regulators-monitoring-cybersecurity-preparedness/" data-element="search-results" data-description="search-results" data-element-position="4" data-page-position="112" data-label="cybersecurity">
<h3 class="h3-regular-8">Regulators monitoring cybersecurity preparedness</h3>
<p>If 2014 was the year of the data breach, 2015 is shaping up to be the year of data security and protection.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/finra-outlines-cybersecurity-best-practices-2/" data-element="search-results" data-description="search-results" data-element-position="5" data-page-position="113" data-label="cybersecurity">
<h3 class="h3-regular-8">FINRA Outlines Cybersecurity Best Practices</h3>
<p>A recent Financial Industry Regulatory Authority (FINRA) report, “Report on Cybersecurity Practices” calls on boards and executives to make responding to cyberthreats a top priority. There are five principles directors should follow to make sure cybersecurity is central to corporate planning, communications, governance and operations.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/common-information-standards-the-key-to-obamas-cybersecurity-push/" data-element="search-results" data-description="search-results" data-element-position="6" data-page-position="114" data-label="cybersecurity">
<h3 class="h3-regular-8">Common Information Standards the Key to Obama's Cybersecurity Push</h3>
<p>The latest flurry of cybersecurity activity from the Obama Administration saw the White House push for improved information sharing – between the public and private sectors and across multiple industry verticals. Obama kicked things off by announcing the creation of a new Cyber Threat Intelligence Integration Center (CTIIC). </p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/common-information-standards-key-obamas-cybersecurity-push/" data-element="search-results" data-description="search-results" data-element-position="7" data-page-position="115" data-label="cybersecurity">
<h3 class="h3-regular-8">Common information standards the key to Obama's cybersecurity push</h3>
<p>The latest flurry of cybersecurity activity from the Obama Administration saw the White House push for improved information sharing – between the public and private sectors and across multiple industry verticals.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/sec-and-finra-issue-results-of-cybersecurity-examinations/" data-element="search-results" data-description="search-results" data-element-position="8" data-page-position="116" data-label="cybersecurity">
<h3 class="h3-regular-8">SEC and FINRA Issue Results of Cybersecurity Examinations</h3>
<p>On February 3, 2015, the SEC’s Office of Compliance Inspections and Examinations (OCIE) issued a Risk Alert1 providing summary observations derived from the staff’s sweep examinations of over 100 registered broker-dealers and investment advisers that were undertaken to assess the cybersecurity practices and preparedness of such firms (the Cybersecurity Examination Initiative). On the same day, FINRA published a detailed, 46-page Report on Cybersecurity Practices2 identifying effective practices for dealing with cybersecurity threats, a product of its own 2014 targeted examinations of member firms and related initiatives, including a 2011 cybersecurity survey of its registered broker-dealers.</p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/explainability-enough-need-understandable-ai/" data-element="search-results" data-description="search-results" data-element-position="9" data-page-position="117" data-label="cybersecurity">
<h3 class="h3-regular-8">Is explainability enough? Why we need understandable AI</h3>
<p>Understandable AI combines the technical expertise of engineers with the design usability knowledge of UI/UX experts as well as the people-centric design of product developers. </p>
</a>
</div>
</div>
<div class="search-result outer-container fluid-container no-border-bottom">
<div class="search-result__type">
<span class="meta cta-large-regular">Insights</span>
</div>
<div class="search-result__content">
<a href="https://www.bloomberg.com/professional/blog/slowly-surely-women-changing-fintech/" data-element="search-results" data-description="search-results" data-element-position="10" data-page-position="118" data-label="cybersecurity">
<h3 class="h3-regular-8">Slowly but surely, women are changing fintech</h3>
<p>As more women take on fintech roles at almost every level, their influence is driving user-centric product design and rapid development timelines.</p>
</a>
</div>
</div>
</div> | Bloomberg | 2018-07-07T07:20:16.000Z |
(CAN_SID[A-Z0-9_]+(?=(_([A-Z0-9]{6}[0-9]))))|(NO_SIGNAL) | /* UACK */ {CAN_SID_UACK_IDT1S03, CAN_SID_N_UACK_0_IDT1S03}, {CAN_SID_UACK_IDT1S03, NO_SIGNAL},
{NO_SIGNAL, CAN_SID_UACK_IDT1S03},
{NO_SIGNAL, NO_SIGNAL},
{a, b } | CAN1-v2-OK-1 | 2020-05-08T07:07:23.000Z |
|
^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([.]\w+)*$ | barney@example.de
barney.rubble@example.com
barney-rubble@example.coop
barney+rubble@example.com
barney'rubble@example.com
b.arne.y_r.ubbl.e@example.com
barney4rubble@example.com
barney4rubble!@example.com
_barney+rubble@example.com
"barney+rubble"@example.com | My-DesiredEmailFormatValidation | 2019-01-18T21:53:16.000Z |
|
^http[s]?:\/\/.+$ | https://www.baidu.com | check the URL | 2018-06-07T02:31:53.000Z |
|
\bب.[\w]+\b | پیدا کردن کلمات با آغاز حروف خاص | 2017-09-21T21:23:05.000Z |
||
Useful to check the HTTP content-type as application/json since sometimes people created their own custom content-type on top of JSON. | ^application\/(.+\+)?json$ | application/json
application/vnd.schemaregistry.v1+json | HTTP Header Content Type Application JSON | 2021-05-01T05:31:44.000Z |
French Phone Number Validation.
Accept several kind of format, more or less usual. And refuse incorrect formats.
- Prefix: 0033 / +33 / (0) / 0
- Number: collapsed / by 1 / group by 2 / group by 3
- Separator: space / dot / dash / hyphen | ^(?:(?:\+|00)33[\s.-]{0,3}(?:\(0\)[\s.-]{0,3})?|0)[\s.-]?[1-9](?:(?:[\s.-]?\d{1}){8}|\d{2}(?:[\s.-]?\d{3}){2})$ | French Phone Number Validation.
Accept several kind of format, more or less usual. And refuse incorrect formats.
- Prefix: 0033 / +33 / (0) / 0
- Number: collapsed / by 1 / group by 2 / group by 3
- Separator: space / dot / dash / hyphen
~ Accepted ~
0123456789
01 23 45 67 89
01.23.45.67.89
0123 45.67.89
0033 123-456-789
0033(0)123456789
+33-1.23.45.67.89
+33 - 123 456 789
+33(0) 123 456 789
+33 (0)123 45 67 89
+33 (0)1 2345-6789
+33(0) - 123456789
~ Rejected ~
012345678
01234567890
0+123456789
(0)123456789
01 23 45 67 89
~ Accepted but strange ~
+33.-.123456789
+33.-.(0)-.-123456789
01 23.45-67.89
| French Phone Number | 2019-01-11T08:40:37.000Z |
.*/(?P<sig>[a-zA-Z]{2}) | /SE
CURITIBA/PR
aracaju/se
VW SAVEIRO 1.6, ANO/MOD. 08/09, FLEX, PRETO, CURITIBA/PR
Fiat Uno Mille Fire, ano/mod. 03/04, azul, Dourados/MS,SUSTADO
2ª Vara de Falência de São Paulo/SP 13h - 2ª Praça | Find Cidade/Sigla | 2018-09-20T14:28:42.000Z |
|
'a-z' - lowercase
'A-Z' - uppercase
'-' - hyphens
0-9 - numeric
{5, 32} between 5 and 32 characters | ^[a-zA-Z0-9-]{5,32}$ | participantone
participant1
Participant1
participant-1
participant-one
participant-one-tn
Participant1-tn
Participant-One-tn
participant.one-tn
particpant123-456-tn
participant1.worldwire.io
participant-1-worldwire-st
participant-1-worldwire-io-test-test
| Participant Slug | 2019-02-18T19:42:40.000Z |
^([<>=!]?)\s?((?:\d*\.)?\d+)\s?(.*)$ | < 2 Mbps
> 2 Mbps
! 2 Mbps
<2 Mbps
>2 Mbps
!2 Mbps
<2Mbps
>2Mbps
!2Mbps
< 1.5 Mbps
> 1.5 Mbps
! 1.5 Mbps
<1.5 Mbps
>1.5 Mbps
!1.5 Mbps
<1.5Mbps
>1.5Mbps
!1.5Mbps
< 1.5 Mbps
< 1.5 M
< 1.5 Kbps
< 1.5 K
2 Mbps
2Mbps
| Velocidade De Banda | 2018-03-02T20:04:58.000Z |
|
(https:\/\/provider\.shsp\.swisscom\.com((?!:(443|80)(($)|(\/))))(?:(?:(?::)(\d*)))?(?:(?:(\/latest)(?=\/))|(?:(\/latest)($)))?) | https://provider.shsp.swisscom.com:4433/latest/Scripts/sharespace.js | All url with latest (optional) | 2017-09-19T15:06:25.000Z |
|
(\d{3})(\d{2})(\d{3})(\d{1})(\d{4})(\d{7}) | 60322810818000002407 | Форматирование номера счёта | 2017-12-01T10:16:14.000Z |
|
Validate the structure of the IP address with suffix of red | ^(\d{1,3}\.){3}\d{1,3}\/\d{1,2} | 192.168.23.10/27
10.57.5.253/23
xxx.34.19.78/18
172.z6.10.1/21
10.57.4.35
172.16.10.1/20
| IP Address | 2017-06-29T20:37:14.000Z |
(PJSIP|SIP)\/(\d{3,5})-(AA[0-9]{5}) | PJSIP/117-AA01002-00000039
SIP/117-AA01002-00000039
SIP/1030-AA01002-00000039
PJSIP/10301-AA01002-00000039
Local/DIAL-8297225031@fromotherpbx-0000004e;2
Local/132-54-0@dialfromfollowme-00000022;2 | Asterisk Channel | 2019-05-18T15:48:49.000Z |
|
1960-2017
not required | ^(^$|[1][9][6]\d|[2][0][0]\d|[2][0][1][0-7])$ | Vintage | 2020-06-20T12:33:34.000Z |
|
Regex for Emirati phones (without +) | ^((00|0)?971[2-9]{1}[0-9]{8})$ | Emirati Phones | 2023-10-04T09:00:37.000Z |
|
\b[^2\n]\d{6,12}\b | 21234567
99912234
19123809
21234567
21234567
21234567
21234567
21234567
21234567
21234567 | Match numbers with length b\w 6-12 | 2018-03-23T07:08:21.000Z |
|
^ntp standalone vlan-range\s\d | ^ntp standalone vlan-range\s\d | ntp standalone vlan-range 1
^ntp standalone vlan-range\s\d | ntp standalone vlan-range 1 | 2020-04-22T07:22:10.000Z |
Check if string contains No Chinese characters:
[http://www.cirrhosismedication.com](http://www.cirrhosismedication.com)
[http://www.pmsecret.com](http://www.pmsecret.com)
[http://premiumpig.com](http://premiumpig.com)
[http://happinesspig.com](http://happinesspig.com)
[http://3apig.com](http://3apig.com)
[http://www.hongkongmarketingconsultant.com](http://www.hongkongmarketingconsultant.com)
[http://www.hongkongonlinemarketing.com](http://www.hongkongonlinemarketing.com) | [^\p{Han}]+ | t你好
這是中國
| Check if contains No Chinese | 2018-07-03T09:52:46.000Z |
It matches all phone numbers in Turkey starting with country and area code.
+902121111111
+90 2121111111
+90 212 1111111
+90 212 111 1111
+90 212 111 11 11
902121111111
02121111111
2121111111
212 111 1111
212 111 11 11
0212 111 11 11
0 212 1111111
0 212 111 11 11 | ^((0?|90?|\+90?)\s?(322|424|236|416|446|482|272|442|324|472|222|252|382|342|436|358|454|384|312|456|388|242|438|452|478|326|328|466|476|464|256|246|264|266|216|362|378|212|484|488|232|368|458|344|346|228|370|414|426|338|486|434|474|282|374|366|356|248|352|462|224|318|428|286|288|276|376|386|432|364|348|226|258|262|354|412|332|372|380|274||284|422))\s?(\d{3})\s?(\d{2})\s?(\d{2})$ | +902425486687 | Turkish Phone Number | 2022-06-13T09:00:04.000Z |
有时需要抽取网页中的颜色代码,可以使用下面的表达式。 | ^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$ | #223322 | 提取Color Hex Codes | 2017-06-22T05:29:18.000Z |
further editing is required in code to get the filename without extension | (?<=\\)[^\\]+$ | C:\Users\KlausP\Pictures\Screenpresso\201.8-01-24_13h40_38.png
\\Users\KlausP\Pictures\Screenpresso\201.8-01-24_13h40_38.png
\\my-local-server\path\to\this_file may_contain-any&character.pdf
\\my-local-.net\server\path\to\this_file may_contain-any&character.pdf
\\my-local-.netd\server\path\to\this_file may_contain-any&character.pdf
\\my-local-.netd\server\path\to\this_file may_contain-any&character
\\my-local-.netd\server\path\to\.this_file may_contain-any&character
.\hallo
.\.txt | File name without extension | 2018-08-22T09:37:46.000Z |
Fluentbit systemd logs | ^(?<time>[^ +][-:0-9TZ]+|[[:upper:]][[:lower:]]{2}[ -:+0-9TZ]*)([^ ][+0:]+|\s+)(\s*)(?<host>[^ ][-\w\d]+)(\s*)(?<service>[^ [][-_\w]+)(\[(?<pid>[^ \]][\d]*)\]):\s*((\[\s*(?<mtime>[^ ][\w: \/]+)\]\s*\[\s*(?<severity>[^ ][\w]+)\]\s*){0,1}\s*\[\s*(?<component>[^ ][\w:]+)\]){0,1}\s*(?<message>.*){0,1}.*$ | Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3915] haproxy: [1503580119.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:08:39", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"AMQP serve
Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3916] haproxy: [1503580148.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:09:08", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"message re
Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3917] haproxy: [1503580151.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:09:11", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"AMQP serve
Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3918] haproxy: [1503580164.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:09:24", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"message re
Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3919] haproxy: [1503580167.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:09:27", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"AMQP serve
Oct 02 12:56:47 ctl01 td-agent-bit[22911]: [3920] haproxy: [1503580172.000000000, {"path"=>"/var/log/sapmock/haproxy.log", "time"=>"2017-08-24T13:09:32", "host"=>"de4-1d-2d-0d-44-a0", "service"=>"ceilometer-polling", "message"=>"AMQP serve
Oct 02 12:58:52 ctl01 td-agent-bit[22911]: [engine] caught signal
Oct 02 12:58:52 ctl01 td-agent-bit[22911]: [2017/10/02 12:58:52] [ info] [input] pausing tail.0
Oct 02 12:58:52 ctl01 td-agent-bit[22911]: [2017/10/02 12:58:52] [ info] [input] pausing tail.1
Oct 02 12:58:52 ctl01 systemd[1]: Stopping TD Agent Bit...
Oct 02 13:00:22 ctl01 systemd[1]: td-agent-bit.service: State 'stop-sigterm' timed out. Killing.
Oct 02 13:00:22 ctl01 systemd[1]: td-agent-bit.service: Main process exited, code=killed, status=9/KILL
Oct 02 13:00:22 ctl01 systemd[1]: Stopped TD Agent Bit.
Oct 02 13:00:22 ctl01 systemd[1]: td-agent-bit.service: Unit entered failed state.
Oct 02 13:00:22 ctl01 systemd[1]: td-agent-bit.service: Failed with result 'signal'.
Oct 02 13:00:22 ctl01 systemd[1]: Started TD Agent Bit.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [ info] [engine] started
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [in_tail] parser 'rabbitmq' is not registered
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [ warn] [out_es] consider use a tag_key that starts with '_'
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
Oct 02 13:00:22 ctl01 td-agent-bit[23506]: [2017/10/02 13:00:22] [error] [parser:haproxy] Invalid time format %Y-%m-%dT%H:%M:%S.
| fluentbit systemd logs | 2017-10-02T13:51:20.000Z |
^\d{1,4}[_].* | 1234_test.mp3
999_test.mp3
12_test.mp3
0_test.mp3
0t_est.mp34
t_est1234.mp3
@_test.mp3
/_test.mp3
\\_test.mp3
| 001_track_1.mp3 | 2020-09-23T18:14:14.000Z |
|
auf\s+(?:dem|ihrem)\s+Schild\s+(\S+\s+)*(?:darstellte|dargestellt) | Plinius, Naturalis historia 34,54 (= DNO 905)
Phidias schuf außer dem Zeus von Olympia, dem niemand den Rang streitig macht,
ebenfalls aus Elfenbein eine <Statue der> Athena in Athen, die sich im Parthenon
befindet, aufrecht stehend <dargestellt>.
Plinius, Naturalis historia 36,18 (= DNO 906)
Dass Phidias als berühmtester <Künstler> bei allen Völkern gilt, bis zu denen der Ruf
seines olympischen Zeus gelangt ist, bezweifelt niemand; damit aber auch diejenigen,
die seine Werke nicht gesehen haben, wissen, dass man ihn verdientermaßen rühmt,
wollen wir kleine Belege anführen, und zwar nur solche, die seine Erfindungsgabe
beweisen. Wir werden dazu nicht die Schönheit seines olympischen Zeus, nicht die
Größe seiner in Athen geschaffenen Athena, obgleich diese 26 Ellen hoch ist - sie
besteht bekanntlich aus Elfenbein und Gold - heranziehen, sondern <nur erwähnen>,
dass er auf ihrem Schild am konvexen <äußeren> Rund die Amazonenschlacht, im
konkaven Teil die Kämpfe der Götter und Giganten, an den Sandalen aber die der
Lapithen und Kentauren dargestellt hat. Jedes Detail bot ihm Anlass für kunstvolle
Darstellung. Das Relief auf dem Sockel aber nennt man Pandoras Genesis (die
Geburt der Pandora): Zwanzig Gottheiten sind bei der Geburt zugegen. Seine Nike ist
vor allem bemerkenswert; Kenner bewundern aber auch die Schlange und die eherne
Sphinx (am Helm) unterhalb der Speerspitze. Diese beiläufigen Bemerkungen über
den niemals genug gelobten Künstler mögen ausreichen, damit man zugleich
erkenne, dass sich jene (sc. des Phidias) großartige künstlerische Begabung auch in
kleinen Gegenständen gleichermaßen zeigte.
Thukydides 2,13 (= DNO 894)
Ferner rechnete er (Perikles) die nicht unbedeutenden Reichtümer aus den anderen
Heiligtümern hinzu, die sie verwenden könnten, und wenn sie völlig von allem
abgeschnitten würden, auch das Gold, womit die Göttin selbst bekleidet war, und er
wies darauf hin, dass die Statue 40 Talente pures Gold an sich trage und alles rundum
abnehmbar sei.
Scholion zu Demosthenes or. 22,13 (= DNO 876)
Der Parthenon war der Tempel der Athena Parthenos auf der Akropolis und mit dem
Standbild (agalma) der Göttin, das der Bildhauer (andriantoplastes) Phidias aus Gold
und Elfenbein angefertigt hatte. Es gab nämlich drei Standbilder (agalmata) der
Athena auf der Akropolis an unterschiedlichen Orten: Eines stammte aus der Frühzeit
und war aus Olivenbaumholz; dies wurde Athena Polias genannt, weil <Athen> die
Stadt (polis) der Athena war. Das zweite war ganz aus Bronze; dies hatten die Sieger
von Marathon anfertigen lassen und es wurde Athena Promachos (Vorkämpferin)
genannt. Das dritte ließen sie aus Gold und Elfenbein errichten, weil sie reicher
geworden waren nach dem Sieg bei Salamis, in dem Maße wie auch der Sieg <bei
Salamis> größer war <als der bei Marathon>; dies wurde Athena Parthenos genannt.
Scholion zu Aristophanes Pax 605a (= DNO 923)
Philochoros berichtet aus dem Archontat des Pythodoros (438/37 v. Chr.) folgendes:
Es wurde auch die goldene Statue (agalma) der Athena in dem großen Tempel
(Parthenon) aufgestellt, die Gold im Gewicht von 44 Talenten an sich trug; die Leitung
lag bei Perikles und die Ausführung bei Phidias. Da der Künstler Phidias in den
Verdacht geriet, das Elfenbein für den Panzer falsch abgerechnet zu haben, wurde er
angeklagt. Es heißt, er sei nach Elis geflohen/verbannt worden, habe dort den Auftrag
für die Statue des Zeus in Olympia übernommen, sei aber, nachdem er diese
fertiggestellt habe, von den Eieern umgebracht worden.
Dion von Prusa, or. 12,6 (= DNO 910)
Von Athena, der Schönsten und Klügsten unter den Göttern, sagt man, ihr sei dieser
Vogel (Eule) besonders lieb gewesen. Die Eule kam denn auch bei den Athenern in
den Genuss der Kunstfertigkeit des Phidias, der sie mit Zustimmung des Volkes nicht
für unwürdig hielt, der Göttin als Attribut beizugeben, während er Perikles und sich
selbst, wie man sagt, nur versteckt auf dem Schild darstellte.
Valerius Maximus, Facta et dicta memorabilia 1,1 ext.7 (= DNO 903)
Dieselben (sc. die Athener) rühmten den Phidias, obwohl er sagte, dass die Minerva
eher aus Marmor als aus Elfenbein gemacht werden müsse, weil so der Glanz länger
erhalten bleibe; als er aber hinzufügte, dass es auch billiger sei, hießen sie ihn still zu
sein.
Platon, Hippias maior 290a-c (= DNO 895)
Sokrates: Und doch wird er diese Antwort nicht nur nicht gelten lassen, mein Bester,
sondern er wird sich noch recht lustig über mich machen und sagen: "Du, Hohlkopf,
hältst du etwa Phidias für einen schlechten Künstler?" Und ich werde dann wohl
erwidern, das sei keineswegs der Fall.
Hippias: Womit du auch recht hast, Sokrates.
Sokrates: Allerdings. Aber wenn ich <ihm> dann zustimmt habe, dass Phidias ein
trefflicher Künstler ist, wird jener sagen: Und du glaubst also, dass Phidias das, was
du als das Schöne bestimmst, nicht gekannt habe? - Da werde ich fragen: Wieso
denn das? - Weil er, so wird er antworten, seiner Athena die Augen nicht golden
gemacht hat, und auch sonst weder das Gesicht noch Hände noch Füße, wo es doch
golden am schönsten erschienen wäre, sondern elfenbeinern. Offenbar hat er diesen
Fehler aus Unkenntnis gemacht, weil er nicht wusste, dass Gold das ist, was alles
schön macht, wohin es auch kommt. Wenn er nun das sagt, was sollen wir ihm
antworten, Hippias?
Hippias: Das ist nicht schwer. Wir wollen sagen, er hätte recht getan. Denn auch
Elfenbeinernes, denke ich, ist schön.
Sokrates: Weshalb aber, wird er dann sagen, hat er nicht das Innere der Augen auch
aus Elfenbein gemacht, sondern aus Stein, wobei er einen aussuchte, der dem
Elfenbein möglichst ähnlich war? Oder ist auch der Stein, der schöne jedenfalls,
etwas Schönes? Werden wir das sagen, Hippias?
Ps.-Aristoteles, De mundo 6,399b (= DNO 911)
Man erzählt, dass auch der Bildhauer Phidias, als er die Athena auf der Akropolis
schuf, in der Mitte ihres Schildes sein eigenes Porträt angebracht und durch eine
geheime Vorrichtung so mit dem Standbild (agalma) verbunden habe, dass, wenn
jemand es herausnehmen wollte, zwangsläufig das ganze Kunstwerk (agalma)
auseinanderbrechen und zusammenstürzen musste.
Pausanias 1,24,5–7 (= DNO 892)
Tritt man in den Tempel ein, den man Parthenon nennt, so bezieht sich die ganze
Darstellung im <Ost->Giebel auf die Geburt der Athena, der rückwärtige < West-
>Giebel zeigt den Streit des Poseidon mit Athena um das Land. Die Kultstatue
(ágalma) selbst ist aus Gold und Elfenbein gemacht. Mitten auf ihrem Helm sitzt die
Figur (eikon) einer Sphinx - was man von der Sphinx erzählt, werde ich schreiben,
wenn meine Darstellung Böotien erreicht hat -, beiderseits an dem Helm aber sind
Greifen angearbeitet. (6) [ ... Exkurs zu den Greifen ... ] (7) Über die Greifen mag dies
genügen. Die Kultstatue (ágalma) der Athena steht aufrecht und ist mit einem Chiton
bis zu den Füßen <bekleidet>, und auf ihrer Brust ist das Medusenhaupt aus
Elfenbein angebracht. Und eine Nike (Siegesgöttin), gegen vier Ellen hoch, hält sie
und in der <anderen> Hand hat sie eine Lanze und zu ihren Füßen steht ein Schild,
und neben der Lanze befindet sich eine Schlange, und diese Schlange dürfte
Erichthonios sein. An der Basis des Kultbildes ist die Geburt der Pandora (Pandaras
genesis) dargestellt. Hesiod und andere haben erzählt, wie diese Pandora die erste
Frau wurde; vor der Geburt der Pandora gab es das Geschlecht der Frauen noch
nicht. Hier steht sonst nur eine Statue (eíkon) des Kaisers Hadrian, wie ich selbst
gesehen habe, und am Eingang eine des Iphikrates, der viele bewundernswerte Taten
vollbracht hat.
Plutarch, Perikles 31,2–5 (= DNO 855)
Das Übelste aber, was als Kriegsursache angeführt und von sehr vielen Zeugen
bestätigt wird, ist dies: Die Anfertigung der Athenastatue hatte, wie schon erwähnt, der
Bildhauer Phidias übernommen, der mit Perikles befreundet war und großen Einfluss
bei ihm hatte. Dieser hatte sich schon selber Feinde gemacht, die ihm den Ruhm
neideten; andere wollten, indem sie ihn angriffen, das Volk auf die Probe stellen <und
feststellen>, wie es sich bei einer Anklage gegen Perikles verhalten würde. Sie
überredeten Menon, einen von Phidias' Gehilfen, sich als Schutzflehender auf den
Markt zu setzen und um Sicherheit zu bitten, da er Phidias anzeigen und Klage gegen
ihn erheben wolle. Als das Volk ihm das gewünschte Versprechen gegeben hatte und
vor der Volksversammlung Anklage erhoben worden war, konnte der Vorwurf der
Unterschlagung nicht bewiesen werden, denn Phidias hatte das Gold auf Perikles' Rat
gleich von Anfang an so geschickt ringsum an dem Götterbild (agalma) angebracht,
dass es ganz abgenommen und sein Gewicht nachgeprüft werden konnte, was
Perikles denn auch damals die Ankläger tun hieß. Es war jedoch <in Wahrheit> der
Ruhm seiner Werke, der durch den Neid, den er auslöste, Phidias in Schwierigkeit
brachte, und ganz besonders die Tatsache, dass er sich selber abbildete, als er den
Amazonenkampf auf dem Schilde der Göttin schuf, und zwar in der Gestalt eines
kahlköpfigen Alten, welcher mit beiden Händen einen Stein in die Höhe hebt, und
dass er überdies ein vortreffliches Bildnis des Perikles, wie er mit einer Amazone
kämpft, in die Darstellung einfügte. Von besonderer Raffinesse zeugt die Haltung der
rechten Hand <der Amazone>, die einen Speer vor Perikles' Gesicht hält. Es ist, als habe Phidias damit die Ähnlichkeit verdecken wollen, die aber von beiden Seiten her
deutlich in die Augen fällt. Phidias wurde ins Gefängnis geworfen, wo er an einer
Krankheit oder, wie einige behaupten, an Gift starb, das ihm die Feinde des Perikles
gebracht hatten, um diesen zu verleumden. Dem Menon aber, der ihn angezeigt hatte,
verlieh das Volk auf Glykons Antrag Abgabenfreiheit und beauftragte zugleich die
Feldherrn, für seine Sicherheit Sorge zu tragen.
Plutarch, Perikles 13,14 (160c) (= DNO 907)
Phidias selbst schuf das goldene Standbild (hédos) der Athene; er wird auch in einer
Inschrift auf der Stele als Schöpfer des Werks genannt.
Isokrates, Or. 15,2 (DNO 896)
Ich weiß, dass es einige Sophisten meine Beschäftigungen verleumden und sagen, es
gehe nur um das Schreiben von Gerichtsreden, und sich damit so verhalten, wie wenn
es einer wagte, Phidias, den Schöpfer der Athena <Parthenos>, als Bildner von
Tonfigürchen zu bezeichen, oder behauptete, Zeuxis und Parrhasios übten die gleiche
Kunst aus wie die Maler von Votivbildchen.
Cicero, Orator 234 (DNO 899)
Falls aber jemand an einer lockeren Form mehr Gefallen findet, so wende er sie nur
an – jedoch so, wie jemand den Schild des Phidias auseinandernimmt und <so> zwar
die Gesamtstruktur auflöst, nicht aber die Schönheit der Einzelheiten.
| schild-dargestellt | 2018-04-16T18:01:20.000Z |
|
Password is between 6 - 10 chars including letters and/or digits. You can use `maxlength` in `<input/>` field to limit length
[http://www.cirrhosismedication.com](http://www.cirrhosismedication.com)
[http://www.pmsecret.com](http://www.pmsecret.com) | ([a-z]|[A-Z]|[0-9]){6,10} | E2j1tT3YHn | Password is between 6 - 10 chars including letters and/or digits. | 2018-06-08T07:46:39.000Z |
It checks whether the Github Profile URL is valid. | ^(http(s?):\/\/)?(www\.)?github\.([a-z])+\/([A-Za-z0-9]{1,})+\/?$ | Github Profile URL | 2018-01-20T22:25:42.000Z |
|
Extract season from different title formats | [Ss_]{1,1}([0-9]{2,2})[Eex\ _]{1,1} | un gars une fille s01 ep05 chez psy 01.avi
| UGUF - Saison | 2019-02-02T15:29:29.000Z |
(\b(?:M{1,4})?(?:CM|CD|D?C{1,3})?(?:XC|XL|L?X{1,3})?(?:IX|IV|V?I{1,3})?\b) | VII
CMXL
XII
XVII
IV
MMMIII
MXI
MXIV
MM
MC
MM
I
VI
MX
| roman-number | 2018-04-01T18:55:22.000Z |
|
A proof of concept regex that captures dates and date ranges with a variety of separators.
Works with both DMY and MDY, and if one is not needed, it can be easily deleted from the regex.
The full variety of months needs to be implemented by the programmer themselves since developing it in regex101 is unfeasible and would clutter the regex. | ((?:\d{1,2}-)?\d{1,2})(?:st|nd|rd|th)?[ ./-](feb|\d{1,2})(?:[ ./-](\d{2,4}))?|(feb|\d{1,2})[ ./-]((?:\d{1,2}-)?\d{1,2})(?:st|nd|rd|th)?(?:[ ./-](\d{2,4}))? | 3 feb 2020 10:30
03 feb 2020
02-03-2020
11-13-02-2021
11-12 feb-2020
3 feb 20
20-22 feb 2020
10:00pm 3 feb 2020
2 feb
feb 2
20 feb
feb 2nd
2nd feb
30th feb
feb 30th
30 feb 2020
30/02/2020
02/30/2020
alda a
The quick brown fox jumped over 2 dogs on the feb 20th 2020
3
30 | Regular expression for capturing dates and date ranges. | 2022-04-07T20:19:04.000Z |
http://stackoverflow.com/questions/7885096/how-do-i-decode-a-string-with-escaped-unicode
http://stackoverflow.com/questions/14449245/decode-unicode-to-character-in-javascript | (?:['"]?([\\\w\d ]+)['"]?(?:,\s*)?) | 'font1', 'font 2', font3, "font 4 1", "\C560\D50C SD \C0B0\B3CC\ACE0\B515 Neo"; | css font family | 2017-03-31T12:43:34.000Z |
todo | https?:\/\/github\.com\/(?<owner>[a-z\d](?:[a-z\d]|-(?=[a-z\d])){0,38})\/(?<repo>[a-z\d._-]{1,100})\/(issues|pull)\/(?<issueNumber>\d+)(?<issueComment>#issuecomment-(?<issueCommentNumber>\d+))? | https://github.com/spacehub-mn/spacehub/issues/new/choose
https://github.com/spacehub-mn/spacehub/issues/311 | GitHub issue link | 2023-06-12T09:46:41.000Z |
\d{2}(-?)\d{2}\1\d{2}\1\d{2} | 12-23-22-45 | hackerrank | 2019-02-02T19:32:44.000Z |
|
For parsing URLs | ^([a-z]+):\/\/([^\/]+)\/?([^:]+):?(\d+)?$ | ftp://nobodyloves.aweirdo.com/bonus:2101
http://www.lexusnexus.com/index.html
| URL parser | 2021-03-22T02:25:16.000Z |
^([a-zA-Z0-9]*[a-zA-Z]+[a-zA-Z0-9]*\.[a-zA-Z0-9]*\.[a-zA-Z0-9]*|[a-zA-Z0-9]*\.[a-zA-Z0-9]*[a-zA-Z]+[a-zA-Z0-9]*\.[a-zA-Z0-9]*|[a-zA-Z0-9]*\.[a-zA-Z0-9]*\.[a-zA-Z0-9]*[a-zA-Z]+[a-zA-Z0-9]*)(~|\-|\+){0,1}[a-zA-Z0-9]+$ | //good
rc0.05.00
0rc.05.00
0.rc05.00
0.05rc.00
rc0.rc05.00
rc0.05rc.00
rc0rc.rc05.00
rc0.rc05rc.00
rc0.rc05rc.rc00
rc0.rc05rc.00rc
0.0.0sr1+asdf
0.0.0sr1
errhand.LSD.asdf+dfsg
//bad
1.1
1.1.1
1.00.00
v1c.1.
1.v1c.
1.01.01~sdgf
1.v1c.asdf-sadf+asdf
~1c.1c.0
1c.1~c.0 | strict major, minor, patch | 2018-06-12T15:07:33.000Z |
|
\{"app_id":"(?P<appid>(?:\w+))","dev_id":"(?P<devid>(?:\w+))","hardware_serial":"(?P<hardwareserial>(?:\w+))","port":(?P<port>(?:\d+)),"counter":(?P<counter>(?:\d+)),"payload_raw":"(?P<raw>(?:(\w+\=|\w+|\w+\==)))","payload_fields":{"(?P<value>(?:\w+))":"(?P<val>(?:\d+))"},"metadata":{"time":"(?P<time>(?:\w+-\w+-\w+:\w+:\w+.\w+))","frequency":(?P<freq>(?:(\w+.*\w+|\d+))),"modulation":"(?P<modulation>(?:\w+))","data_rate":"(?P<data_rate>(?:\w+))","airtime":(?P<airtime>(?:\w+)),"coding_rate":"(?P<coding_rate>(?:\d+\/\w+))","gateways":\[{"gtw_id":"(?P<gtw_id>(?:(\w+|\w+\-\w+)))"(|,"gtw_trusted":(?P<trusted>(?:\w+))),"timestamp":(?P<timestamp>(?:\w+)),"time":"(?P<times>(?:(\w+.\w+.\w+.\w+.\w+|\w+.\w+.\w+.\w+.\w+.\w+)))","channel":(?P<channel>(?:\d+)),"rssi":-(?P<rssi>(?:\d+)),"snr":(?P<snr>(?:(\d+.\d+|\d+))),"rf_chain":(?P<rf_chain>(?:\d+)),"latitude":(?P<latitude>(?:(\d+.\d+|\d+))),"longitude":(?P<longitude>(?:\b(\d*.\d+|\d)\b)),"location_source":"(?P<registry>(?:\w+))"}\]}} | parse_gateway_traffic | 2018-10-29T14:09:56.000Z |
||
l4.2 | // Lab 4.2
#include <iostream>
#include <string>
using namespace std;
string s1, s2;
int checkChar() {
int i, len;
len = s2.length();
for (i = 0; i < len; i++)
if (s2[i] - 48 < 0 || s2[i] - 48 > 9)
return 0;
return 1;
}
void inputString() {
cout << " - Nhap chuoi S1: ";
getline(cin, s1);
while (1) {
cout << " - Nhap chuoi S2: ";
getline(cin, s2);
if (!checkChar())
cout << " => " << "Input Validation" << endl << endl;
else
break;
}
}
int checkNumber() {
int i, len;
len = s1.length();
for (i = 0; i < len; i++)
if (s1[i] - 48 >= 0 && s1[i] - 48 <= 9)
return 1;
return 0;
}
int checkSDTMobifone() {
int i, len;
len = s2.length();
if (len==10 && s2[0] - 48 == 0 && s2[1] - 48 == 9 && s2[2] - 48 == 0) {
for (i = 3; i < 10; i++) {
if (s2[i] - 48 < 0 || s2[i] - 48 > 9)
return 0;
}
return 1;
}
else
return 0;
}
int checkSubString() {
int i, j;
int len, len_s1, len_s2, flag;
char temp;
len_s1 = s1.length();
len_s2 = s2.length();
if (len_s2 == 0)
return 1;
if (len_s1 >= len_s2) {
for (i = 0; i <= len_s1 - len_s2; i++) {
flag = 1;
for (j = 0; flag&&j < len_s2; j++) {
if (s1[i + j] != s2[j])
flag = 0;
}
if (flag)
return 1;
}
}
return 0;
}
string addString(){
string s3;
int i, len_s1, len_s2, len;
len_s1 = s1.length();
len_s2 = s2.length();
len = len_s1 + len_s2;
for (i = 0; i < len; i++) {
if (i < len_s1)
s3 += s1[i];
else
s3 += s2[i - len_s1];
}
return s3;
}
void insertString(string s3) {
string str_Insert = "Buffer_Overflow";
char after;
int i, len, flag;
len = s3.length();
cout << " - Chuoi S3: " << s3 << endl;
cout << " - Ban muon them vao sau ky tu nao: ";
cin >> after;
cout << endl << " => ";
flag = 0;
for (i = 0; i < len; i++) {
if (s3[i] != after) {
cout << s3[i];
}
else {
cout << after << str_Insert;
flag++;
}
}
if (!flag)
cout << str_Insert << endl;
}
int main() {
string s1, s2, s3;
// Cau 1
cout << endl << "Cau 1: " << endl;
inputString();
// Cau 2
cout << endl << "Cau 2: " << endl;
if (checkNumber())
cout << " - Chuoi S1 co chu so" << endl;
else
cout << " - Chuoi S1 khong co chu so" << endl;
// Cau 3
cout << endl << "Cau 3: " << endl;
if (checkSDTMobifone())
cout << " - Chuoi S2 la SDT mang Mobifone" << endl;
else
cout << " - Chuoi S2 khong la SDT mang Mobifone" << endl;
// Cau 4
cout << endl << "Cau 4: " << endl;
if (checkSubString())
cout << " - Chuoi S2 la tap con cua chuoi S1" << endl;
else
cout << " - Chuoi S2 khong la tap con cua chuoi S1" << endl;
// Cau 5
cout << endl << "Cau 5: " << endl;
cout << " - Chuoi S3 = S1 + S2: ";
s3 = addString();
cout << s3 << endl;
// Cau 6
cout << endl << "Cau 6: " << endl;
insertString(s3);
cout << endl << endl;
//system("pause");
return 0;
}
| l4.2 | 2018-10-10T17:15:09.000Z |
|
Convert numbers-only YYYYMMDD date to dash delineated YYYY-MM-DD | (?<year>\d{4})(?<month>\d{1,2})(?<day>\d{1,2}) | 19911231 | Convert numbers-only YYYYMMDD date to dash delineated YYYY-MM-DD | 2022-05-19T21:05:07.000Z |
^(?:(?<protocol>\w*?):\/\/(?<authority>(?<mnemonic>\w*).(?<host>[\w-.]*))\/(?<path>[\w-]*)\s*$) | https://pii.ngkf-qa.commloanservices.com/qa2
https://pii.ngkf-qa.pncint.net/qa1
https://pii.ngkf-qa.pncint.net/qa2
https://pii.rait.commloanservices.com/PII
https://pii.rait.pncint.net/PII
https://pii.rait-qa.commloanservices.com/qa1
https://pii.rait-qa.pncint.net/qa1
https://pii.situs.commloanservices.com/PII
https://pii.situs.pncint.net/PII
https://pii.situs-qa.commloanservices.com/qa1
https://pii.situs-qa.commloanservices.com/qa2
https://pii.situs-qa.pncint.net/qa1
https://pii.situs-qa.pncint.net/qa2
https://pii.situs-rnd.pncint.net/dev1
https://pii.situs-rnd.pncint.net/dev2
https://pii.situs-uat.pncint.net/test1
https://pii.situs-uat.pncint.net/test2
https://pii.suntrust.commloanservices.com/PII
https://pii.suntrust.pncint.net/pii
https://pii.suntrust-qa.commloanservices.com/qa1
https://pii.suntrust-qa.commloanservices.com/qa2
https://pii.suntrust-qa.pncint.net/qa1
https://pii.suntrust-qa.pncint.net/qa2
https://pii.wd.commloanservices.com/PII
https://pii.wd.pncint.net/pii
https://pii.wd-qa.commloanservices.com/qa1
https://pii.wd-qa.commloanservices.com/qa2
https://pii.wd-qa.pncint.net/qa1
https://pii.wd-qa.pncint.net/qa2
https://rdt.midlandls.pncint.net/pnclms
https://rdt.midlandls-qa.pncint.net/pnclms
https://tci-pnc.pncint.net/
https://tci-pnc-qa-pncint.net/
https://tci-pnc-rnd.pncint.net/
https://tci-pnc-uat.pncint.net/
https://wlm.midlandls.pncint.net/
https://wlm.midlandls-qa.pncint.net/qa1
https://wlm.midlandls-qa.pncint.net/qa2
https://wlm-app.midlandls-qa.pncint.net/qa1-fdic
https://wlm-app.midlandls-qa.pncint.net/qa2fdic | URL Teardown | 2019-09-04T14:01:58.000Z |
|
dgfdgdf | (?=(?:....)*$) | <html>
<head>
<title>Credit Card Test</title>
</head>
<body>
<h1>Credit Card Test</h1>
<form>
<p>Please enter your credit card number:</p>
<p><input type="text" size="20" name="cardnumber"
onkeyup="validatecardnumber(this.value)"></p>
<p id="notice">(no card number entered)</p>
</form>
<script>
function validatecardnumber(cardnumber) {
// Strip spaces and dashes
cardnumber = cardnumber.replace(/[ -]/g, '');
// See if the card is valid
// The regex will capture the number in one of the capturing groups
var match = /^(?:(4[0-9]{12}(?:[0-9]{3})?)|(5[1-5][0-9]{14})|↵
(6(?:011|5[0-9]{2})[0-9]{12})|(3[47][0-9]{13})|(3(?:0[0-5]|[68][0-9])↵
[0-9]{11})|((?:2131|1800|35[0-9]{3})[0-9]{11}))$/.exec(cardnumber);
if (match) {
// List of card types, in the same order as the regex capturing groups
var types = ['Visa', 'MasterCard', 'Discover', 'American Express',
'Diners Club', 'JCB'];
// Find the capturing group that matched
// Skip the zeroth element of the match array (the overall match)
for (var i = 1; i < match.length; i++) {
if (match[i]) {
// Display the card type for that group
document.getElementById('notice').innerHTML = types[i - 1];
break;
}
}
} else {
document.getElementById('notice').innerHTML = '(invalid card number)';
}
}
</script>
</body>
</html>
| sfdgvsdgdfg | 2021-07-07T21:18:56.000Z |
^vm:\S{8}-\S{4}-\S{4}-\S{4}-\S{12}:.*$ | vm:5023b75c-aa10-6ef8-c639-e1efe80fca7a:vcsa_s4_outils
vm:523a0ca1-89d3-4046-6d6d-5445969926b5:vcsa_s4_outils
vm:523dd865-45aa-d880-4621-0d6fc3809abe:vcsa_s4_outils
vm:5001699f-d1bd-e592-a437-215fb3778655:vcsa_s4_outils
vm:5001f139-0316-db40-41ed-b740c0f87f58:vcsa_s4_outils
vm:5001d2b4-d3bc-7b77-4b4d-950bca31f221:vcsa_s4_outils
vm:50010b5e-0bfb-b87f-3c1a-75a0dbaa0ac9:vcsa_s4_outils
vm:5023e4e3-02b2-c9b4-17bb-43ad16c6f7c4:vcsa_s4_outils
vm:5023e4e3-02b2-c9b4-17bb-43ad16c6f7c4:vcsa_s4_outils
vm:500166d2-d055-9aa5-a713-33d47fa53e2b:vcsa_s4_outils
vm:502376fe-b601-6346-806a-c487048fee38:vcsa_s4_outils
vm:50018b5b-cd97-22d4-2ab6-7bf0c78c9dc6:vcsa_s4_outils
vm:5001cbab-122d-0278-eec2-710019b2a428:vcsa_s4_outils
vm:50236d7c-8675-792e-1875-641e04a7cbd6:vcsa_s4_outils
vm:5001ed33-865b-d7c9-1201-f38a9a386dbb:vcsa_s4_outils
vm:5001a47d-5e94-11e6-3fa9-5bf4908427c9:vcsa_s4_outils
vm:5023bbc5-a48e-9262-173e-248ccd987d04:vcsa_s4_outils
vm:503fe992-c690-7528-75b5-8a2c1e47c3d1:oto-vcenter-02-pr.dc.infra-grdf.com
vm:50046e04-7d48-6748-8b9e-f1cdad98be16:sv-svb-pr-vcenter-3.dc.infra-grdf.com
vm:50046e04-7d48-6748-8b9e-f1cdad98be16:sv-svb-pr-vcenter-4.dc.infra-grdf.com
vm:50324e4a-082f-7e4e-626e-69c87e65b068:oto-vcenter-02-pr.dc.infra-grdf.com
vm:501d8240-7a4c-5f62-e054-235bd06bf674:sv-svb-pr-vcenter-4.dc.infra-grdf.com
vm:503b98a3-e244-9508-59fe-cc2925b2201d:sv-svb-pr-vcenter-3.dc.infra-grdf.com
vm:5001ec2f-af14-2888-2fc6-005d6802c304:vcsa_s4_outils
vm:50017436-aa25-a2f0-b516-96eeb6e863ea:vcsa_s4_outils
vm:5001a1b0-ad7b-9e8e-f9e2-2fc9bab961d3:vcsa_s4_outils
vm:50235f15-8eb2-f721-e7a7-07d73d7989ba:vcsa_s4_outils
vm:5001e19e-e1f3-b178-1cbf-4531e34b6a6b:vcsa_s4_outils
vm:50016332-4832-e391-7acc-8aa94d3dae2a:vcsa_s4_outils
vm:50231010-ac32-c6d5-ce6e-dde3d167b018:vcsa_s4_outils
vm:50012a50-654d-7e61-669e-549a83538e52:vcsa_s4_outils
vm:5001992a-4f1f-145c-9547-ef0eccda5db2:vcsa_s4_outils
vm:5001e878-2a7d-6077-f2e4-288155e99373:vcsa_s4_outils
vm:50014bf0-b0ea-517a-67b5-fdc4e0b95f6b:vcsa_s4_outils
vm:50016583-26b6-1012-b1b1-db490f93f811:vcsa_s4_outils
vm:50236622-9b0e-1159-4522-90791e546b2d:vcsa_s4_outils
vm:5023e5c3-0816-9e21-3120-284dc5c3d093:vcsa_s4_outils
vm:502398fe-5ee4-47e2-8629-39fd5dba0dad:vcsa_s4_outils
vm:5267d7a7-5378-d247-1ed3-067a430ad6f9:vcsa_s4_outils
vm:50010f12-33db-4777-b507-9c4dfe2a1924:vcsa_s4_outils
| regexNVP | 2019-02-21T07:30:33.000Z |
|
regex to check for valid URL String.
# Accept:
1. A-z Characters.
2. Numbers
3. "-", "_", ".", "/" Characters. | ([A-z\d-\/_.]+)? | Path1/With-Char/With_Char/WithNumbers-0123456789/with.character | URL (English Version) | 2019-06-11T06:40:53.000Z |
^Nedbank: (?<type>[\w\s]+) of R(?<amt>\d+\.\d{2}) [\w\s]+ acc \*\*(?<acct>\d+). Avail bal R(?<bal>\d+\.\d{2}) at (?<time>\d{2}:\d{2}) on (?<date>\d{1,2}\w{3}\d{2})\. Ref: (?<ref>.*)$ | Nedbank: Electronic Banking EFT deposit of R8440.00 into acc **9087. Avail bal R10862.33 at 01:37 on 21Jun18. Ref: HOUGHTON GOLF CLUB
Nedbank: Electronic Banking EFT deposit of R10.00 into acc **9087. Avail bal R10872.33 at 07:50 on 21Jun18. Ref: Maureen
Nedbank: Electronic Banking payment of R8000.00 from acc **9087. Avail bal R2872.33 at 12:26 on 22Jun18. Ref: Transfer Standard B
Nedbank: Overnight Transaction payment of R4000.00 from acc **9087. Avail bal R3636.29 at 02:02 on 30Jun18. Ref: Transfer Standard B | AIR Nedbank IFTTT parsing | 2018-07-10T12:11:19.000Z |
|
This regex validates zipcode for India
**Valid examples**
- 412003
- 412 003
**Invalid examples**
- 412-003
- A412803
- 45012 | \d{3}[\ ]?\d{3} | 411009 | Zipcode Regex | 2017-11-27T09:20:27.000Z |
檢查電話號碼 - 香港 Hong Kong Phone Number Validation
[Hong Kong Marketing Consultant](http://www.hongkongmarketingconsultant.com)
[Cirrhosis Medication](http://www.cirrhosismedication.com/)
[Project Management](http://www.pmsecret.com/) | ^[2-9][0-9]{7}$ | 檢查電話號碼 - 香港 Hong Kong Phone Number Validation | 2018-06-08T07:35:31.000Z |
|
(^NHL\..*?(\.at\.|\.vs\.).*?(720p|820p).*?WEB\.(h|H)264-(SENDiT|GORE)) | NHL.2020.03.11.New.York.Rangers.vs.Colorado.Avalanche.720p.WEB.H264-SENDiT
NHL.2020.02.19.New.York.Rangers.vs.Chicago.Blackhawks.720p.WEB.h264-GORE
NHL.2019.11.20.Washington.Capitals.vs.New.York.Rangers.720p.WEB.h264-GORE-Obfuscated
NHL.2019.11.10.Florida.Panthers.vs.New.York.Rangers.720p.WEB.h264-GORE-Obfuscated
NHL.2019.11.06.Detroit.Red.Wings.at.New.York.Rangers.720p.WEB.h264-GORE-Obfuscated
| NHL | 2021-01-09T05:11:13.000Z |
|
(Mr?s?\.)[A-Za-z]*[A-Za-z-]+ | </a018620183616546 >
<src =456564565545225552222.2222222 >
558-5548-542
Youregularexpres5644-6555siondosnotmatchthesubjecstring/bin/tcsh
suyan8019@gmail.com
563822998@qq.com
suya64@yahoo.com
su_yan@wang.com
3.14152655878777&*#example
Mrs.susanwillcometo jointheparty.Mr.zhanglovehisbrother
Ms.wangsh | 名字称呼 匹配 | 2021-01-12T06:57:25.000Z |
|
Simple Positive Lookbehind - only selects what is after the @ IF what comes before IS 'jeffery'
Based on this (awesome) guys https://youtu.be/aIEjh0YsxWA?t=228 | (?<=jeffery@).+ | //captures domain
jeffery@envato.com
fred@envato.com
jeffer@gmail.com
| Positive Lookbehind (?<=jeffery@).+ | 2018-07-19T05:27:54.000Z |
Gets the subdomain in a url | \s(?<subdomain>\S+)(\.\S+){2}\b | this is a test: sub.domain.google.com | subdomain Grabber | 2018-09-09T18:44:57.000Z |
Group 1: All properties without [ ], { }
Group 2: Properties with class
Group 3: Properties with array | (?<! {5})(\".+?\": [^\\[{\n]+(?:,|\n))|(?<! {5})(".+?": {[\S\s]+?},)|(?<! {5})(".+?": \[[\S\s]+?\],) | {
"applicationId": "id651979466",
"lastestVersion": "19.10.03",
"originalUrlBottomTitle": "Nguồn <publisherName>",
"titleUpdate": "Bạn đã sử dụng phiên bản cũ!!!",
"messageUpdate": "Hãy cập nhật ứng dụng để trải nghiệm các tính năng mới, hấp dẫn.",
"linkUpdate": "https://itunes.apple.com/app/id651979466",
"introduce": {
"title": "Đối tác chính thức",
"introduceURL": "https://app.baomoi.com/publisher/list"
},
"buttonYes": "Cập nhật",
"buttonNo": "Để sau",
"statusUpdate": 0,
"enableParse": true,
"enableCrashlytics": true,
"livescoreUrl": "https://baomoi.com/soccer/app",
"commentCollapseMin": 7,
"shareZalo": true,
"loginFacebook": false,
"shareFacebook": true,
"shareFacebookMess": true,
"zal": true,
"zalInterval": 259200,
"userLoZalInterval": 86400,
"show_comment_time_limit": 86400,
"enableWebm": true,
"enableRenderAvatarUserName": true,
"avatarDefaultNames": [
"default"
],
"logArticles": 3,
"logVideos": 2,
"show_feed_article_des": false,
"inapp_noti_default_headline": "Báo Mới",
"QoSLogReqLimit": 50,
"QoSLogTimeLimit": 0,
"QoSLogTimeLimitImages": 0,
"impsLogTime": 1000,
"impsLogSize": 20,
"impsPollLogSize": 1,
"timeReloadAds": 5,
"defaultMode": 0,
"defaultModeTablet": 0,
"defaultModeIP5": 1,
"maxArticles": 1000,
"maxVideos": 200,
"maxHotComments": 3,
"timeReloadApp": 1800,
"smallPreset": "a300,w200_r4x3,a400x",
"mediumPreset": "a400,w200_r4x3,a500x",
"largePreset": "a500,w300_r4x3,a700x",
"iPadPreset": "a700,w400_r4x3,a800x",
"iPX_listArticleFontSize": "18,20,22",
"iPX_feedArticleFontSize": "18,20,22",
"iPX_listTitleFontSize": 17,
"iPX_feedTitleFontSize": 19,
"iP6_listArticleFontSize": "18,20,22",
"iP6_feedArticleFontSize": "18,20,22",
"iP6_listTitleFontSize": 18,
"iP6_feedTitleFontSize": 20,
"iP6P_listArticleFontSize": "18,20,22",
"iP6P_feedArticleFontSize": "18,20,22",
"iP6P_listTitleFontSize": 18,
"iP6P_feedTitleFontSize": 20,
"iPad_listArticleFontSize": "22,24,26",
"iPad_feedArticleFontSize": "24,26,28",
"iPad_listTitleFontSize": 24,
"iPad_feedTitleFontSize": 26,
"iP5_listArticleFontSize": "18,20,22",
"iP5_feedArticleFontSize": "20,22,24",
"iP5_listTitleFontSize": 18,
"iP5_feedTitleFontSize": 22,
"pageRequestCounter": 15,
"showCounter": true,
"showLastestNewsButton": true,
"showSlideBanner": false,
"videoFormat": 0,
"allowPreloadVideo": true,
"wifi_chunkPreloadVideo": 1,
"3g_chunkPreloadVideo": 0,
"commentHints": "Bình luận phải có ít nhất 3 chữ|Bình luận phải dùng tiếng Việt có dấu.|Bình luận không nói tục, chửi bậy.|Bình luận không chứa liên kết, quảng cáo.",
"feedName": "Theo dõi",
"feedThumbURL": [
"https://baomoi-static.zadn.vn/Uploaded/AppFeedThumb/feedthumb1.jpg",
"https://baomoi-static.zadn.vn/Uploaded/AppFeedThumb/feedthumb2.jpg",
"https://baomoi-static.zadn.vn/Uploaded/AppFeedThumb/feedthumb3.jpg"
],
"feedEmptyScreenMsg": "Theo dõi thêm nguồn \nđể có thêm tin trong danh sách",
"defaultZoneNewsTab": "c_0",
"fixedZones": "Tin nóng|c_0,Tin mới|c_-1",
"defaultZones": "Bóng đá VN|c_87,Bóng đá QT|c_86,Độc & Lạ|c_79,Tình yêu|c_139,Giải trí|c_52,Thế giới|c_119,Pháp luật|c_58,Xe 360|c_145,Công Nghệ|c_53,Ẩm thực|c_84,Làm đẹp|c_138,Sức khỏe|c_82,Du lịch|c_137",
"allZones": "Tin mới|c_-1,Bóng đá VN|c_87,Bóng đá QT|c_86,Độc & Lạ|c_79,Tình yêu|c_139,Giải trí|c_52,Thế giới|c_119,Pháp luật|c_58,Xe 360|c_145,Công Nghệ|c_53,Ẩm thực|c_84,Làm đẹp|c_138,Sức khỏe|c_82,Du lịch|c_137,Nhà đất|c_147,Thời sự|c_144,Thiết bị - Phần cứng|c_136,Kinh tế|c_45,Giáo dục|c_59,Không gian - Kiến trúc|c_150,Thời trang|c_72",
"updatedZones": "Bóng đá VN|c_87",
"excludedZones": "",
"changedZones": "k_Biển Đông|top_228,st_5|top_228",
"regions": "Hà Nội|r_Hà Nội|29,TP. HCM|r_TP. HCM|50,An Giang|r_An Giang|67,Bắc Giang|r_Bắc Giang|98,Bắc Kạn|r_Bắc Kạn|97,Bạc Liêu|r_Bạc Liêu|94,Bắc Ninh|r_Bắc Ninh|99,Bến Tre|r_Bến Tre|71,Bình Định|r_Bình Định|77,Bình Dương|r_Bình Dương|61,Bình Phước|r_Bình Phước|93,Bình Thuận|r_Bình Thuận|86,BR-VT|r_BR-VT|72,Cà Mau|r_Cà Mau|69,Cần Thơ|r_Cần Thơ|65,Cao Bằng|r_Cao Bằng|11,Đà Nẵng|r_Đà Nẵng|43,Đăk Lăk|r_Đăk Lăk|47,Đăk Nông|r_Đăk Nông|48,Điện Biên|r_Điện Biên|27,Đồng Nai|r_Đồng Nai|60,Đồng Tháp|r_Đồng Tháp|66,Gia Lai|r_Gia Lai|81,Hà Giang|r_Hà Giang|23,Hà Nam|r_Hà Nam|90,Hà Tĩnh|r_Hà Tĩnh|38,Hải Dương|r_Hải Dương|34,Hải Phòng|r_Hải Phòng|15,Hậu Giang|r_Hậu Giang|95,Hòa Bình|r_Hòa Bình|28,Hưng Yên|r_Hưng Yên|89,Khánh Hòa|r_Khánh Hòa|79,Kiên Giang|r_Kiên Giang|68,Kon Tum|r_Kon Tum|82,Lai Châu|r_Lai Châu|25,Lâm Đồng|r_Lâm Đồng|49,Lạng Sơn|r_Lạng Sơn|12,Lào Cai|r_Lào Cai|24,Long An|r_Long An|62,Nam Định|r_Nam Định|18,Nghệ An|r_Nghệ An|37,Ninh Bình|r_Ninh Bình|35,Ninh Thuận|r_Ninh Thuận|85,Phú Thọ|r_Phú Thọ|19,Phú Yên|r_Phú Yên|78,Quảng Bình|r_Quảng Bình|73,Quảng Nam|r_Quảng Nam|92,Quảng Ngãi|r_Quảng Ngãi|76,Quảng Ninh|r_Quảng Ninh|14,Quảng Trị|r_Quảng Trị|74,Sóc Trăng|r_Sóc Trăng|83,Sơn La|r_Sơn La|26,Tây Ninh|r_Tây Ninh|70,Thái Bình|r_Thái Bình|17,Thái Nguyên|r_Thái Nguyên|20,Thanh Hóa|r_Thanh Hóa|36,Tiền Giang|r_Tiền Giang|63,Trà Vinh|r_Trà Vinh|84,TT Huế|r_TT Huế|75,Tuyên Quang|r_Tuyên Quang|22,Vĩnh Long|r_Vĩnh Long|64,Vĩnh Phúc|r_Vĩnh Phúc|88,Yên Bái|r_Yên Bái|21",
"domainIcon": "https://baomoi-static.zadn.vn/icon_publishers",
"topPublishers": "VietnamNet|p_23,Tiền Phong|p_20,VTC News|p_83,Zing|p_119,VOV|p_65,VietnamPlus|p_293,PLO|p_114,Infonet|p_240",
"defaultVideoZones": [
{
"zoneName": "Mới",
"zoneId": "v_-1",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/New/v_-1_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/New/v_-1_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/New/v_-1_3_20181031.jpg"
]
},
{
"zoneName": "Ahihi",
"zoneId": "v_12",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ahihi/v_12_1_20181031_fixed.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ahihi/v_12_2_20181031_fixed.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ahihi/v_12_3_20181031_fixed.jpg"
]
},
{
"zoneName": "OMG",
"zoneId": "v_47",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/OMG/v_47_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/OMG/v_47_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/OMG/v_47_3_20181031.jpg"
]
},
{
"zoneName": "2Tek",
"zoneId": "v_43",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Hightek/v_43_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Hightek/v_43_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Hightek/v_43_3_20181031.jpg"
]
},
{
"zoneName": "Bóng đá",
"zoneId": "v_21",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/BongDa/v_21_1_20181108.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/BongDa/v_21_2_20181108.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/BongDa/v_21_3_20181108.jpg"
]
},
{
"zoneName": "Cute",
"zoneId": "v_40",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Cute/v_40_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Cute/v_40_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Cute/v_40_3_20181031.jpg"
]
},
{
"zoneName": "Showbiz",
"zoneId": "v_6",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Showbiz/v_6_1_20181226.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Showbiz/v_6_2_20181226.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Showbiz/v_6_3_20181226.jpg"
]
},
{
"zoneName": "Sống",
"zoneId": "v_37",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ngam/v_37_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ngam/v_37_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Ngam/v_37_3_20181031.jpg"
]
},
{
"zoneName": "Lifestyle",
"zoneId": "v_16",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/LifeStyle/v_16_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/LifeStyle/v_16_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/LifeStyle/v_16_3_20181031.jpg"
]
},
{
"zoneName": "News",
"zoneId": "v_1",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/News/v_1_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/News/v_1_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/News/v_1_3_20181031.jpg"
]
},
{
"zoneName": "Top",
"zoneId": "v_0",
"images": [
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Top/v_0_1_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Top/v_0_2_20181031.jpg",
"https://baomoi-static.zadn.vn/Uploaded/VideoSubTabImgs/Top/v_0_3_20181031.jpg"
]
}
],
"pubProfileTabsName": "1|Tổng hợp,9|Video,13|Poll,15|Q&A",
"logChannels": 2,
"maxChannelContents": 10,
"channelFontSize": "13,14,14",
"articleVideoMode": 1,
"articleViewMode": 1,
"tapForSoundShowingTime": 1,
"tapForSoundText": "Bấm video để mở tiếng",
"numberOfInsertedArticles": 3,
"recommendListRefreshInterval": 1800000,
"showRecommendGroup": false,
"recommendGroupName": "CÓ THỂ BẠN QUAN TÂM",
"recommendGroupBtnText": "Xem thêm",
"suggestReplyCondition": 3,
"hideArticleReasonsDefault": "Bạo lực|content,Đồi trụy|content,Phản cảm|content,Xuyên tạc|content,Kỳ thị địa phương|content",
"popupHideArticleMsg": "Vui lòng chọn các nguyên nhân khiến bạn không thích bài viết này để chúng tôi có thể đề xuất tin cho bạn tốt hơn",
"reportArticleReasons": "Tin gốc đã gỡ|original_removed,Tin gốc đã cập nhật|original_updated,Bạo lực|content,Đồi trụy|content,Phản cảm|content,Xuyên tạc|content,Kỳ thị địa phương|content,Ý kiến khác...|other",
"popupReportArticleMsg": "Vui lòng chọn các nguyên nhân bạn muốn báo cáo nội dung bài viết này",
"reportVideoReasons": "Tin gốc đã gỡ|original_removed,Tin gốc đã cập nhật|original_updated,Bạo lực|content,Đồi trụy|content,Phản cảm|content,Xuyên tạc|content,Kỳ thị địa phương|content,Ý kiến khác...|other",
"popupReportVideoMsg": "Vui lòng chọn các nguyên nhân bạn muốn báo cáo nội dung video này",
"reportCommentReasons": "Bạo lực|comment,Đồi trụy|comment,Phản cảm|comment,Xuyên tạc|comment,Kỳ thị địa phương|comment,Spam|comment,Ý kiến khác...|other",
"popupReportCommentMsg": "Vui lòng chọn các nguyên nhân báo xấu bình luận này của người dùng %s",
"stepToShowTripleCell": 0,
"appNavBarBg": "https://baomoi-static.zadn.vn/Uploaded/Bao_BD/nav_bar_bg_default@3x.png",
"nativeAdsReportMessage": "Chúng tôi sẽ cố gắng hạn chế hiển thị quảng cáo này đến bạn.",
"nativeAdsReportPopupMsg": "Vui lòng chọn các nguyên nhân báo xấu quảng cáo này",
"articleVideoAutoPlay": true,
"listVideoAutoPlay": true,
"listVideoAutoPlayNext": true,
"listTopCmtArticleCondition": "50,200,500",
"replyLoadMoreAmount": 10,
"articleTopCommentGroup": true,
"coverageEnable": true,
"articleCmtBoxHiddenEnable": true,
"articleViewCloseBtnCondition": 2,
"sectionBoxesEnable": [
0,
1,
2,
3,
4,
10,
11,
20,
30,
40
],
"content_type": {
"article": [
1
],
"video": [
9
],
"topic": [
5,
6,
7
],
"qaQuestion": [
15
],
"qaAnswer": [
16
],
"poll": [
13
],
"comment": [
18
]
},
"qaHistorySize": 40
} | Get keywords and value from json. | 2020-04-13T11:11:51.000Z |
Extract experience from job titles or job description text | (\d+[^(a-z)]*)(year|yr|month|mon) | Urgent Hot Position - IOS Mobile Apps Architect -(Contract) in Harrisburg, PA
Software Architect with Oracle Identity Manager(OIM) and Oracle Access Manager(OAM) ----------------- Denver, CO
Sr. Full Stack Java Developer with Angular 2 and Recent Healthcare exp. ------------------------- Northbrook, IL
GUIDEWIRE DEVELOPER --------------- Neenah, WI
Java Developer ----------------- Kansas City, MO
REGARDING TO THE AVAILABLE HOTLIST
Sr. Full Stack Java Developer with Angular 2/4 Exp. ------------------ Northbrook, IL
Hiring for Senior jBPM Developer
Urgent requirements Today Qlikview/QlikSense Architect, ServiceNow Consultant , ServiceNow PM/Agile, JIRA Administrator
Sr. .Net CRM Developer with Microsoft Dynamics, Boise Idaho
Java Developer in Indianapolis, IN
Senior QA Engineer
Urgent Requirement : Technical Analyst : Anchorage, AK : Locals / From Nearby location only
Software Architect with Oracle Identity Manager(OIM) and Oracle Access Manager(OAM),UNIX,Linux,Java & J2EE, HTML, web service-Locals Required Only
Need SQL Developer at Redford, MI
{Job Junction} Immediate need for Continuous Integration Engineer in Little rock, AR
Java Lead-------NYC , NY
Urgent Requirement : Word Press Developer : Camden, NJ : Locals / From Nearby location only
Avinash (java/UI full stack developer)
Urgent Req: Core java developer at New york city, NY
Urgent Need for Java developer at Jersey City, NJ
Required: QA Engineer with Java Exp at Newyork, NY
Urgent Need for Core java developer (GC, USC only) at Detroit, MI
Java Lead at NYC , NY
immediate need for multiple Requirements
Java Architect / Lead at Fort Worth, TX & Topeka, KS - Contract
Required: Java J2EE Developer with bank domain (Need Passport) at NYC, NY
Looking for Java with Spark at Jersey City , NJ
Required: Java Big data Software Engineer at San Carlos, CA (Need Locals)
Looking for Core Java Developer (Banking Domain) at Brooklyn, NY
Looking for Java Bigdata Consultant at San Carlos, CA (locals only)
Looking for Java Consultant at Warren, NJ (PP number must)
Looking for Sr. Java Architect at Melville, New York( locals only)
Urgent Need Sr .Java/ J2EE with Maven. GIT &AWS ::Rocklin, CA(Only 9+ Profiles Please)
Looking for Java J2EE Developer with Angular JS 2.0 at San Jose, CA
Urgent Need For Lead Java Developer For Burlington, MA.
Urgent: Java Developer - face to face- GC USC at Boston, MA
Looking for Java With Hadoop at Jersey City, NJ
Urgent Need for Java Developer(Contract To Hire) at Plano,TX
Req; ---------Test Engineer-----------Manassas, VA
CyberArk Architect_Richfield, MN
Urgent: Java Developer With Micro Services at Richmond VA (Need Passport Number And H1B)
Urgent Req: Java Architect at Irvine, TX
JAVA .NET QA SAP Senior W2 Resources Available for Contract | HOTLIST June 15, 2017 Siva / Palnar
Immediate needed for Java developer with Power builder // Washington,DC
RE- Urgent Hot Position - Full stack Developer with( nodejs) -(Contract) in San Francisco, CA
RE: Sr. Java Technical Architect
Immediate Opening for Java Full Stack Developer with 12+ year's of exp at Plano, TX
Urgent Requirement for Tech Support (Python, Java)
Need Local Java/ Scala Developer || New York City, NY
Java AWS at Sunnyvale, CA (Locals Only) (In Person Interview Must) - Contract
Platform Operations Engineer
Looking for Java/J2EE developer @ Bentonville, AR
Immediate Opening for Java Consultant with Healthcare at Richardson, TX (Only H1B)
Need: Java Developer - New York, NY ** EAD-GC, GC, CITIZEN, TN ** LOCALS ONLY
Urgent Requirement : ?Sr. Java Resource : ?Sunnyvale CA : LOCALS ONLY
Need: Java Developer at Ofallon;MO
Sure Shot Position : MuleSoft Lead (2 Positions) -------- 10+ years must and should
Job Title: Senior Java Developer ;Ofallon;MO
Sr. Java Developer -NYC
Sr. Java Developer -NYC
Need Mainframe Architect/Data Warehouse Technical Architect -Albany, NY(100% Interview)
Urgent contract Position for Java UI Developer- NYC,NY
Urgent Need: BizTalk Developer---New York City, NY & Hadoop Admin---Woonsocket, RI (Need passport number for h1)
Urgent: Java Developer at Piscataway,NJ (Local to NJ)
Direct End Client: State of Maryland ? Washington Suburban Sanitary Commission (WSSC) | Senior Java Developer | 12 Months | Laurel, MD | SMD_JAVA118_BR
Immediate Needed for Android Developer –Media Domain // Novi, MI
Java Developer at Rockville, MD (GC EAD, GC & Citizen)
Java Developer at Rockville, MD (GC EAD, GC & Citizen)
Java Big data Software Engineer at San Carlos, CA (Need locals) - Contract
REGARDING TO THE AVAILABLE HOTLIST
Urgent Need for Java With Kafka (Passport mandatory) at Richmond, VA
Onsite Contract Position -- Java Architect -- NJ
Immediate Opening for Java Developer with Application Security at NYC,NY
Urgent Need for Security software developer with Java / J2EE at New York, NY
Required: Java Developer with Filenet Exp at New York City NY
Java Big data Software Engineer at San Carlos, CA (Need locals) - Contract
Java Developer at Rockville, MD- Only GC & Citizen
Onsite Contract Position -- Java Architect -- NJ
Java Developer at Rockville, MD- Only GC & Citizen
Need: Technology Architect | Java at Sunnyvale CA
Urgent Req: Senior Full Stack Java Engineer at Sunnyvale, CA
Urgent Need for Core java developer at New york city, NY
Required: Java Developer at Sunnyvale, CA (Need Passport Number And H1B)
Hadoop Developer with Java Exp. ---------------- Dallas, TX
Urgent Opening for Core Java Developer(Backend Developer) || NYC NY
Immediate Joining for Sr. Salesforce Developer/BA Multiple Position
Immediate requirement for Ab Initio with AWS+ Java in Richfield - MN
Required Senior Java Developer with Web services
Required: Java devOps Consultant at Sunnyvale, CA
Need Local F2F interview Java developer in Sunnyvale, California
Urgent Position - Endeca Developer - Brampton, ON - Canada - Contract & Fulltime
Mid-level Java Developer__Need Local to West Chester, PA With USC or GC or EAD
Immediate Opening for DevOps /Java Developer at Ann Arbour, MI -- LOCALS
Urgent Req: Java With Devops Consultant at Sunnyvale, CA
Java/J2EE programming at Okemos, MI --LOCALS - Contract
DIRECT CLIENT REQUIREMENTS Java AWS Developer 3 Diff roles
(Sr java/UI full stack developer) Updated Hot List
Urgent Need for Java Developer with VXML at Alpharetta, GA
Immediate requirement for Actimize Developer in Weehawken - NJ
java developer
Urgent Req: Java Developer (GC/Citizens only) at Scottsdale, AZ
Java Consultant with Healthcare at Richardson, TX (Only H1B) - Contract
Required: Devops Engineer with Java (Need Locals) at Sunnyvale, CA
DevOps Engineer at Atlanta, GA : GC & Citizen only
DevOps Engineer at Atlanta, GA : GC & Citizen only
SAP Hybris JAVA Specialist
SAP Hybris JAVA Specialist
Lead Java developer at Scottsdale, AZ for a long Term Contract
Joshua - SOA Testing - Houston TX
Senior Java Architect at Florham Park, NJ
Contract Requirement for Java Developer (Need candidates with very good experience in web services)
URGENT NEED: IT - Technology | Digital Commerce | Oracle ATG
Immediate Opening for SDET Tester with Java and Automation Testing Exp at Deerfield, IL
Required: Java Architect with Microservices at Dallas ,TX /Atlanta , GA
Re:: Need # Java Developer # Madison, WI # 12+months # Face 2 Face ..
Looking for Sr. Java Full Stack Developer at Dallas, Fort worth, TX
Need: Java developer Cable & Media Management EXP. at Denver, CO
Sr.Java developer / Lead Java Developer at Austin TX (Locals Preferred) - Contract
Java Developer III Salt Lake City ,UT III Contract --State Of UT
Immediate Position | Data Architect/Hadoop Architect | Walnut Creek, CA
Immediate Position | Data Architect/Hadoop Architect | Walnut Creek, CA
DevOps Engineer at Atlanta, GA : GC & Citizen only (Anywhere across USA)
DevOps Engineer at Atlanta, GA : GC & Citizen only (Anywhere across USA)
Urgent Need :: Hadoop Developer
Java with Alfresco Development - (GC & US Citizen Only)- Rockville, MD
Java with Alfresco Development - (GC & US Citizen Only)- Rockville, MD
Urgent Opening - Java AWS Cloud Engineer reqd in Philadelphia, PA - Locals Only
Immediate Interview ENOVIA V6 Support, Boston
Urgent requirement for Salesforce team!!
Looking For- Data Architect
Persistent Systems: Senior Salesforce Developer, Mountain View, CA- 2 Positions
we have multiple positions DB2 SQL & Stored Procedure Developer /Business Intelligence Analyst
Urgent Need for Java developer at Sunnyvale, CA
Need: Java Developer (Need Passport) at Richmond, VA
WCS – Technical Operations Lead @ San Diego, CA :: Contract
Urgent Need for Java Developer with POJO at New York, NY
Urgent: Java Big data Software Engineer - Need locals at San Carlos, CA
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Urgent: Java | J2EE at Sunnyvale, CA
Urgent Need for Java Developer with Application Security at NYC,NY
Urgent: Java Engineer at Plano TX
Urgent: Sr. Java developer in Seattle WA
IBM Sterling commerce – Technical operations Lead @ San Diego, CA :: Contract
Looking for Ruby on Rails with Java at Milpitas, CA
Urgent: Java Lead Consultant with Pojo at New York, NY
Urgent Need for Java Consultant at San Mateo,CA
RE;MEAN Stack/.Net Developers - Ultimate Software - Ft. Lauderdale, FL(No H1)
Urgent Need for Java Engineer at ME-Maine/Augusta
RE- Urgent Hot Position - Pentaho ETL Developer Expert-(Contract) in Stamford, CT
Required: Core java developer at New york city, NY
RPA Consultant in Cary NC
Urgent Req: Java Developer at Charlotte,NC
Need Java Developer;Charlotte,NC
Immediate requirement for "(Financial Applications) Java Architect" at New York, NY - XDuce
Urgent Req: Java Developer with Filenet Exp at New York City, NY
Sr. Full Stack Java Developer (10+ years of exp)
Java Developer with 9+ year Exp. ----------------- Richfield, MN
REQ: Sr.Java Developer @ Mountain View, CA
Urgent Need for Java with Spark at Jersey city , NJ
Immediate Opening for Full stack Java engineer (PP number is must) at Sunnyvale, CA
Required: Java Web Applicaiton Developer with ADOBE DTM (Dynamic Tag Management System) at Charlotte, NC
REGARDING TO THE AVAILABLE HOTLIST
Immediate Opening for Java developer at Houston, TX
Urgent Position # MuleSoft Architect # Denver,CO # 12+ months #
Urgent Requirement : ?PeopleSoft Internet Architecture : ?Chicago , IL
Full Stack Engineer Java at Sunnyvale, CA - Contract
Required: Java Developer with Alfresco (Need local to MD ) at Rockville, MD
Need: Java Developer with Alfresco(Need Local to MD) at Rockville, MD
Title: iOS Mobile Computing Architect,Location: Harrisburg, PA
Informatica Developer position at Blue Ash, OH - USC/GC Only
Looking for Java/J2ee Developer @ Bentonville, AR
Urgent Req: Super Hot : Baking domain experience Senior Java Developer at NY
urgent Position:: Core Java Developer || jersey City, NJ
Urgent Req: Integration Java Developer at MINNEAPOLIS MN
urgent Position:: Java AEM Developer || Pittsburg, PA
Urgent: Integration Java Developer at MINNEAPOLIS MN
HIGH PRIORITY REQ Java Developer
FW: ***INFORMATICA DEVELOPER WITH JAVA****OH**CONTRACT
urgent Position:: Java AWS Developer || Frisco, TX
Java/J2ee Backend Developer at Mountain View, CA - Contract
urgent Position:: Java Developer (Elasticsearch or Neo4j) || Chicago, IL
Need: Java Developer at Commerce City, CO
Java-Elastic-Neo4j Developer in Chicago, IL
Very Urgent client need -AEM developers_West Chester, PA / Monsanto @ St. Louis, MO
Core Java-Restful-Hbase Developer in Jersey City, NJ
Need: JAVA Architect (USC/GC) - F2F at Bethpage, NY
Urgent Requirement : AEM Developer : Sunnyvale CA
Core Java Webservices Developer in Jersey City, NJ
Must be local to CO Only ! For Java UI Developer @ Louisville/Boulder/Denver, CO
WCS Consultant @ San Diego, CA :: Contract
Core java Developer
Immediate Joining Job For Lead .NET Developer (Azure & Razor framework) for Denvor, CO.
Urgent requirement on Java/J2EE Developer with cloud at Boston, MA
Need Expert Java Developer-Albany, NY (100% interview)
Multiple Roles Opening
Looking for a Java Developer: Direct End Client: State of New York: 6+ Months: Albany, NY:SNY_Java560_IK
Java Developer --------------- Cary, NC
Urgent Need # Mulesoft Developer with certification # Denver CO # 6+months
Core Java Developer @ Chicago, IL :: Contract
Looking for Java Lead Application Developer at Tampa, FL
Urgent: Baking domain experience Senior Java Developer at NY
Immediate Requirement | Java Backend Engineer | San Jose, CA
Immediate Requirement | Java Backend Engineer | San Jose, CA
Urgent Req: Java Developer-Must have experience on LoanIQ at Birmingham, Al
Senior Java Crypto (JCE) Engineer
Looking for Java Developer with Media Domain Exp at Denver CO
Looking for Sr. Java Architect at Melville, New York( Need Local)
Urgent Need for Java Develolper - Need Passport Number And H1B at Austin, TX
java developer
Immediate Opening for Mid to senior level java developer at Manhattan, NYC
regarding to available hot list
Java Big data Software Engineer - Need Locals at San Carlos, CA - Contract
Urgent: Java Lead Consultant at Milpitas, CA
Job Opportunity :: Java Developer :: Milpitas, CA 95035
Java developer with Pojo, Dozer
Need Expert Java Developer Oracle WebLogic Portal Experience-Albany, NY (100% interview)
Immediate Opportunity on Oracle CPQ Consultant, NY, 6 Months+
Immediate Opportunity on Oracle CPQ Consultant, NY, 6 Months+
Urgent Need for Java REST web services developer at Basking Ridge, NJ
Need: Core java developer at New york city, NY
Urgent: Senior Java Developer - USC GC at Salt Lake City UT
Urgent Need for Java Developer with Application Security at NYC,NY
Urgent Req: Security software developer with Java / J2EE at New York, NY
Urgent Need for MFA Java Developer at Philedelphia, PA
Urgent Req: Senior Java Application Developer at Tampa, FL
Required: Lead Java Developer at O’Fallon, MO
(Sr java/UI full stack developer) Updated Hot List
re : Project Manager/DevOps/Java Developers/Siteminders/IAM/WAS Available
Required || Full Stack Developer || Milwaukee, WI || NO JNTU Cndidates
RE- Urgent Hot Position - Software Engineer in Test -(Contract) in Boston, MA
Urgent Need :: Hadoop Developer
Java Developer with Message Broker exp in Cary, NC
Urgent Need for JAVA Programmer at Augusta, ME
Need: Java Consultant with Healthcare - Only H1B,GC at Richardson, TX
Urgent requirement for Oracle WebCenter Sites development here @St Louis, MO.
Sr. ASP.NET DEVELOPER LOCAL TO GA
Need for Sr Java Hadoop/Spark Developer
Urgent Need !! Java Architect_ Wilmington, DE_ Phone and Skype
Sr. Java Developer
Sr. Java Developer
Java Lead Developer @ OK (except H1)
Java Lead Developer @ OK (except H1)
Java API Developer
Java API Developer
Need: Java Developer at Java Developer SET (Junior and Mid-level , Need F2F)
Urgent Need: SOA developer----Chicago, IL
Immediate requirement for MDM With Core JAVA in Atlanta, GA
Immediate Opening for Java developer at Manhattan, NY (Locals Only) (In Person Interview Must)
Senior Java Developer w/ESB Development Experience 10+ years only - Denver,CO
Urgent requirement for Java developer with .Net experience !!
Role # Java Developer with ESB # Denver CO # 12+months #
Scala Developer @ North Carolina
Urgent Contract Positions Scala Developer & Docker Center Lead
Senior Application Engineer,Cambridge,MA, Must be local EAD GC, GC or Citizen
Java Back End Developer__Need Local to Seattle, WA With USC or GC or EAD GC or EAD
vasavi I found you on LinkedIn
Java Lead Developer @ OK (except H1)
Java Lead Developer @ OK (except H1)
Required: Senior Java Full Stack Engineer at Sunnyvale, CA
Position of Senior Java Developer in GA
Java Developer with Automation Exp || Only Local to PA ( Phone then Face to Face )
Required: Java with JSF exp (min 9 years) at San Diego,CA (Local to CA)
SAP PI/ABAP Programmer - Tempe,AZ
Urgent Opening - Java AWS Cloud Engineer reqd in Philadelphia, PA - Locals Only
SAP PI/ABAP Programmer - Tempe,AZ
Senior Java Developer in Irving TX
.NET Developer @ MD (Only US Citizen and Green Card)
regarding to available hot list
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
MEAN Stack/.Net Developers - Ultimate Software - Ft. Lauderdale, FL (GC EAD, GC or USC only)
Java Developer with Application Security at NYC,NY - Contract
Immediate Opening for Core Java Developer at Irving, TX (Only Locals)
Immediate Opening for Java developer at Atlanta, GA
Required: Java Developer at Sunnyvale, CA - locals only
Re: Senior Java Developer / Java Architect Resumes 15+ and 12+
Devops/Build and Release Engineer- Jersey City, NJ
REG: Sr. Java Developer @ Jersey City, NJ
Business Analyst - Teradata, Seattle, WA Only Local need to go for face to face
FULL STACK JAVA DEVELOPER-USC OR GREEN CARD
Urgent Req: Core java developer at New york city, NY
Urgent || Java AWS Developer || Portland, OR || 12+months
Urgent Requirement : AEM Developer : Sunnyvale CA
Ab-Initio + Java -----Richmond, VA
Sr. Full Stack Java Developer with Angular 2/4 Exp
Job Opportunity: Java Developer - Atlanta, GA - In person Interview needed
Sr. Full Stack Java Developer with Angular 2/4 Exp
Java Full Stack Developer __Need Urgent With USC or GC or EAD
Required || Sr. Devops Engineer || Mountain View,CA
Immediate Opening for Senior Java Developer Min 10 years at Salt Lake City UT - USC GC EADGC
Immediate Opening for Lead Java Developer with Financial exp at New Jersey city,New Jersey
Position: Sr. Full Stack Java Developer with Angular JS 2/4 Exp ( Min 10+ Years Exp )
Performance Engineer
Urgent requirement for Java Architect with Retail domain !!
Software Developer -------------- Philadelphia, PA
Business Intelligence Architect - Actimize Custom Model Implementation- Weehawken, NJ
Urgent Req: Java Lead Consultant with UI and Scrum at Chicago, IL (Only H1B,GC)
Urgent Opening for Core Java Developer(Backend Developer)
Need: Java Applications Developer at Madisonville, OH
Urgent: Java Lead Consultant with UI and Scrum (Only H1B,GC) at Chicago, IL
Urgent Req: Java with AWS Developer at Mountain View, CA (Locals only)
Java Developer with Capture Systems Exp. (Urgent Position) --------------- San Diego, CA. Pontian, MI, Plano/El Paso, TX
Java Developer_ USC/GC candidate Only_ Woonsocket, RI_ Skype
Need: Java Web Developer // no h1b at Jamesburg, NJ //face 2 face
Urgent Req: Java UI Architect at Charlotte, NC
DevOps/Systems Engineer-Ultimate Software -Ft. Lauderdale, FL-6 months-No H1-GC EAD, GC or USC only
RE: Solution Architect- Fort Worth TX
QA with Security Tester (7+ Years Exp) || Charlotte, North Carolina || Phone& Skype || Any VISA ||
Sr. Java/Spring Developer with my Direct Client in Walnut creek, CA Verizon Wireless
Urgent Position : Java UI Developer with React.js, Redux, Bootstrap.js AT San Francisco, CA
Need: Java Integration Developer at Sunnyvale, CA
Immediate Opening for Sr.Java fullstack Developer at Scottsdale, AZ (GC USC only)
Looking for Java API Consultant at Chicago, IL ( Only H1B,GC)
Backend Java Developer Opportunity for Salt Lake City, UT
Urgent Need for Java UI architect at Charlotte, NC
IVR Developer with Java at Charlotte, NC
RE: Big Data Developer-Fort Worth TX (Preferred GC or Citizens)
Java Architect 12+ Required
Looking for Sr Java Developer at Woodlawn, MD(GC Citizen face to face only)
Immediate Opening for Java Integration Developer at Sunnyvale, CA
Sr. Java Developer- Dallas,TX
Sr. Java Developer- Dallas,TX
UI/UX Developer with Microsoft Dynamics || Seattle, WA // C2C // 8+ years // Phone & Skype ||
JAVA Developer __Need Local to AGOURA HILLS, CA With USC/GC/EAD
Required: Java Web Developer // no h1b at Jamesburg, NJ // face 2 face
Need Java Architect at Louisville CT
Urgent: Java Developer at Irving ,TX
Urgent: Java with mobile development exp - GC USC at Scottsdale, AZ
(ECM Document Capture )Senior Java Developer at San Diego, CA - Contract
Need: Core Java developer - Local | GC USC at Atlanta, GA
Looking for Java Developer at Philadelphia - Pennsylvania
Immediate Opening for Java Big data Software Engineer at San Carlos, CA
Sr. Full Stack Java Developer with Angular 2,Recent Healthcare and 10+ Year exp. --------------- Northbrook, IL
Required: Java Lead with UI at Chicago, IL (Only H1B,GC)
Immediate Opening for Java Consultant with JBPM at Tampa, FL
Need for Sr Java Hadoop/Spark Developer
Looking for Java Developer at MO-Missouri/St. Louis
Required: Java Integration Developer at Sunnyvale, CA
Need Expert Java Developer Oracle WebLogic Portal Experience-Albany, NY (100% interview)
Urgent Requirement......Oracle Fusion Middleware Admin....Columbia, SC
Immediate Opening for Java developer with Sprint boot & Pojo at New York, NY
Urgent Req: Java Angular 2 Consultant W/ Node JS at Framingham, MA
Urgent Req: Java developer at Boca Raton, FL
Hiring ?Java Web Application Developer with ?Experience with Unemployment Insurance area of the State government : ?Bismarck, ND :
Looking for Java with Multithreading at Charlotte, NC
Core java developer at New york city, NY - Contract
Urgent Req: Java Developer Need Passport Number And H1B at Littleton , CO
Looking for Java Consultant at Bothwell, WA
Java Developer at Plano, TX or Richmond, VA for a long Term Contract
JAVA DEVELOPER - Immediate Hire Position
Need: Sr Java/Spring MVC Developer_ Only USC at Woodlawn, MD
Core Java Developer - USC or GC at Bellevue,WA - Contract
Urgent: Java Developer - F2F at Atlanta, GA
DevOps (Salesforce) Lead -------------- Deerfield, IL
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
JAVSCRIPT/REACTJS Developer
Solution Architect/SOA--------Miami, FL--------6+ Months Contract
Direct End Client: State of New York _ JAVA/JEE Architect_ Albany, NY, 12243_SNY_JEE596_MN
Need: App Maintenance Java Analyst at IL-Illinois/Chicago
Core Java Developer with enterprise level services Java EE including EJB ---Blades, DE
Senior DevOps Engineer_Toronto, Canada_Canadian Citizens / Open work permits
Replacement Position: Java Tech Lead @ CISCO - San Jose CA
Urgent: Sr. Java/Spring MVC Developer with Security Clearance at Baltimore, MD
Java / SAP PI - Dallas,Tx
Java / SAP PI - Dallas,Tx
Urgent Position : Java Developer with Gemfire at Iselin, NJ(South) | Edison | New Jersey,NJ
Job Opportunity for Java developer;Detroit, MI for Long Term Contract
Urgent Need For PING Federate Lead/Developer For Scottsdale, AZ.
Title: Amazon Web Services (AWS) Certified Solutions SME/ Senior Developer,Location: Reston, VA
Looking for Java/J2ee developer @ Irving TX
Looking for Sr Java Developer J2SE - F2F Must at Okemos MI
Immediate Job Opening for Lead Devops Architect @ Miami, FL Only Locals
Urgent Hire For Senior Data Engineer - Morris town, NJ
Looking for Sr. Programmer – Java at Plano, TX
Hadoop Developer with Python // Java with Salesforce (Apex) // Oracle SOA with OIPA Configurator (Insurance Domain) //
Updated Urgent Business Analyst - Teradata, Seattle, WA.
Mobile Developer - Java Applications__Need USC n GC Only
Urgent: Java UI Developer at Paramus, NJ (F2F)
Required Data Transformation Developer - Irving, TX
Looking for a Sr. Consultant with AWS, Dockers and Kafka
Senior Java Developer with GemFire
Urgent Need for Java Developer (Mid-Level) at Las Vegas , NV
Sr Java Architect || Louisville , KY
urgent Position:: ETL Talend Developer with Java Unix || Tampa, FL & Edison, NJ
Urgent Req: Java full stack developer at Bethesda, MD
Java Architect
Urgent Need for Sr. Java Developer at Plano, TX
Urgent Position :- Java Angular 2 Consultant With Node JS (12+ Months-MA)
Java Enterprise Architect in Boston, MA
Sr. DevOps Engineer/Lead Developer @ Denver, CO :: Contract
Senior Java developer at Wallstreet , NY - Contract
Looking for .NET FULL STACK DEVELOPER WITH JAVA at SFO, CA
Urgent Req: Integration Java developer - Only GC/Citizens at Redwood City CA
AEM & UI Developer (with Core Java (JDK 1.3 , 1.4,1.8) --- San Jose , CA
JAVA J2EE Developer -------- Tampa, FL--- $45hr
urgent Position:: Java Enterprise Architect || Boston, MA
Required: Core java developer at New york city, NY
Salesforce Tech Lead @ Minneapolis :: Contract
Need: Core Java Developer at Boston, MA
Sr. Java Developer with WebLogic Exp.
Required: Java developer (F2F mandatory) (insurance domain) at Lansing, MI
Required: Sr. Java Developer at Plano, TX
REGARDING TO THE AVAILABLE HOTLIST
High Java Developer with framework for Indianapolies,IN
Java Full Stack Developer W/ AWS at Pleasanton, CA - Contract
Required: Sr. Programmer – Java at Plano, TX
Urgent Need for Integration Java developer at Redwood City CA
Required: Senior Java developer at Wall street , New York
Java Developer at Plano, TX or Richmond, VA for a long Term Contract
Urgent Req: Java Developer at Las Vegas, NV
Direct Client Req : Senior Software Engineer (AWS/Node JS or JAVA)
Required: Java UI Architect at Charlotte, NC
Looking for Java Developer at Columbus, OH
Required Data Transformation Developer - Irving, TX
Urgent: Java Developer at MI-Michigan/Okemos
Urgent Position :- Java Full Stack Developer With AWS (12+ Months,CA)
Hadoop Developer @ Malvern,PA :: Contract
Urgent Need for JAVA-ATG at Alpharetta, GA
Urgent Need for Java Developer - Healthcare at Plano, TX
Urgent Need ! Java Developer_ USC or GC or EAD GC _Phone and Skype
Urgent requirement on FullStack Developer at Hudson ,OH
Java Developer with Python Experience || San Jose, CA // 6+ Months // Except OPT any VISA fine // Phone & Skype
FullStack Developers (.Net & Java) at San Francisco, CA - Contract
Need: Java Developer with DB2 and Weblogic 12 at Boca Raton, FL
Required: Java with OTM or Supply Chain at Boca Raton, FL
Urgent Required || Java Developer at Lee Summit, MO
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Urgent Req: Min 9+ years Java Groovy Developer at Richfield MN
Senior Java Developer at Okemos, MI - Contract
Java Developer-lead/architect-Local Only-Urgent requirement
Java ATG Developer with my Direct Client in Alpharetta, GA Verizon Wireless (Back Fill Position)
Required: Java developer at Jersey city, NJ (passport number is must, No OPT, Must be local to NJ
Looking for Java 8 Developer at MN
Java Developer ( Min 9+ years ) || local candidates only ( F2F )
Urgent Req: Java Developer at Houston, Texas
Immediate Opening for pl/sql java at . Irving, TX.
Need: Hadoop Developer at Boston, MA (need 10+ Years profiles, Java Background Profiles)
Urgent Need for Java developer (Passport Required) at Jersey City, NJ
Looking for Senior Java Developer at Middletown, NJ
Immediate Opening for Lead Java with Wealth /Asset /Investment banking Domain at Weehawken, NJ
Immediate Opening for Lead Java with Wealth /Asset /Investment banking Domain at Weehawken, NJ
Excellent opportunity - Lead DevOps Architect- Miramar, FL (LOCAL ONLY)
Title: Backend Big Data Developer, Location: NYC, NY
Java Developer with 2+ year Mule Exp. ---------------- Minneapolis, MN
JAVA/J2EE-Developer @ Washington DC : GC & Citizen Only : F2F Mandatory
JAVA/J2EE-Developer @ Washington DC : GC & Citizen Only : F2F Mandatory
Teamsite Developer
REGARDING TO THE AVAILABLE HOTLIST
Fullstack Developer-The Skils-(PHP OR DRUPAL, .Net/C#, Angular JS, CSS) @ MD (GC & Citizen)
Fullstack Developer-The Skils-(PHP OR DRUPAL, .Net/C#, Angular JS, CSS) @ MD (GC & Citizen)
ASP.NET DEVELOPER LOCAL TO GA-IN PERSON INTERVIEW
Sr. IVR Developer Strong JAVA at Bellevue, WA
SDET
Please add me in your distribution list & share me your C2C requirements to ajith.kumar@3sbc.com
Required Senior Java Developer with AWS experience - 100% remote
Reg- Urgent opening for Cloudera Developer @Warren, NJ
Oracle BRM Sr. Developer-------Miami, FL-------6 Months Contract
Java App Production Support, San Jose, CA
Sure Interview # Java Architect # Denver, CO # 12+months #
Sure Interview # Java Architect # Denver, CO # 12+months #
urgent position of Java Middleware::Minneapolis MN
Android Developer ------------------- Seattle, WA
Hadoop developer + java developer - Immediate Hire Position
Need Resumes: Open Contract Positions
Hot Requirement : Full Stack Developer (10+ Years -------- Local to CA
RE: Sr Developer(10+ Years)
Job Opportunity :: Core Java Developer :: Weehawken, NJ 07086
Contract Position Senior Java Developer, Pittsburgh, PA
Senior Java Developer @ Pittsburgh, PA : 10+ profiles only
Sr. Java developer / Lead Java Developer - Austin, TX.
Full Stack Java Lead-Web Based Development Application (EXCEPT H1) : Local to TX Resources Need
Full Stack Java Lead-Web Based Development Application (EXCEPT H1) : Local to TX Resources Need
RE- Urgent Hot Position - Java Developer -(Contract) in Woonsocket, RI
Sr. Java developer / Lead Java Developer - Austin, TX.
Urgent Need For IAM Architect For Denver, CO.
Urgent Need For IAM Architect For Denver, CO.
Re: JAVA .NET QA SAP Senior W2 Resources Available for Contract | HOTLIST June 26, 2017 Siva / Palnar
Oracle SOA Consultant (Insurance Domain) || 6+ Months // McKinney, TX // Phone & Skype // Any visa Except OPT
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Urgent: Core Java Developer at San Ramon,CA
Urgent Need for Java Technical Architect at Forth worth, TX (Onsite)
URGENT NEED: IT - Technical Test Lead | CRM | SFDC Force.com
REGARDING TO THE AVAILABLE HOTLIST
Need: java/j2ee developer at Michigan
DIRECT CLIENT REQ Java Developer
Java/J2EE Developer at Lansing,MI - Contract
Urgent Need for Java Developer With JBPM - Need Passport Number And H1B at Tampa, FL
Excellent opportunity - Lead DevOps Architect- Miramar, FL (LOCAL ONLY)
Looking for Java Architect at WA
Looking for Java Architect at WA
Need: Java Developer at Chicago IL (Locals only)
Java Developer with MS SQL Server Exp -------------- Salt Lake City, UT
Looking for Java lead (ecommerce domain) at Richfiel MNd
Java Developer// Contract to permanent job at Chicago, IL (60666)
Urgent: Technology Architect | Enterprise Security J2EE APIs | Java EE Security Standards: JCA, JCE, JAAS, JSSE, JGSS at Bellevue WA
Job Opportunity: Java Developer - Atlanta, GA - 12+ Months - In Person Interview - Locals Preferred
Sr. Android Software Engineer
Java Developer with Healthcare exp Needed in Eden Prairie, MN(LOCAL Only)-USC or GC Only
MOBILE JAVA DEVELOPER-LOCAL TO AL
Need: Core Java Developer at New York
Required: Java Developer with Hadoop at Whippany NJ
Required: Senior Full Stack Engineer-Java at Sunnyvale, CA
Contract to permanent Java Developer job at Chicago, IL (60666)
Java Enterprise Architect
Urgent: Healthcare Java developer at Eden Prairie, MN
Multiple opening for Java Developer - NYC,NY
Urgent Req: Java Developer (Local to NJ) at Piscataway,NJ
Need || Oracle PL/SQL Developer with Java || Irving, TX || 12+ months || Face 2 Face..
Urgent: Java Developer (USC/GC only) at Woonsocket, RI
Urgent Need for Java Big Data Consultant at Orlando, FL
Full Stack Java Developer at Parsippany, NJ - Contract
Looking for Hadoop Architect @San Jose, CA
Excellent opportunity - Sr. Java Developer - Chicago, IL - (Contract to Hire)
Urgent Need for Sr. Java Engneer at MO-Missouri/O' Fallon
Required: Big Data +Java at Wilmington, DE
Multiple requirements for Java, Full stack and UI Developer!!
MOBILE JAVA DEVELOPER
Looking for Java/J2ee developer with Mobile Development @ Bentonville AR
Android Developer (GC/US Citizen) @ Washington, DC : F2F Mandatory
Android Developer (GC/US Citizen) @ Washington, DC : F2F Mandatory
Java Developer::Indianapolis, IN::Long term
Java Developer::Indianapolis, IN::Long term
Sr. Java Developer || Pittsburg, PA || Contract position
Quick Update H1 Works Here : Android Developer @ Washington, DC : F2F is Mandatory
Java developer at Montvale NJ - Contract
urgent Req : JAVA SCRIPT DEVELOPER @ MCLEAN, VA
Need: PL/SQL JAVA at irving TX
Immediate Direct Client Requirements for Python Ansible Developer, Linux Developer, SAP SCM, SAP PP, SAP SD, SAP FICO, SAP ABAP, UI/UX Developer, IT Project Manager - Crypto Services (PKI), IT Project Manager - Crypto Services (Infra), SAP SD with Revenue Recognition (RAR), Java Developer with Scala, Web UI Engineer .
RE-Urgent Hot Position - Java Developer -(Contract) in Eden Prairi, MN
Urgent: Sr Java/Spring MVC Developer_ Only USC/ GC at Woodlawn, MD
Sr.Dot net developer--Columbus, OH III Contract
Urgent: Java Developer with Application Security at NYC,NY
urgent Position:: Java Enterprise Architect || Boston, MA
Core java developer at New york city, NY - Contract
Urgent Need for Java Software Engineer with AWS at Newton MA (F2F)
WITH LLC HOT-LIST
Java Enterprise Architect in Boston, MA - 20+ Years Exp.
Looking for Java Developer with Selenium Exp at El Segundo , CA
Hiring:: Java Enterprise Architect || Boston, MA || Contract ||
Quick Update H1 Works Here : Android Developer @ Washington, DC : F2F is Mandatory
Required: JAVA AWS DEVELOPER at Secaucus, NJ (face to face - EADGC/ GC/USC)
Multiple positions-Albany, NY (100% interview)
Senior JAVA Developer (with Virtualization + Python + Netconf/YANG) // San Jose, CA // 6 months
Core Java Developer at Eagan, MN - Contract
Required: Java Micro services Developer at San Jose, CA
Need: Java developer with E-commerce (Need Passport) at Richfield, MN
Sure Shot positions : Java Developer with Node JS and React JS and Java Backend Developer
Urgent: Java Developer with RGA at Saint Louis, Missouri
Urgent: Java developer at Chicago, IL
Java Developer || Framingham, MA
Urgent: java developer with Cerner Clinical at Malvern, Pennsylvania
Super Urgent Quality Assurance Engineer(Performance) For Washington, DC
urgent Position:: Java Enterprise Architect || Boston, MA
Looking for Java Lead Products & Platforms Engineer at Dallas, TX
Immediate Opening for Senior Java Developer - (LOCALS ONLY) at ATLANTA, GA
Immediate Opening for Java Developer with DB2 at Boca Raton, FL
FLEX DEVELOPER- URGENT REQUIREMENT
Adobe CQ/AEM Admin@Boston, MA / Marlborough, MA
URGENT NEED: IT - Technical Test Lead | CRM | SFDC Force.com
REGARDING TO THE AVAILABLE HOTLIST
Urgent: Retail domain Java Developer at Cincinnati, OH
DevOps/Jenkins/Bash - Ultimate Software - Ft. Lauderdale, FL - 6 months NO H1
Urgent requirement on Senior Java Developer at Richmond VA
Web Developer
Oracle ,Unix,Java Developer -------Woonsocket, RI
Urgent Req: Senior Full Stack Engineer - Java at Sunnyvale, CA
Need # Technical Java Developer # Ft. Collins, CO # 6+months # $30/hr C2C
Urgent Req: Senior Java Developer (Local to PA) at Wayne, PA
Required: Junior IBM API Connect Java Developer at Boston MA
Immediate Opening for Java Developer with AIX/DB2 at Salem, OR
Urgent Need for Sr. Software Engineer (Java, Sailpoint) at Pittsburg, PA
Urgent Req: Hadoop Big data developer with Java (passport number is must) at Brooklyn,NY
Required: Sr. Java Engneer(up to 10 years ) must have a lead at : MO-Missouri/O' Fallon
Immediate Opening for Java Developer with Angular Js2 at Northbrook IL
Performance Tester - Healthcare/Pharma Background - Cranston, RI
Need COBOL Developer @ MN- In person interview
Urgent Req: Java Developer - Mongo DB at MINNEAPOLIS MN
Need: Java/Big Data Developer at Brooklyn, NY
Full Stack Developer in TX (open to travel to Mexico / LATAM region) for Citi group project
Urgent: Java Developer (With Spring) at Austin, TX (Only Locals)
Senior Java Developer with Gem fire Experience----Jersey City, NJ----6+ Months Contract
Urgent Need For Data Migration Expert(Big Data/Oracle) for New Britain, CT
Urgent requirement for Core Java developer !!
REQ: Java-J2EE Developer with Node Js, HTML__ North Carolina
Urgent Need for Java bigdata consultant with AWS at Orlando, FL
Immediate Opening for Java Developer With AngularJS2 at Orlando, FL ( Need Passport Number And H1B)
Urgent Direct client Need: Sr J2ee Developer with NoSQL exp is must (Local candidates to Bay Area)
Oracle Unix Java Developer at Woonsocket, RI
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Need: UI Developer with experience on a Java stack( 9-11+Candidate resume) at King of Prussia, PA
Urgent Need For Sustenance Engineer Linux (RedHat, Debian, Ubuntu) For San Francisco, CA.
Need Urgent Senior Java Developer @Pittsburgh PA
IDENTITY and ACCESS MANAGEMENT - OIM Developer @ Scottsdale-AZ/RI :: Contract
Urgent Need for Java Developer at St. Louis, MO GC / USC only
Job Title :- ESB Fuse with Camel,Location :- Dallas, TX or Malvern, PA & Job Title :Dallas, TX or Malvern, PAJob Title:- ESB with JCab (Java CAB) Location:
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Required: Data Modeler with Java based Development at Westlake, TX
Jobs on BigData Consultant @ Orlando, FL
Urgent: Java /.Net Solutions Architects at Columbia, SC / Columbus GA
Urgent: Java UI Developer with Angularjs2 at Orlando, FL(Local to Florida)
Urgent Need For Java Architect For Wilton, NH & MN
Urgent Need for Sr. Java/Erlang Developer/Architect at O'Fallon MO (USC GC EADGC)
Urgent Req: Sr. Java Developer at Detroit Metro area (LOCALS)
Long Term - Direct Client Requirements
Urgent Req: Java Big Data consultant with expertise in AWS at Orlando, FT or Seattle, WA (Passport number is must for H1B)
Urgent Req: Java Big Data consultant with expertise in AWS at Orlando, FT or Seattle, WA (Passport number is must for H1B)
Urgent Req: SFDC LEAD/Architect with JAVA SCRIPT at San Francisco, CA
Looking for Java Full Stack with ReactJS at San Jose, CA
Sr. Big Data Developer ------San Diego,CA----reply at sudhanshu.p@nityo.com
Immediate Opening for SDP Java Component Engineer at Auburn Hills, MI
Required: Data Modeler exp with Java Development Project at Westlake, TX
Job Opportunity: Java Back-end Developer - GC / USC highly preferred - Charlotte, NC
Java Architect at Charlotte, NC
Required: Java Developer With DevOps - Need Passport Number And H1B at Sunnyvale, CA
Oracle , Unix , Java Developer at Woonsocket, RI
Java Developer in Richmond VA
ASP.NET DEVELOPER- FRONT END LOCAL TO GA
Required: Core Java Lead with IAM or EC2 at Marlborough MA
Need: SDP Java Component Engineer at Auburn Hills, MI
{Job Junction} Local Need : Lead .NET developer : Richmond, VA
Systems Engineer in Richmond VA
Java/Web developers - ISD Developers
Java/Web developers - ISD Developers
Required: Java Developer With AWS at Mountain View, CA
REQ: Sr. Java Developer @ NJ & CA
Java Architect - Dallas,Tx
Java Architect - Dallas,Tx
REGARDING TO THE AVAILABLE HOTLIST
SAP HCM ECC Functional Analyst in Phoenix, AZ
Sr Java Developer at Jersey City ,NJ - Contract
Hiring AWS Systems Engineer/ Cloud Release Engineer in Newton, MA
Need: Java Programmer at Plano, TX
Load Balancing Network Engineer in Dallas TX
Sr. Java Developer at Plano, TX - Contract
Need: Java Programmer- Looking only for 10+ Years of experience candidates only. at Plano TX
Need: Sr. Programmer - Java at Plano, TX
Required: Data Modeler with Java based Development at Westlake, TX
Urgent: QA Automation Engineer with TestNg & Java at Sunnyvale, CA (Locals Preferred)
Required: Java Developer (10 years or lead or architect) at Montvale NJ(F2F)
Need: Junior IBM API Connect Java Developers at Boston MA
Immediate Opening for Java Full Stack - F2F Must at Jersey City, NJ
Need: Java developer 10 year exp at Basking Ridge NJ
Immediate interviews with end client : Sr J2ee Developer strong on core java Skills
Urgent Req: JAVA UI Architect at Charlotte, NC
{Job Junction} Local need for .NET Lead in Richmond, VA
Urgent Need :: Hadoop Developer
Looking for Fixed Income Technology Java Developer at NJ-New Jersey/Njc
Urgent: Sr. Programmer – Java at Plano, TX
Node.js Engineer - San Jose, CA.
Looking for Java UI Developer at NYC, NY ( USC/GC ONLY)
Urgent Need for Java Developer with GWT exp at Des Monies,IA (Only EAD GC, GC or)
Immediate Opening for Sr. Java Developers at New York, NY
Urgent Need for DevOps-Salesforce for Deerfield, IL
Re: Excellent Full Time Opportunity as a Test Engineer in Austin, TX
Java Developer required in NJ
Urgent: Core java developer at New york city, NY
Java Developer with Finance Must::: Newport , CA ::: 6 Months
Urgent: Java Developer with Application Security at NYC,NY
Urgent Req: Java Developer (Local to NJ) at Piscataway,NJ
Need Websphere Message Broker-Albany, NY (100% interview)
Urgent Fulltime Position - Software Developer (Fresher or Entry Level) - Milford, OH - USC/GC Only
Urgent Need for Java Developer at Plano, TX
Urgent Need for Java/j2ee developer at Richfield MN - Need locals
Urgent: Sr. Java Programmer (Angular 2) at Plano,TX
Urgent Position :- Java Developer With Jira (12+ Months-MN)
Need: Java Developer(10+) at Boise, ID
Urgent Req: Java Developer at Boca Raton, FL (Locals Only)
Urgent Requirement for Sr. net Developer in Santa Clara, CA--- Need LOCAL
Java Spring Developer with (Airline Exp) ------Long Island, NY
Urgent Req: Java Lead with AWS at Tysons, VA
Spring Java Developer
FOX - Expert UI/CSS/JV/Angular Developer, Locals Only, In Person Interview - Remote work ok
JAVA & Ruby on Rails Developer Location: SFO ,CA
Java-J2EE with Liferay Developer in Cincinnati, OH
Urgent Req: Sr. Java Developer (F2F Interview plz share local profiles) at Austin, TX
Immediate Direct Client Requirements for QA Engineer, Engineering Project Manager.
Java with Liferay in Cincinnati OH
Required: Java Developer with Hadoop at Sunnyvale, CA
urgent Position:: Java with Liferay Developer || Cincinnati, OH
Need: Hadoop Java Developer at Rockville, MD (_F2F)
Immediate Opening for Java Developer at Saint Louis, MO (Locals Only)
Immediate Opening for Java Developer (With Automation Exp) at Fort Worth, TX
Core Java with Weblogic at Bothell, WA - Contract
Immediate Requirement | Devops/Build and release engineer (with android) | Portland, OR
Immediate Requirement | Devops/Build and release engineer (with android) | Portland, OR
Looking for Java Consultant W/ Airline at Long Island, NY
Urgent Position :- Java Consultant With Airline (12+ Months-NY)
ServiceNow Platform Developer Consultant --------------- Columbus, Ohio
Urgent Req: Java With Hadoop at Jersey City, NJ
Spring Java Developer
Title :- ESB with JCap (Java CAP),Location :- Dallas, TX or Malvern, PA
Immediate Opening for Java developer (Javascript) at phoenix,AZ
Java Developer(Insurance Domain) @ Columbus, OH or Louisville, KY (EXCEPT H1)
Immediate Opening for Java Developer (With Automation Exp.) at Fort Worth, TX
Looking for Java Developer (With Automation Exp at Fort Worth, TX
Java Developer(Insurance Domain) @ Columbus, OH or Louisville, KY (EXCEPT H1)
Spring Java Developer
Salesforce Architect with Lighting/Aura Experience------Reston, VA------6+ Months Contract
Sr. Java Developer (10 years only) at Nyc NY - Contract
Urgent Req: Java Developer with DB2 at Boca Raton, FL
Immediate Opening for Sr/Lead Java developer with production support & Weblogic exp at Bothell, WA
Immediate Opening for EAI / Java Developer (9+ Years only) at Boca Raton FL
Required: Core Java with Weblogic at Bothell, WA
Urgent: Sr. Java Developer at NY-New York/Nyc
Need Websphere Message Broker-Albany, NY (100% interview)
Immediate Opening for Sr. Java EE/Full Stack Developer at Plano, TX
Java Developer - LDAP
Technical Project Managers with Java Exp at Newyork - Contract
Java Developer - LDAP
Hadoop Developer in Irving TX
AS Discussed // Sr. SnapLogic Developer // 6+months
AS Discussed // Sr. SnapLogic Developer // 6+months
Need Sr. Java Developer with Oracle PL/SQL and OOAD experience-Albany, NY
Urgent Need for java lead || only USC AND GC at st. louis,MO
Need: Java developer with DB2 at Naperville IL
Job Desription:Direct End Client: State of New York:Java Developer with Oracle Experience:24 Months Albany, NY:SNY_ORAC580_IK
Looking for Java Developer With Video Domain Need Passport Number And H1B at Denver ,CO
URGENT NEED: IT - Technology | CRM | SFDC Force.com
Urgent Need: 1 .Net Developer and 2. Java Developer----Naperville, IL (Only GC/USC)
Looking for Java with DB2 at Naperville, IL
Need: QA Test Engineer with Selenium web driver and Java at New Jersey, NJ (Locals Only)
Immediate Opening for Java Developer at Wilmington,DE
Hiring Cloud Developer - Richmond, VA - 6+ months
Sr. Android developer - Dallas,Tx
Sr. Android developer - Dallas,Tx
Immediate requirement for "JAVA SOA Architect" at Albany, NY - XDuce
Immediate Opening for Senior Java Developer with SOA at Livermore,CA(Locals only)
Java in Memphis--No H1b please
Need Full Stack Java Script Developers - Richfield, MN
Immediate Opening for UI Dveloper(Java)e at NYC NY
See Waheed's connections, activity and experience
Urgent Requirement ll OIM Operations Engineer ll Farmington, CT ll 6+ Months Contract
Urgent Requirement ll Java Architect ll Pittsburg, PA ll 6+ Months Contract
Urgent Requirement ll Big Data Architect ll Downtown, NY ll 6-12+ Months Contract
Immediate Requirement | C++ Developer | San Jose, CA
Sr Java ATG Developer
Role: UI/UX Senior Developer
Java Automation tester with (Junit Framework & Jmeter)----Sunnyvale, CA
Urgent Req: Java Developer w/DevOps at Mount Laurel, NJ (Local Candidate)
Urgent Position :- Java Architect With Teradata (12+ Months-RI)
Sr. UI Developer || Pleasanton, CA(local only) || USC GC only
Immediate Requirement | C++ Developer | San Jose, CA
Urgent position!!! IBM Sterling OMS Consultant - San Diego, CA
!! 2 HOT Opemings!! (USC and GC only) - Java AWS Developer and Devops Engineer - VA
Urgent position!!! WCS(Websphere Commerce Server) - Technical operations Lead - San Diego,CA
Need Performance Engineer - Experience with Java , MongoDB & Jmeter
Need Performance Engineer OR Java Developer With Jmeter Experience
Requirement : UI developer Location : NJ/NY
Performance Engineer New Jersey, NJ
Senior QA Engineer
Software Architect with Oracle Identity Manager(OIM) and Oracle Access Manager(OAM),UNIX,Linux,Java & J2EE, HTML, web service-Locals Required Only
Need SQL Developer at Redford, MI
{Job Junction} Immediate need for Continuous Integration Engineer in Little rock, AR
Java Lead-------NYC , NY
Urgent Req: Core java developer at New york city, NY
Urgent Need for Java developer at Jersey City, NJ
Required: QA Engineer with Java Exp at Newyork, NY
Urgent Need for Core java developer (GC, USC only) at Detroit, MI
Java Lead at NYC , NY
Java Architect / Lead at Fort Worth, TX & Topeka, KS - Contract
Required: Java J2EE Developer with bank domain (Need Passport) at NYC, NY
Looking for Java with Spark at Jersey City , NJ
Required: Java Big data Software Engineer at San Carlos, CA (Need Locals)
Looking for Core Java Developer (Banking Domain) at Brooklyn, NY
Looking for Java Bigdata Consultant at San Carlos, CA (locals only)
Looking for Java Consultant at Warren, NJ (PP number must)
Looking for Sr. Java Architect at Melville, New York( locals only)
Looking for Java J2EE Developer with Angular JS 2.0 at San Jose, CA
Urgent: Java Developer - face to face- GC USC at Boston, MA
Looking for Java With Hadoop at Jersey City, NJ
Urgent Need for Java Developer(Contract To Hire) at Plano,TX
Urgent: Java Developer With Micro Services at Richmond VA (Need Passport Number And H1B)
Urgent Req: Java Architect at Irvine, TX
JAVA .NET QA SAP Senior W2 Resources Available for Contract | HOTLIST June 15, 2017 Siva / Palnar
RE- Urgent Hot Position - Full stack Developer with( nodejs) -(Contract) in San Francisco, CA
RE: Sr. Java Technical Architect
Immediate Opening for Java Full Stack Developer with 12+ year's of exp at Plano, TX
Urgent Requirement for Tech Support (Python, Java)
Java AWS at Sunnyvale, CA (Locals Only) (In Person Interview Must) - Contract
Platform Operations Engineer
Looking for Java/J2EE developer @ Bentonville, AR
Immediate Opening for Java Consultant with Healthcare at Richardson, TX (Only H1B)
Need: Java Developer at Ofallon;MO
Sr. Java Developer -NYC
Urgent Need: BizTalk Developer---New York City, NY & Hadoop Admin---Woonsocket, RI (Need passport number for h1)
Urgent: Java Developer at Piscataway,NJ (Local to NJ)
Java Developer at Rockville, MD (GC EAD, GC & Citizen)
Java Big data Software Engineer at San Carlos, CA (Need locals) - Contract
REGARDING TO THE AVAILABLE HOTLIST
Urgent Need for Java With Kafka (Passport mandatory) at Richmond, VA
Immediate Opening for Java Developer with Application Security at NYC,NY
Urgent Need for Security software developer with Java / J2EE at New York, NY
Required: Java Developer with Filenet Exp at New York City NY
Java Big data Software Engineer at San Carlos, CA (Need locals) - Contract
Java Developer at Rockville, MD- Only GC & Citizen
Onsite Contract Position -- Java Architect -- NJ
Need: Technology Architect | Java at Sunnyvale CA
Urgent Req: Senior Full Stack Java Engineer at Sunnyvale, CA
Urgent Need for Core java developer at New york city, NY
Required: Java Developer at Sunnyvale, CA (Need Passport Number And H1B)
Hadoop Developer with Java Exp. ---------------- Dallas, TX
Immediate requirement for Ab Initio with AWS+ Java in Richfield - MN
Required: Java devOps Consultant at Sunnyvale, CA
Need Local F2F interview Java developer in Sunnyvale, California
Urgent Position - Endeca Developer - Brampton, ON - Canada - Contract & Fulltime
Immediate Opening for DevOps /Java Developer at Ann Arbour, MI -- LOCALS
Urgent Req: Java With Devops Consultant at Sunnyvale, CA
Java/J2EE programming at Okemos, MI --LOCALS - Contract
DIRECT CLIENT REQUIREMENTS Java AWS Developer 3 Diff roles
Urgent Need for Java Developer with VXML at Alpharetta, GA
Immediate requirement for Actimize Developer in Weehawken - NJ
Urgent Req: Java Developer (GC/Citizens only) at Scottsdale, AZ
Java Consultant with Healthcare at Richardson, TX (Only H1B) - Contract
Required: Devops Engineer with Java (Need Locals) at Sunnyvale, CA
DevOps Engineer at Atlanta, GA : GC & Citizen only
SAP Hybris JAVA Specialist
SAP Hybris JAVA Specialist
Lead Java developer at Scottsdale, AZ for a long Term Contract
Joshua - SOA Testing - Houston TX
Senior Java Architect at Florham Park, NJ
Immediate Opening for SDET Tester with Java and Automation Testing Exp at Deerfield, IL
Required: Java Architect with Microservices at Dallas ,TX /Atlanta , GA
Looking for Sr. Java Full Stack Developer at Dallas, Fort worth, TX
Need: Java developer Cable & Media Management EXP. at Denver, CO
Sr.Java developer / Lead Java Developer at Austin TX (Locals Preferred) - Contract
Immediate Position | Data Architect/Hadoop Architect | Walnut Creek, CA
DevOps Engineer at Atlanta, GA : GC & Citizen only (Anywhere across USA)
Urgent Need :: Hadoop Developer
Java with Alfresco Development - (GC & US Citizen Only)- Rockville, MD
Urgent Opening - Java AWS Cloud Engineer reqd in Philadelphia, PA - Locals Only
Urgent requirement for Salesforce team!!
Looking For- Data Architect
Persistent Systems: Senior Salesforce Developer, Mountain View, CA- 2 Positions
we have multiple positions DB2 SQL & Stored Procedure Developer /Business Intelligence Analyst
Urgent Need for Java developer at Sunnyvale, CA
Need: Java Developer (Need Passport) at Richmond, VA
WCS – Technical Operations Lead @ San Diego, CA :: Contract
Urgent Need for Java Developer with POJO at New York, NY
Urgent: Java Big data Software Engineer - Need locals at San Carlos, CA
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Urgent: Java | J2EE at Sunnyvale, CA
Urgent Need for Java Developer with Application Security at NYC,NY
Urgent: Java Engineer at Plano TX
Urgent: Sr. Java developer in Seattle WA
IBM Sterling commerce – Technical operations Lead @ San Diego, CA :: Contract
Looking for Ruby on Rails with Java at Milpitas, CA
Urgent: Java Lead Consultant with Pojo at New York, NY
Urgent Need for Java Consultant at San Mateo,CA
RE;MEAN Stack/.Net Developers - Ultimate Software - Ft. Lauderdale, FL(No H1)
Urgent Need for Java Engineer at ME-Maine/Augusta
RE- Urgent Hot Position - Pentaho ETL Developer Expert-(Contract) in Stamford, CT
Required: Core java developer at New york city, NY
RPA Consultant in Cary NC
Urgent Req: Java Developer at Charlotte,NC
Need Java Developer;Charlotte,NC
Immediate requirement for "(Financial Applications) Java Architect" at New York, NY - XDuce
Urgent Req: Java Developer with Filenet Exp at New York City, NY
Sr. Full Stack Java Developer (10+ years of exp)
Java Developer with 9+ year Exp. ----------------- Richfield, MN
REQ: Sr.Java Developer @ Mountain View, CA
Urgent Need for Java with Spark at Jersey city , NJ
Immediate Opening for Full stack Java engineer (PP number is must) at Sunnyvale, CA
Required: Java Web Applicaiton Developer with ADOBE DTM (Dynamic Tag Management System) at Charlotte, NC
REGARDING TO THE AVAILABLE HOTLIST
Immediate Opening for Java developer at Houston, TX
Urgent Position # MuleSoft Architect # Denver,CO # 12+ months #
Urgent Requirement : ?PeopleSoft Internet Architecture : ?Chicago , IL
Full Stack Engineer Java at Sunnyvale, CA - Contract
Required: Java Developer with Alfresco (Need local to MD ) at Rockville, MD
Need: Java Developer with Alfresco(Need Local to MD) at Rockville, MD
Title: iOS Mobile Computing Architect,Location: Harrisburg, PA
Informatica Developer position at Blue Ash, OH - USC/GC Only
Looking for Java/J2ee Developer @ Bentonville, AR
Urgent Req: Super Hot : Baking domain experience Senior Java Developer at NY
urgent Position:: Core Java Developer || jersey City, NJ
Urgent Req: Integration Java Developer at MINNEAPOLIS MN
urgent Position:: Java AEM Developer || Pittsburg, PA
Urgent: Integration Java Developer at MINNEAPOLIS MN
HIGH PRIORITY REQ Java Developer
FW: ***INFORMATICA DEVELOPER WITH JAVA****OH**CONTRACT
urgent Position:: Java AWS Developer || Frisco, TX
Java/J2ee Backend Developer at Mountain View, CA - Contract
urgent Position:: Java Developer (Elasticsearch or Neo4j) || Chicago, IL
Need: Java Developer at Commerce City, CO
Java-Elastic-Neo4j Developer in Chicago, IL
Very Urgent client need -AEM developers_West Chester, PA / Monsanto @ St. Louis, MO
Core Java-Restful-Hbase Developer in Jersey City, NJ
Need: JAVA Architect (USC/GC) - F2F at Bethpage, NY
Urgent Requirement : AEM Developer : Sunnyvale CA
Core Java Webservices Developer in Jersey City, NJ
Must be local to CO Only ! For Java UI Developer @ Louisville/Boulder/Denver, CO
WCS Consultant @ San Diego, CA :: Contract
Core java Developer
Immediate Joining Job For Lead .NET Developer (Azure & Razor framework) for Denvor, CO.
Urgent requirement on Java/J2EE Developer with cloud at Boston, MA
Need Expert Java Developer-Albany, NY (100% interview)
Multiple Roles Opening
Looking for a Java Developer: Direct End Client: State of New York: 6+ Months: Albany, NY:SNY_Java560_IK
Java Developer --------------- Cary, NC
Urgent Need # Mulesoft Developer with certification # Denver CO # 6+months
Core Java Developer @ Chicago, IL :: Contract
Looking for Java Lead Application Developer at Tampa, FL
Urgent: Baking domain experience Senior Java Developer at NY
Immediate Requirement | Java Backend Engineer | San Jose, CA
Immediate Requirement | Java Backend Engineer | San Jose, CA
Urgent Req: Java Developer-Must have experience on LoanIQ at Birmingham, Al
Senior Java Crypto (JCE) Engineer
Looking for Java Developer with Media Domain Exp at Denver CO
Looking for Sr. Java Architect at Melville, New York( Need Local)
Urgent Need for Java Develolper - Need Passport Number And H1B at Austin, TX
java developer
Immediate Opening for Mid to senior level java developer at Manhattan, NYC
regarding to available hot list
Java Big data Software Engineer - Need Locals at San Carlos, CA - Contract
Urgent: Java Lead Consultant at Milpitas, CA
Job Opportunity :: Java Developer :: Milpitas, CA 95035
Java developer with Pojo, Dozer
Need Expert Java Developer Oracle WebLogic Portal Experience-Albany, NY (100% interview)
Immediate Opportunity on Oracle CPQ Consultant, NY, 6 Months+
Immediate Opportunity on Oracle CPQ Consultant, NY, 6 Months+
Urgent Need for Java REST web services developer at Basking Ridge, NJ
Need: Core java developer at New york city, NY
Urgent: Senior Java Developer - USC GC at Salt Lake City UT
Urgent Need for Java Developer with Application Security at NYC,NY
Urgent Req: Security software developer with Java / J2EE at New York, NY
Urgent Need for MFA Java Developer at Philedelphia, PA
Urgent Req: Senior Java Application Developer at Tampa, FL
Required: Lead Java Developer at O’Fallon, MO
(Sr java/UI full stack developer) Updated Hot List
re : Project Manager/DevOps/Java Developers/Siteminders/IAM/WAS Available
Required || Full Stack Developer || Milwaukee, WI || NO JNTU Cndidates
RE- Urgent Hot Position - Software Engineer in Test -(Contract) in Boston, MA
Urgent Need :: Hadoop Developer
Java Developer with Message Broker exp in Cary, NC
Urgent Need for JAVA Programmer at Augusta, ME
Need: Java Consultant with Healthcare - Only H1B,GC at Richardson, TX
Urgent requirement for Oracle WebCenter Sites development here @St Louis, MO.
Sr. ASP.NET DEVELOPER LOCAL TO GA
Need for Sr Java Hadoop/Spark Developer
Urgent Need !! Java Architect_ Wilmington, DE_ Phone and Skype
Sr. Java Developer
Sr. Java Developer
Java Lead Developer @ OK (except H1)
Java Lead Developer @ OK (except H1)
Java API Developer
Java API Developer
Need: Java Developer at Java Developer SET (Junior and Mid-level , Need F2F)
Urgent Need: SOA developer----Chicago, IL
Immediate requirement for MDM With Core JAVA in Atlanta, GA
Immediate Opening for Java developer at Manhattan, NY (Locals Only) (In Person Interview Must)
Senior Java Developer w/ESB Development Experience 10+ years only - Denver,CO
Urgent requirement for Java developer with .Net experience !!
Role # Java Developer with ESB # Denver CO # 12+months #
Scala Developer @ North Carolina
Urgent Contract Positions Scala Developer & Docker Center Lead
Senior Application Engineer,Cambridge,MA, Must be local EAD GC, GC or Citizen
Java Back End Developer__Need Local to Seattle, WA With USC or GC or EAD GC or EAD
vasavi I found you on LinkedIn
Java Lead Developer @ OK (except H1)
Java Lead Developer @ OK (except H1)
Required: Senior Java Full Stack Engineer at Sunnyvale, CA
Position of Senior Java Developer in GA
Java Developer with Automation Exp || Only Local to PA ( Phone then Face to Face )
Required: Java with JSF exp (min 9 years) at San Diego,CA (Local to CA)
SAP PI/ABAP Programmer - Tempe,AZ
Urgent Opening - Java AWS Cloud Engineer reqd in Philadelphia, PA - Locals Only
SAP PI/ABAP Programmer - Tempe,AZ
Senior Java Developer in Irving TX
.NET Developer @ MD (Only US Citizen and Green Card)
regarding to available hot list
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
MEAN Stack/.Net Developers - Ultimate Software - Ft. Lauderdale, FL (GC EAD, GC or USC only)
Java Developer with Application Security at NYC,NY - Contract
Immediate Opening for Core Java Developer at Irving, TX (Only Locals)
Immediate Opening for Java developer at Atlanta, GA
Required: Java Developer at Sunnyvale, CA - locals only
Re: Senior Java Developer / Java Architect Resumes 15+ and 12+
Devops/Build and Release Engineer- Jersey City, NJ
REG: Sr. Java Developer @ Jersey City, NJ
FULL STACK JAVA DEVELOPER-USC OR GREEN CARD
Urgent Req: Core java developer at New york city, NY
Urgent || Java AWS Developer || Portland, OR || 12+months
Urgent Requirement : AEM Developer : Sunnyvale CA
Ab-Initio + Java -----Richmond, VA
Sr. Full Stack Java Developer with Angular 2/4 Exp
Job Opportunity: Java Developer - Atlanta, GA - In person Interview needed
Sr. Full Stack Java Developer with Angular 2/4 Exp
Java Full Stack Developer __Need Urgent With USC or GC or EAD
Required || Sr. Devops Engineer || Mountain View,CA
Immediate Opening for Senior Java Developer Min 10 years at Salt Lake City UT - USC GC EADGC
Immediate Opening for Lead Java Developer with Financial exp at New Jersey city,New Jersey
Position: Sr. Full Stack Java Developer with Angular JS 2/4 Exp ( Min 10+ Years Exp )
Performance Engineer
Urgent requirement for Java Architect with Retail domain !!
Software Developer -------------- Philadelphia, PA
Business Intelligence Architect - Actimize Custom Model Implementation- Weehawken, NJ
Urgent Req: Java Lead Consultant with UI and Scrum at Chicago, IL (Only H1B,GC)
Urgent Opening for Core Java Developer(Backend Developer)
Need: Java Applications Developer at Madisonville, OH
Urgent: Java Lead Consultant with UI and Scrum (Only H1B,GC) at Chicago, IL
Urgent Req: Java with AWS Developer at Mountain View, CA (Locals only)
Java Developer with Capture Systems Exp. (Urgent Position) --------------- San Diego, CA. Pontian, MI, Plano/El Paso, TX
Java Developer_ USC/GC candidate Only_ Woonsocket, RI_ Skype
Need: Java Web Developer // no h1b at Jamesburg, NJ //face 2 face
Urgent Req: Java UI Architect at Charlotte, NC
DevOps/Systems Engineer-Ultimate Software -Ft. Lauderdale, FL-6 months-No H1-GC EAD, GC or USC only
RE: Solution Architect- Fort Worth TX
QA with Security Tester (7+ Years Exp) || Charlotte, North Carolina || Phone& Skype || Any VISA ||
Sr. Java/Spring Developer with my Direct Client in Walnut creek, CA Verizon Wireless
Urgent Position : Java UI Developer with React.js, Redux, Bootstrap.js AT San Francisco, CA
Need: Java Integration Developer at Sunnyvale, CA
Immediate Opening for Sr.Java fullstack Developer at Scottsdale, AZ (GC USC only)
Looking for Java API Consultant at Chicago, IL ( Only H1B,GC)
Backend Java Developer Opportunity for Salt Lake City, UT
Urgent Need for Java UI architect at Charlotte, NC
IVR Developer with Java at Charlotte, NC
RE: Big Data Developer-Fort Worth TX (Preferred GC or Citizens)
Java Architect 12+ Required
Looking for Sr Java Developer at Woodlawn, MD(GC Citizen face to face only)
Immediate Opening for Java Integration Developer at Sunnyvale, CA
Sr. Java Developer- Dallas,TX
Sr. Java Developer- Dallas,TX
UI/UX Developer with Microsoft Dynamics || Seattle, WA // C2C // 8+ years // Phone & Skype ||
JAVA Developer __Need Local to AGOURA HILLS, CA With USC/GC/EAD
Required: Java Web Developer // no h1b at Jamesburg, NJ // face 2 face
Need Java Architect at Louisville CT
Urgent: Java Developer at Irving ,TX
Urgent: Java with mobile development exp - GC USC at Scottsdale, AZ
(ECM Document Capture )Senior Java Developer at San Diego, CA - Contract
Need: Core Java developer - Local | GC USC at Atlanta, GA
Looking for Java Developer at Philadelphia - Pennsylvania
Immediate Opening for Java Big data Software Engineer at San Carlos, CA
Sr. Full Stack Java Developer with Angular 2,Recent Healthcare and 10+ Year exp. --------------- Northbrook, IL
Required: Java Lead with UI at Chicago, IL (Only H1B,GC)
Immediate Opening for Java Consultant with JBPM at Tampa, FL
Need for Sr Java Hadoop/Spark Developer
Looking for Java Developer at MO-Missouri/St. Louis
Required: Java Integration Developer at Sunnyvale, CA
Need Expert Java Developer Oracle WebLogic Portal Experience-Albany, NY (100% interview)
Urgent Requirement......Oracle Fusion Middleware Admin....Columbia, SC
Immediate Opening for Java developer with Sprint boot & Pojo at New York, NY
Urgent Req: Java Angular 2 Consultant W/ Node JS at Framingham, MA
Urgent Req: Java developer at Boca Raton, FL
Hiring ?Java Web Application Developer with ?Experience with Unemployment Insurance area of the State government : ?Bismarck, ND :
Looking for Java with Multithreading at Charlotte, NC
Core java developer at New york city, NY - Contract
Urgent Req: Java Developer Need Passport Number And H1B at Littleton , CO
Looking for Java Consultant at Bothwell, WA
Java Developer at Plano, TX or Richmond, VA for a long Term Contract
JAVA DEVELOPER - Immediate Hire Position
Need: Sr Java/Spring MVC Developer_ Only USC at Woodlawn, MD
Core Java Developer - USC or GC at Bellevue,WA - Contract
Urgent: Java Developer - F2F at Atlanta, GA
DevOps (Salesforce) Lead -------------- Deerfield, IL
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
Immediate Requirement | Java Developer | Walnut Creek, CA | 9 Positions
JAVSCRIPT/REACTJS Developer
Solution Architect/SOA--------Miami, FL--------6+ Months Contract
Direct End Client: State of New York _ JAVA/JEE Architect_ Albany, NY, 12243_SNY_JEE596_MN
Need: App Maintenance Java Analyst at IL-Illinois/Chicago
Core Java Developer with enterprise level services Java EE including EJB ---Blades, DE
Senior DevOps Engineer_Toronto, Canada_Canadian Citizens / Open work permits
Replacement Position: Java Tech Lead @ CISCO - San Jose CA
Urgent: Sr. Java/Spring MVC Developer with Security Clearance at Baltimore, MD
Java / SAP PI - Dallas,Tx
Java / SAP PI - Dallas,Tx
Urgent Position : Java Developer with Gemfire at Iselin, NJ(South) | Edison | New Jersey,NJ
Job Opportunity for Java developer;Detroit, MI for Long Term Contract
Urgent Need For PING Federate Lead/Developer For Scottsdale, AZ.
Title: Amazon Web Services (AWS) Certified Solutions SME/ Senior Developer,Location: Reston, VA
Looking for Java/J2ee developer @ Irving TX
Looking for Sr Java Developer J2SE - F2F Must at Okemos MI
Immediate Job Opening for Lead Devops Architect @ Miami, FL Only Locals
Urgent Hire For Senior Data Engineer - Morris town, NJ
Looking for Sr. Programmer – Java at Plano, TX
Hadoop Developer with Python // Java with Salesforce (Apex) // Oracle SOA with OIPA Configurator (Insurance Domain) //
Updated Urgent Business Analyst - Teradata, Seattle, WA.
Mobile Developer - Java Applications__Need USC n GC Only
Urgent: Java UI Developer at Paramus, NJ (F2F)
Required Data Transformation Developer - Irving, TX
Looking for a Sr. Consultant with AWS, Dockers and Kafka
Senior Java Developer with GemFire
Urgent Need for Java Developer (Mid-Level) at Las Vegas , NV
Sr Java Architect || Louisville , KY
urgent Position:: ETL Talend Developer with Java Unix || Tampa, FL & Edison, NJ
Urgent Req: Java full stack developer at Bethesda, MD
Java Architect
Urgent Need for Sr. Java Developer at Plano, TX
Urgent Position :- Java Angular 2 Consultant With Node JS (12+ Months-MA)
Java Enterprise Architect in Boston, MA
Sr. DevOps Engineer/Lead Developer @ Denver, CO :: Contract
Senior Java developer at Wallstreet , NY - Contract
Looking for .NET FULL STACK DEVELOPER WITH JAVA at SFO, CA
Urgent Req: Integration Java developer - Only GC/Citizens at Redwood City CA
AEM & UI Developer (with Core Java (JDK 1.3 , 1.4,1.8) --- San Jose , CA
JAVA J2EE Developer -------- Tampa, FL--- $45hr
urgent Position:: Java Enterprise Architect || Boston, MA
Immediate Interview ENOVIA V6 Support, Boston
Business Analyst - Teradata, Seattle, WA Only Local need to go for face to face
Required: Core java developer at New york city, NY
Salesforce Tech Lead @ Minneapolis :: Contract
Need: Core Java Developer at Boston, MA
Sr. Java Developer with WebLogic Exp.
Required: Java developer (F2F mandatory) (insurance domain) at Lansing, MI
Required: Sr. Java Developer at Plano, TX
REGARDING TO THE AVAILABLE HOTLIST
High Java Developer with framework for Indianapolies,IN
Java Full Stack Developer W/ AWS at Pleasanton, CA - Contract
Required: Sr. Programmer – Java at Plano, TX
Urgent Need for Integration Java developer at Redwood City CA
Required: Senior Java developer at Wall street , New York
Java Developer at Plano, TX or Richmond, VA for a long Term Contract
Urgent Req: Java Developer at Las Vegas, NV
Direct Client Req : Senior Software Engineer (AWS/Node JS or JAVA)
Required: Java UI Architect at Charlotte, NC
Looking for Java Developer at Columbus, OH
Looking for Java Developer at Columbus, OH
Required Data Transformation Developer - Irving, TX
Urgent: Java Developer at MI-Michigan/Okemos
Urgent Position :- Java Full Stack Developer With AWS (12+ Months,CA)
Hadoop Developer @ Malvern,PA :: Contract
Urgent Need for JAVA-ATG at Alpharetta, GA
Urgent Need for Java Developer - Healthcare at Plano, TX
Urgent Need ! Java Developer_ USC or GC or EAD GC _Phone and Skype
Urgent requirement on FullStack Developer at Hudson ,OH
Java Developer with Python Experience || San Jose, CA // 6+ Months // Except OPT any VISA fine // Phone & Skype
FullStack Developers (.Net & Java) at San Francisco, CA - Contract
Need: Java Developer with DB2 and Weblogic 12 at Boca Raton, FL
Required: Java with OTM or Supply Chain at Boca Raton, FL
Urgent Required || Java Developer at Lee Summit, MO
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Urgent Req: Min 9+ years Java Groovy Developer at Richfield MN
Senior Java Developer at Okemos, MI - Contract
Java Developer-lead/architect-Local Only-Urgent requirement
Java ATG Developer with my Direct Client in Alpharetta, GA Verizon Wireless (Back Fill Position)
Required: Java developer at Jersey city, NJ (passport number is must, No OPT, Must be local to NJ
Looking for Java 8 Developer at MN
Java Developer ( Min 9+ years ) || local candidates only ( F2F )
Urgent Req: Java Developer at Houston, Texas
Immediate Opening for pl/sql java at . Irving, TX.
Need: Hadoop Developer at Boston, MA (need 10+ Years profiles, Java Background Profiles)
Urgent Need for Java developer (Passport Required) at Jersey City, NJ
Looking for Senior Java Developer at Middletown, NJ
Immediate Opening for Lead Java with Wealth /Asset /Investment banking Domain at Weehawken, NJ
Immediate Opening for Lead Java with Wealth /Asset /Investment banking Domain at Weehawken, NJ
Excellent opportunity - Lead DevOps Architect- Miramar, FL (LOCAL ONLY)
Title: Backend Big Data Developer, Location: NYC, NY
Java Developer with 2+ year Mule Exp. ---------------- Minneapolis, MN
JAVA/J2EE-Developer @ Washington DC : GC & Citizen Only : F2F Mandatory
JAVA/J2EE-Developer @ Washington DC : GC & Citizen Only : F2F Mandatory
Teamsite Developer
REGARDING TO THE AVAILABLE HOTLIST
Fullstack Developer-The Skils-(PHP OR DRUPAL, .Net/C#, Angular JS, CSS) @ MD (GC & Citizen)
Fullstack Developer-The Skils-(PHP OR DRUPAL, .Net/C#, Angular JS, CSS) @ MD (GC & Citizen)
ASP.NET DEVELOPER LOCAL TO GA-IN PERSON INTERVIEW
Sr. IVR Developer Strong JAVA at Bellevue, WA
SDET
Please add me in your distribution list & share me your C2C requirements to ajith.kumar@3sbc.com
Required Senior Java Developer with AWS experience - 100% remote
Reg- Urgent opening for Cloudera Developer @Warren, NJ
Oracle BRM Sr. Developer-------Miami, FL-------6 Months Contract
Java App Production Support, San Jose, CA
Sure Interview # Java Architect # Denver, CO # 12+months #
Sure Interview # Java Architect # Denver, CO # 12+months #
urgent position of Java Middleware::Minneapolis MN
Android Developer ------------------- Seattle, WA
Hadoop developer + java developer - Immediate Hire Position
Need Resumes: Open Contract Positions
Hot Requirement : Full Stack Developer (10+ Years -------- Local to CA
RE: Sr Developer(10+ Years)
Job Opportunity :: Core Java Developer :: Weehawken, NJ 07086
Contract Position Senior Java Developer, Pittsburgh, PA
Senior Java Developer @ Pittsburgh, PA : 10+ profiles only
Sr. Java developer / Lead Java Developer - Austin, TX.
Full Stack Java Lead-Web Based Development Application (EXCEPT H1) : Local to TX Resources Need
Full Stack Java Lead-Web Based Development Application (EXCEPT H1) : Local to TX Resources Need
RE- Urgent Hot Position - Java Developer -(Contract) in Woonsocket, RI
Sr. Java developer / Lead Java Developer - Austin, TX.
Urgent Need For IAM Architect For Denver, CO.
Re: JAVA .NET QA SAP Senior W2 Resources Available for Contract | HOTLIST June 26, 2017 Siva / Palnar
Oracle SOA Consultant (Insurance Domain) || 6+ Months // McKinney, TX // Phone & Skype // Any visa Except OPT
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Urgent: Core Java Developer at San Ramon,CA
Urgent Need for Java Technical Architect at Forth worth, TX (Onsite)
URGENT NEED: IT - Technical Test Lead | CRM | SFDC Force.com
REGARDING TO THE AVAILABLE HOTLIST
Need: java/j2ee developer at Michigan
DIRECT CLIENT REQ Java Developer
Java/J2EE Developer at Lansing,MI - Contract
Urgent Need for Java Developer With JBPM - Need Passport Number And H1B at Tampa, FL
Excellent opportunity - Lead DevOps Architect- Miramar, FL (LOCAL ONLY)
Looking for Java Architect at WA
Looking for Java Architect at WA
Need: Java Developer at Chicago IL (Locals only)
Java Developer with MS SQL Server Exp -------------- Salt Lake City, UT
Looking for Java lead (ecommerce domain) at Richfiel MNd
Java Developer// Contract to permanent job at Chicago, IL (60666)
Urgent: Technology Architect | Enterprise Security J2EE APIs | Java EE Security Standards: JCA, JCE, JAAS, JSSE, JGSS at Bellevue WA
Job Opportunity: Java Developer - Atlanta, GA - 12+ Months - In Person Interview - Locals Preferred
Sr. Android Software Engineer
Java Developer with Healthcare exp Needed in Eden Prairie, MN(LOCAL Only)-USC or GC Only
MOBILE JAVA DEVELOPER-LOCAL TO AL
Need: Core Java Developer at New York
Required: Java Developer with Hadoop at Whippany NJ
Required: Senior Full Stack Engineer-Java at Sunnyvale, CA
Contract to permanent Java Developer job at Chicago, IL (60666)
Java Enterprise Architect
Urgent: Healthcare Java developer at Eden Prairie, MN
Multiple opening for Java Developer - NYC,NY
Urgent Req: Java Developer (Local to NJ) at Piscataway,NJ
Need || Oracle PL/SQL Developer with Java || Irving, TX || 12+ months || Face 2 Face..
Urgent: Java Developer (USC/GC only) at Woonsocket, RI
Urgent Need for Java Big Data Consultant at Orlando, FL
Full Stack Java Developer at Parsippany, NJ - Contract
Looking for Hadoop Architect @San Jose, CA
Excellent opportunity - Sr. Java Developer - Chicago, IL - (Contract to Hire)
Urgent Need for Sr. Java Engneer at MO-Missouri/O' Fallon
Required: Big Data +Java at Wilmington, DE
Multiple requirements for Java, Full stack and UI Developer!!
MOBILE JAVA DEVELOPER
Looking for Java/J2ee developer with Mobile Development @ Bentonville AR
Android Developer (GC/US Citizen) @ Washington, DC : F2F Mandatory
Android Developer (GC/US Citizen) @ Washington, DC : F2F Mandatory
Java Developer::Indianapolis, IN::Long term
Java Developer::Indianapolis, IN::Long term
Sr. Java Developer || Pittsburg, PA || Contract position
Quick Update H1 Works Here : Android Developer @ Washington, DC : F2F is Mandatory
Java developer at Montvale NJ - Contract
urgent Req : JAVA SCRIPT DEVELOPER @ MCLEAN, VA
Need: PL/SQL JAVA at irving TX
Immediate Direct Client Requirements for Python Ansible Developer, Linux Developer, SAP SCM, SAP PP, SAP SD, SAP FICO, SAP ABAP, UI/UX Developer, IT Project Manager - Crypto Services (PKI), IT Project Manager - Crypto Services (Infra), SAP SD with Revenue Recognition (RAR), Java Developer with Scala, Web UI Engineer .
RE-Urgent Hot Position - Java Developer -(Contract) in Eden Prairi, MN
Urgent: Sr Java/Spring MVC Developer_ Only USC/ GC at Woodlawn, MD
Sr.Dot net developer--Columbus, OH III Contract
Urgent: Java Developer with Application Security at NYC,NY
urgent Position:: Java Enterprise Architect || Boston, MA
Core java developer at New york city, NY - Contract
Urgent Need for Java Software Engineer with AWS at Newton MA (F2F)
WITH LLC HOT-LIST
Java Enterprise Architect in Boston, MA - 20+ Years Exp.
Java Enterprise Architect in Boston, MA - 20+ Years Exp.
Looking for Java Developer with Selenium Exp at El Segundo , CA
Hiring:: Java Enterprise Architect || Boston, MA || Contract ||
Quick Update H1 Works Here : Android Developer @ Washington, DC : F2F is Mandatory
Required: JAVA AWS DEVELOPER at Secaucus, NJ (face to face - EADGC/ GC/USC)
Multiple positions-Albany, NY (100% interview)
Senior JAVA Developer (with Virtualization + Python + Netconf/YANG) // San Jose, CA // 6 months
Core Java Developer at Eagan, MN - Contract
Required: Java Micro services Developer at San Jose, CA
Need: Java developer with E-commerce (Need Passport) at Richfield, MN
Sure Shot positions : Java Developer with Node JS and React JS and Java Backend Developer
Urgent: Java Developer with RGA at Saint Louis, Missouri
Urgent: Java developer at Chicago, IL
Java Developer || Framingham, MA
Urgent: java developer with Cerner Clinical at Malvern, Pennsylvania
Super Urgent Quality Assurance Engineer(Performance) For Washington, DC
urgent Position:: Java Enterprise Architect || Boston, MA
Looking for Java Lead Products & Platforms Engineer at Dallas, TX
Immediate Opening for Senior Java Developer - (LOCALS ONLY) at ATLANTA, GA
Immediate Opening for Java Developer with DB2 at Boca Raton, FL
FLEX DEVELOPER- URGENT REQUIREMENT
Adobe CQ/AEM Admin@Boston, MA / Marlborough, MA
URGENT NEED: IT - Technical Test Lead | CRM | SFDC Force.com
REGARDING TO THE AVAILABLE HOTLIST
Urgent: Retail domain Java Developer at Cincinnati, OH
DevOps/Jenkins/Bash - Ultimate Software - Ft. Lauderdale, FL - 6 months NO H1
Urgent requirement on Senior Java Developer at Richmond VA
Web Developer
Oracle ,Unix,Java Developer -------Woonsocket, RI
Urgent Req: Senior Full Stack Engineer - Java at Sunnyvale, CA
Need # Technical Java Developer # Ft. Collins, CO # 6+months # $30/hr C2C
Urgent Req: Senior Java Developer (Local to PA) at Wayne, PA
Required: Junior IBM API Connect Java Developer at Boston MA
Immediate Opening for Java Developer with AIX/DB2 at Salem, OR
Urgent Need for Sr. Software Engineer (Java, Sailpoint) at Pittsburg, PA
Urgent Req: Hadoop Big data developer with Java (passport number is must) at Brooklyn,NY
Required: Sr. Java Engneer(up to 10 years ) must have a lead at : MO-Missouri/O' Fallon
Immediate Opening for Java Developer with Angular Js2 at Northbrook IL
Performance Tester - Healthcare/Pharma Background - Cranston, RI
Need COBOL Developer @ MN- In person interview
Urgent Req: Java Developer - Mongo DB at MINNEAPOLIS MN
Need: Java/Big Data Developer at Brooklyn, NY
Full Stack Developer in TX (open to travel to Mexico / LATAM region) for Citi group project
Urgent: Java Developer (With Spring) at Austin, TX (Only Locals)
Senior Java Developer with Gem fire Experience----Jersey City, NJ----6+ Months Contract
Urgent Need For Data Migration Expert(Big Data/Oracle) for New Britain, CT
Urgent requirement for Core Java developer !!
REQ: Java-J2EE Developer with Node Js, HTML__ North Carolina
Urgent Need for Java bigdata consultant with AWS at Orlando, FL
Immediate Opening for Java Developer With AngularJS2 at Orlando, FL ( Need Passport Number And H1B)
Urgent Direct client Need: Sr J2ee Developer with NoSQL exp is must (Local candidates to Bay Area)
Oracle Unix Java Developer at Woonsocket, RI
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Need: UI Developer with experience on a Java stack( 9-11+Candidate resume) at King of Prussia, PA
Urgent Need For Sustenance Engineer Linux (RedHat, Debian, Ubuntu) For San Francisco, CA.
Need Urgent Senior Java Developer @Pittsburgh PA
IDENTITY and ACCESS MANAGEMENT - OIM Developer @ Scottsdale-AZ/RI :: Contract
Urgent Need for Java Developer at St. Louis, MO GC / USC only
Job Title :- ESB Fuse with Camel,Location :- Dallas, TX or Malvern, PA & Job Title :Dallas, TX or Malvern, PAJob Title:- ESB with JCab (Java CAB) Location:
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, Android Developer, iOS Developer, Java Developer, Full stack Java, .Net Developer, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Required: Data Modeler with Java based Development at Westlake, TX
Jobs on BigData Consultant @ Orlando, FL
Urgent: Java /.Net Solutions Architects at Columbia, SC / Columbus GA
Urgent: Java UI Developer with Angularjs2 at Orlando, FL(Local to Florida)
Urgent Need For Java Architect For Wilton, NH & MN
Urgent Need for Sr. Java/Erlang Developer/Architect at O'Fallon MO (USC GC EADGC)
Urgent Req: Sr. Java Developer at Detroit Metro area (LOCALS)
Long Term - Direct Client Requirements
Urgent Req: Java Big Data consultant with expertise in AWS at Orlando, FT or Seattle, WA (Passport number is must for H1B)
Urgent Req: Java Big Data consultant with expertise in AWS at Orlando, FT or Seattle, WA (Passport number is must for H1B)
Urgent Req: SFDC LEAD/Architect with JAVA SCRIPT at San Francisco, CA
Looking for Java Full Stack with ReactJS at San Jose, CA
Sr. Big Data Developer ------San Diego,CA----reply at sudhanshu.p@nityo.com
Immediate Opening for SDP Java Component Engineer at Auburn Hills, MI
Required: Data Modeler exp with Java Development Project at Westlake, TX
Job Opportunity: Java Back-end Developer - GC / USC highly preferred - Charlotte, NC
Java Architect at Charlotte, NC
Required: Java Developer With DevOps - Need Passport Number And H1B at Sunnyvale, CA
Oracle , Unix , Java Developer at Woonsocket, RI
Java Developer in Richmond VA
ASP.NET DEVELOPER- FRONT END LOCAL TO GA
Required: Core Java Lead with IAM or EC2 at Marlborough MA
Need: SDP Java Component Engineer at Auburn Hills, MI
{Job Junction} Local Need : Lead .NET developer : Richmond, VA
Systems Engineer in Richmond VA
Java/Web developers - ISD Developers
Java/Web developers - ISD Developers
Required: Java Developer With AWS at Mountain View, CA
REQ: Sr. Java Developer @ NJ & CA
Java Architect - Dallas,Tx
Java Architect - Dallas,Tx
REGARDING TO THE AVAILABLE HOTLIST
SAP HCM ECC Functional Analyst in Phoenix, AZ
Hiring AWS Systems Engineer/ Cloud Release Engineer in Newton, MA
Need: Java Programmer at Plano, TX
Load Balancing Network Engineer in Dallas TX
Sr. Java Developer at Plano, TX - Contract
Need: Java Programmer- Looking only for 10+ Years of experience candidates only. at Plano TX
Need: Sr. Programmer - Java at Plano, TX
Required: Data Modeler with Java based Development at Westlake, TX
Urgent: QA Automation Engineer with TestNg & Java at Sunnyvale, CA (Locals Preferred)
Required: Java Developer (10 years or lead or architect) at Montvale NJ(F2F)
Need: Junior IBM API Connect Java Developers at Boston MA
Immediate Opening for Java Full Stack - F2F Must at Jersey City, NJ
Need: Java developer 10 year exp at Basking Ridge NJ
Immediate interviews with end client : Sr J2ee Developer strong on core java Skills
Urgent Req: JAVA UI Architect at Charlotte, NC
{Job Junction} Local need for .NET Lead in Richmond, VA
Need: Hadoop Java Developer at Rockville, MD (_F2F)
Urgent Need :: Hadoop Developer
Looking for Fixed Income Technology Java Developer at NJ-New Jersey/Njc
Urgent: Sr. Programmer – Java at Plano, TX
Node.js Engineer - San Jose, CA.
Looking for Java UI Developer at NYC, NY ( USC/GC ONLY)
Urgent Need for Java Developer with GWT exp at Des Monies,IA (Only EAD GC, GC or)
Immediate Opening for Sr. Java Developers at New York, NY
Urgent Need for DevOps-Salesforce for Deerfield, IL
Re: Excellent Full Time Opportunity as a Test Engineer in Austin, TX
Java Developer required in NJ
Urgent: Core java developer at New york city, NY
Java Developer with Finance Must::: Newport , CA ::: 6 Months
Urgent: Java Developer with Application Security at NYC,NY
Urgent Req: Java Developer (Local to NJ) at Piscataway,NJ
Need Websphere Message Broker-Albany, NY (100% interview)
Urgent Fulltime Position - Software Developer (Fresher or Entry Level) - Milford, OH - USC/GC Only
Urgent Need for Java Developer at Plano, TX
Urgent Need for Java/j2ee developer at Richfield MN - Need locals
Urgent: Sr. Java Programmer (Angular 2) at Plano,TX
Urgent Position :- Java Developer With Jira (12+ Months-MN)
Need: Java Developer(10+) at Boise, ID
Urgent Req: Java Developer at Boca Raton, FL (Locals Only)
Urgent Requirement for Sr. net Developer in Santa Clara, CA--- Need LOCAL
Java Spring Developer with (Airline Exp) ------Long Island, NY
Urgent Req: Java Lead with AWS at Tysons, VA
Spring Java Developer
FOX - Expert UI/CSS/JV/Angular Developer, Locals Only, In Person Interview - Remote work ok
JAVA & Ruby on Rails Developer Location: SFO ,CA
Java-J2EE with Liferay Developer in Cincinnati, OH
Urgent Req: Sr. Java Developer (F2F Interview plz share local profiles) at Austin, TX
Immediate Direct Client Requirements for QA Engineer, Engineering Project Manager.
Java with Liferay in Cincinnati OH
Required: Java Developer with Hadoop at Sunnyvale, CA
urgent Position:: Java with Liferay Developer || Cincinnati, OH
Sr Java Developer at Jersey City ,NJ - Contract
Immediate Opening for Java Developer at Saint Louis, MO (Locals Only)
Immediate Opening for Java Developer (With Automation Exp) at Fort Worth, TX
Core Java with Weblogic at Bothell, WA - Contract
Immediate Requirement | Devops/Build and release engineer (with android) | Portland, OR
Immediate Requirement | Devops/Build and release engineer (with android) | Portland, OR
Looking for Java Consultant W/ Airline at Long Island, NY
Urgent Position :- Java Consultant With Airline (12+ Months-NY)
ServiceNow Platform Developer Consultant --------------- Columbus, Ohio
Urgent Req: Java With Hadoop at Jersey City, NJ
Spring Java Developer
Title :- ESB with JCap (Java CAP),Location :- Dallas, TX or Malvern, PA
Immediate Opening for Java developer (Javascript) at phoenix,AZ
Java Developer(Insurance Domain) @ Columbus, OH or Louisville, KY (EXCEPT H1)
Immediate Opening for Java Developer (With Automation Exp.) at Fort Worth, TX
Looking for Java Developer (With Automation Exp at Fort Worth, TX
Java Developer(Insurance Domain) @ Columbus, OH or Louisville, KY (EXCEPT H1)
Spring Java Developer
Salesforce Architect with Lighting/Aura Experience------Reston, VA------6+ Months Contract
Sr. Java Developer (10 years only) at Nyc NY - Contract
Urgent Req: Java Developer with DB2 at Boca Raton, FL
Immediate Opening for Sr/Lead Java developer with production support & Weblogic exp at Bothell, WA
Immediate Opening for EAI / Java Developer (9+ Years only) at Boca Raton FL
Required: Core Java with Weblogic at Bothell, WA
Urgent: Sr. Java Developer at NY-New York/Nyc
Need Websphere Message Broker-Albany, NY (100% interview)
Immediate Opening for Sr. Java EE/Full Stack Developer at Plano, TX
Java Developer - LDAP
Technical Project Managers with Java Exp at Newyork - Contract
Java Developer - LDAP
Hadoop Developer in Irving TX
AS Discussed // Sr. SnapLogic Developer // 6+months
AS Discussed // Sr. SnapLogic Developer // 6+months
Need Sr. Java Developer with Oracle PL/SQL and OOAD experience-Albany, NY
Urgent Need for java lead || only USC AND GC at st. louis,MO
Need: Java developer with DB2 at Naperville IL
Job Desription:Direct End Client: State of New York:Java Developer with Oracle Experience:24 Months Albany, NY:SNY_ORAC580_IK
Looking for Java Developer With Video Domain Need Passport Number And H1B at Denver ,CO
URGENT NEED: IT - Technology | CRM | SFDC Force.com
Urgent Need: 1 .Net Developer and 2. Java Developer----Naperville, IL (Only GC/USC)
Looking for Java with DB2 at Naperville, IL
Need: QA Test Engineer with Selenium web driver and Java at New Jersey, NJ (Locals Only)
Immediate Opening for Java Developer at Wilmington,DE
Hiring Cloud Developer - Richmond, VA - 6+ months
Sr. Android developer - Dallas,Tx
Sr. Android developer - Dallas,Tx
Immediate requirement for "JAVA SOA Architect" at Albany, NY - XDuce
Immediate Opening for Senior Java Developer with SOA at Livermore,CA(Locals only)
Java in Memphis--No H1b please
Need Full Stack Java Script Developers - Richfield, MN
Immediate Opening for UI Dveloper(Java)e at NYC NY
See Waheed's connections, activity and experience
Urgent Requirement ll OIM Operations Engineer ll Farmington, CT ll 6+ Months Contract
Urgent Requirement ll Java Architect ll Pittsburg, PA ll 6+ Months Contract
Urgent Requirement ll Big Data Architect ll Downtown, NY ll 6-12+ Months Contract
Looking for Java Big Data consultant with expertise in AWS at Orlando, FL
Java Developer with LDAP Exp. ------------------- Manssas, VA
regarding to the available hotlist
JAVA Ecommerce Lead // Carlsbad, CA // 6 months
Title:- Backend Big Data Developer, Location:- NYC, NY
Immediate Opening for Java Developer with Spring Security , OAuth at Philadelphia PA .
Urgent Need Java Architect :: Englewood - Colorado : Long Term Contract
java developer with Mobile with LInkedin at Lexington, MA - Contract
Need Senior Android Developer@ Addison, TX-9+years of exp.,
Java/J2EE Developer with Fedex Client Exp. -------------------- Memphis, TN
Contract - Java Developer - Troy, MI
Java Middleware Developer
Java Developer || Richmond, VA
Urgent requirement || Java Developer, Richmond, VA
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Immediate Requirement | Senior Java Developer (10+ year consultant only) | Walnut Creek, CA | 9 Positions
Urgent Requirement || Java Developer || Richmond, VA
Urgent: Java with Supply Chain (DB2, Stored Procedures, SQL at Boca Raton, FL
Immediate Requirement | Senior Devops Engineer (15 year exp) | | Walnut Creek, CA
Immediate Requirement | Senior Devops Engineer (15 year exp) | | Walnut Creek, CA
Hiring Sr. DevOps Engineer with GoLang and GoCD Experience !!!!
Need COBOL Developer @ MN- In person interview
Need SOA Administrator / Websphere MQ, Message Broker-Albany, NY
Java Developer (With CI & CD Tools)---------Salt Lake City, UT---at $40hr
Immediate Opening for Java Developer at Neperville, IL
Please add jay@versaa.com to your Mailing list (WORKDAY Consultants available).
Re: Excellent Opportunity as a Java Developer in Austin, TX
Urgent Req : Java/J2EE/Microservices @ MCLEAN, VA
Sr. Java Developer at Dallas, TX - Contract
Need SOA Administrator / Websphere MQ, Message Broker-Albany, NY
UPDATED AVCO CONSULTING HOTLIST
Sr.Android devlpr - Dallas,Tx
Sr.Android devlpr - Dallas,Tx
Need: Application Architect (Java) at Rolling Meadows, IL
Sr Java Developer
Senior .NET Web Developer with Selenium & Automation Experience in Richmond, VA ( Need Locals with 9 yrs experience & In-Person Interview)
Position: Java Integrators/Developers Location: San Antonio, Texas
No H1B and OPT.. For Java Integrators/Developers @ San Antonio, Texas
Opening for Java Developer @ Basking Ridge, NJ
Hiring Java Architect : Miami, FL
{Job Junction} Updated Hotlist - Java & .Net & QA & BA & ETL Developer
Job Desription:Direct End Client: State of New York:Java Developer with WMB/IIB Experience :24 Months Albany, NY:SNY_Java626_IK
DevOps Architect // Portland, OR // 6 Months
Required || Build & Development Specialist || Melville, NY || No H1B please
Java Developer with Agile experience -------Bethlehem, PA
Onbase Developer/Lead- (Java+ Web API Design+ Spring based skills) -- Except H1
Onbase Developer/Lead- (Java+ Web API Design+ Spring based skills) -- Except H1
Required: UI Developer with experience on a Java stack at King of Prussia, PA (Only for Locals & 9-10 + years mandatory)
RE : Updated Hot list
Need API Gateway Developer at Reston, VA
Java API developer // Austin, TX // 6 months
Urgent Position :- Java Developer With Agile (12+ Months-MN) Locals Only..
Requirement of QE Automation Engineer- Austin, TX
Re: Requirement of QE Automation Engineer- Austin, TX
Urgent Need !! Java Developer _Rancho Cordova, CA _ USC/GC _ Skype
Urgent Requirement ll Sr / Lead Oracle EBS developer ll NYC, NY ll 6+ Months Contract
Streamserve developer --------------- Valley Forge, PA (Remote Position)
Urgent Need For .Net Developer (C#/TFS) for Jacksonville, FL.
Urgent Need For Build/Release engineering For San Francisco, CA
Java Developer(Rate $40hr on C2C) at Seattle, WA
JOB:Java Developer//Chicago, IL (60603)//Locals Only
JOB:Java Developer//Chicago, IL (60603)//Locals Only
Need: Sr Java Developer (Need Locals) at Sunnyvale, CA
Urgent: Java Developer / Lead at Richfield, MN
Need local || Selenium Tester at Boston, MA for a long Term Contract
Data Scientist Engineer in Warren NJ
REGARDING TO THE AVAILABLE HOTLIST
Database Architect and Performance Leader with Cloud Exp. --------------- Manassas, VA
Java Spring Front End Architect - MA
Need: Java with UI & Angular JS,Java with UNIX environment at Malven, PA
Need: JAVA DEVELOPMENT LEAD/ARCHITECT - MCLEAN, VA ** GC-EAD, GC, CITIZEN, TN **
Looking for java developer at washington,dc (local)
Senior Java Developer in Alpharetta GA
Urgent Req: "Java Full stack devloper" at MD
Urgent: Java Developer (F2F) at Boston, MA or Jersey City, NJ
Java Developer (KYC/Compliance) at NYC, NY - Contract
Java Developer with Financial Service Exp. -------------- Houston, TX
Urgent Req: Java Developer at Jersey City, NJ (Only GC, Citizens)
Java Developer positions for - Boston, MA or Jersey City, NJ
Java Developer positions for - Boston, MA or Jersey City, NJ
Java Dev with QA Exp at Portland/OR - Contract
Hot List - Sharepoint developer, Linux Admin, Business Analyst, AWS Engineer, Cognos Developer, iOS Developer, Java Developer, Full stack Java, SQLBI/PowerBI, SQLBI/Tableau, DevOps
Need: Java Developer at Chicago, IL
Urgent Need for Java Developer at Jersey City, NJ (F2F)
{Job Junction} Immediate need : Software system admin : Atlanta, GA
Looking for Sr. Java Developer at NYC, NY
Immediate Direct Client Requirements for iOS Engineer/Swift expertise, Engineering Project Manager,Python Developer with Ansible exp, Java Developer with Scala, SAP FICO .
Direct End Client: State of New York : Java Developer : 24 Months : Albany, NY : SNY_JAVA639_AV
Senior Java Developer Local to NY
Need Oracle Fusion Middleware Administrator-Albany, NY(100% interview)
JAVA/J2EE Developer at McLean, VA (Need USC, GC Only) - Contract
Sr. Java developer,NJ ---only H4 EAD,GC ,US Citizen- No OPT
immediate need for multiple Requirements
Multiple REK for Java Developer @ NYC
Immediate interviews with end client : Core Java developer (local candidates to Bay Area CA only)
Java | Java Persistence API
Java API Developer // Austin, TX // 6 Months
Urgent Req: Java Developer at Jersey City, NJ (F2F)
Opening for Senior level Java developer @ Manhattan, NY
Require || Sr. Devops Lead || Nashville, TN || H1B with Passport number
Urgent: Java Developer at Mason, OH
Looking for Need Java Solution Architect at WA at Bellevue, WA
Urgent Need for Java Full Stack Developer with Notification Services, AWS-SNS at Pleasanton, CA
Informatica PIM Developer with MDM ::: Charlotte, NC ::: Long Term
Mobile (iOS / android ) Developer Job Location: Chicago , IL Job Duration: 6+ Months contract
Big Data Developer(10+ Years)
Urgent Need for Full Stack Java Developer at NJ
Job Title : Mobile (iOS / android ) Developer Job Location: Chicago , IL Job Duration: 6+ Months contract EXP : 9 + Years
Data Migration Consultant - Hercules, CA - JC #-->525217
Urgent Req: Java Developer – Back End at San Jose CA
Required: Application Architect (Java) at Rolling Meadows, IL
Immediately needed: Java Developer: Chicago,IL
Tomorrow Interview ll Java developer ll NYC, NY ll 6+ Months Contract
Need Performance Testing Engineer at Bentonville, AR
Urgent Need for Java Architect at Louisville, Kentucky
Need: Sr. Java Developer at Dallas, TX
Urgent Req: Java Developer at San Diego, CA
Java developer
Looking for Java Lead with Spring, Micro services and AWS at Dallas, TX
Urgent: Java Micro services Architect at Walnut Creek, CA
Urgent: Java Architect W/ Teradata at Woonsocket, RI
Fullstack Java Developer at Herndon, VA for a longterm Contract
Immediate Opening for Java Developer / Lead at Richfield, MN
Looking for Java/Microservices Developer at Beaverton, Oregon
Re: Excellent Full Time Opportunity as a Java Developer in Austin, TX
Java Web Services-REST
Urgent Requirement for Web Automation Developer -(Selenium/Java) in palo Alto, CA
Urgent Need for Java/Portal Developer at Melville, NY (Need Local)
Urgent Position :- Java Architect Wtih Teradata (12+ Months-RI)
Need: Senior Java developer at NYC, NY (must have recent financial experience)(inperson)
SDETS Consultant// Software Development Engineer In TesT
Hadoop Developer ::: Pleasanton, CA ::: Long Term
Urgent Need for Senior Java Developer at Okemos, MI --- LOCALS
Opening For Developer (Splunk & Web Services) @ San Diego, CA :: Contract
REGARDING TO THE AVAILABLE HOTLIST
Urgent Req: Sr. Java Developer at Weehawken, NJ
Java/Portal Developer
| Extract Experience | 2017-07-15T21:46:03.000Z |
Vienas skaitmuo (nuo 3), du skaitmenys (iki 69)
pvz.:
3
69 | ^([3-9]|[1-6][0-9])$ | Age | 2020-06-21T06:35:19.000Z |
|
Request:
get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL:
Group 1: language (which becomes QS)
Group 2: second part of the URL to be maintained
Group 3: empty
Group 4: Fragment
Group 5: Question Mark to be removed
Group 6: Query strings which needs to be maintained
Example:
/en-US/cms/api/preview/pippo/paperino/pluto/DePaperoni/paperoga/#user=Artibani?qui=qua&quo=qui&cap-paperopoli=123
Transformation:
/preview/$2?lang=$1&$4
Output:
/preview/pippo/paperino/pluto/DePaperoni/paperoga/#user=Artibani?lang=en-US&qui=qua&quo=qui&cap-paperopoli=123 | ^\/([a-zA-Z]{2}-[a-zA-Z]{2})\/cms\/api\/preview([a-zA-Z0-9-_=\/]*)(.*?)(?(3)([a-zA-Z0-9-_=&#]*)|)(?(3)([?]*)|)(?(3)([a-zA-Z0-9-_=&]*)|)$ | /en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia#user=Artibani?qui=qua&quo=qui
/en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia/#user=Artibani?qui=qua&quo=qui&cap_paperopoli=123
/en-US/cms/api/preview/pippo/paperino/pluto/DePaperoni=ricco/paperoga?qui=qua&quo=qui&cap-paperopoli=12345
/en-US/cms/api/preview/pippo/pluto23?qua=qui
/en-US/cms/api/preview/pippo-clarabella/EN-us/123???
/en-US/cms/api/preview/pippo/pluto-orazio?
/en-US/cms/api/preview/pippo/pico-archimede/
/en-US/cms/api/preview/pippo/pico/archimede
/en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia#user=Faraci
/en-US/cms/api/preview/pippo/paperino/pluto/minni/amelia/#user=Faraci
/en-US/cms/api/preview
/en-US/cms/api/preview/
/en-US/cms/api/preview?
/en-US/cms/api/preview/?
/en-US/cms/api/preview#user=Artibani?qui=qua&quo=qui
/en-US/cms/api/preview/#user=Artibani?qui=qua&quo=qui
/en-US/cms/api/preview#user=Faraci
/en-US/cms/api/preview/#user=Faraci
/en-US/cms/api/preview?#user=Faraci
/en-US/cms/api/preview/?#user=Faraci
Output for Nginx:
/preview/$2$4?lang=$1&$6 | Regex for Nginx Ingress (Preview API) | 2019-04-08T13:02:44.000Z |
((\r?\n){2}|^)([^\r\n]*\|[^\r\n]*(\r?\n)?)+(?=(\r?\n){2}|$) |
item | test
------|:-----:
test2 | lol
blannlalbablabla
item | test
------|:-----:
test2 | lol
test | foo
bla | yo
jljhkjgkgkj | Extract markdown table from a markdown string | 2018-11-21T08:49:22.000Z |
|
Regex for parsing fswatch event | ^([\S+]{3}\s+[\S+]{3}\s+[\d+]{2}\s+[\d+]{2}:[\d+]{2}:{0,2}:[\d+]{2}:{0,2}\s+[\d+]{0,4})\s+(\/[\S+]*)\s+([\S+*\s+]*) | Mon Dec 31 01:51:15 2018 /Users/fractal/Developer/Projects/wiki/app/User.php Renamed OwnerModified IsFile | FSWatch Regex | 2018-12-30T23:59:28.000Z |
(?:^|[\W])(@\w{1,20})(?:$|[\W]) | @ih knkl @gs fsdf@ijkjdsfkl "@_dsfkoj" @sdkj-s @ℍ𝕦𝕘𝕠𝕄𝕠𝕤𝕙 s @ljbhdkj_sa3 wefd s|jhh "@nksdm" hugo@mis.com @dsf
@𝕘𝕠𝕄𝕠𝕤𝕙 dfs @! @fdsdfasdfsdfsdfsdfsdfs @last @k @jj. @sdf.sd | Regex for mentions @username like twitter | 2019-01-18T18:32:44.000Z |
|
Doesn't match tabs or spaces | ^\s*$ |
g
g
bg
g
g | match empty line in multiline mode | 2019-03-07T09:42:16.000Z |
(c:\\program files \(x86\)\\microsoft visual studio\\\d{4}\\enterprise\\msbuild\\\d{2}\.\d{1}\\bin) | C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\ | VS Enterprise | 2019-06-13T14:56:12.000Z |
|
(.+) | 2017-07-20 14:38:24 | Пример | 2017-11-17T13:17:04.000Z |
|
"text"\s*:\s*"Message Id:\s*(?P<messageId>[^ ]+)\s*:\s*(?P<message>INT(?P<INT>[^ ]+)[^,]+),\s*source user | {"source_system":"SDH","text":"Message Id: bab49ee0-afa7-11ea-811c-06d9f6b1a1c8 : INT89 API call made at timestamp : 2020-06-16T08:02:31.504 , source user: David, source system: SDH"}
| Campegini | 2020-06-17T14:12:02.000Z |
|
[0-9]{1,3}(\.[0-9]{3})*(,[0-9]{1,2})? | Regex für Betragstester | 2019-04-12T07:34:24.000Z |
||
Some invalid dates are matched. For those, add control using java when parsed if number is greater than limit. | [0-9]{2}\/[0-9]{2}\/[0-9]{4} | Valid dates:
01/04/2020
20/01/2019
25/12/1950
30/07/2021
31/08/1919
01/01/1729
10/05/2000
15/10/2049
Invalid dates:
001/04/1900
01/004/1900
90/04/1900
33/04/1900
01/13/1900
01/04/19000
00/04/1900
01/00/1900
1/4/00
1/04/1900
10/4/1900
10/04/00
///
/04/1900
01//1900
01/04/
01/04/1900
This is the date: 01/04/1900
01.04.1900
01-04-1900
| Date parser | 2021-05-07T12:38:13.000Z |
^(\w){6,20}$ | dddddd | 校验密码:只能输入6-20个字母、数字、下划线 | 2018-06-07T02:28:54.000Z |
|
Parse Task Titles and capture results/output of each task | TASK\s\[(?P<task_name>[A-Za-z0-9_ -]+)\]\s\*+\n(?P<host_result_block>.*?((?=^TASK\s)|(?=^PLAY\sRECAP))) | PLAY [Linux Hostname] **********************************************************
TASK [Gathering Facts] *********************************************************
ok: [LINUX1]
ok: [LINUX2]
fatal: [LINUX3]
TASK [Check Linux Hostname] ****************************************************
ok: [LINUX1]
PLAY RECAP *********************************************************************
LINUX1 : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
| Ansible Playbook Execution - Task Output | 2023-12-13T06:42:26.000Z |
hello\s+animals:\s+(?<!animals:)|(?P<hi>cat|cow|dog|sheep)|deer | hello
animals:
cow
cat
dog
sheep
deer | Pipe Regex | 2017-09-08T09:27:17.000Z |
|
## Validación de correo UNAL
Validación del correo de la universidad Nacional mediante el uso de expresiones regulares. | ^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@unal\.edu\.co | test@unal.edu.co | UNAL validation mail | 2020-11-18T16:43:41.000Z |
public\s+(.+):([^,]+),? |
public typeface:Typeface,
public weight:FontWeight,
public color:Color,
public size:Units,
public line:Units,
public character:Units,
public fontStyle:ABoolean,
public decorationUnderline:ABoolean,
public decorationCrossed:ABoolean,
| TS constructor body | 2018-01-21T20:35:37.000Z |
|
calendar | (?sm)<div class='race-venue'.*?<h2>(.*?)<span class='race-venue-date'>(.*?)</span>.*?</h2>.*?<span class='meeting-type'>(.*?)</span>.*?Rail Position:</b>(.*?)<br><b>Dual Track Meeting:</b>(.*?)<br><b>Track Type:</b>(.*?)<br><b>Track Condition:</b>(.*?)<br><b>Weather:</b>(.*?)<br><b>Penetrometer:</b>(.*?)<br><b>Track Information:</b>(.*?)<br /></div> | <!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"/>
<meta name="description" content="Racing Australia is the national industry body representing Thoroughbred racing in Australia. Australian Horse Racing results, Horse Racing Materials." />
<meta name="keywords" content="Horse Racing Results,Race Results,RISA,Racing Australia, Australia Horse Racing, Australia, RISAForm, Field, Form, Racing Form,horse, horse racing, tab result, racing, racing nsw, racing victoria, horse racing result, form, jockey, horse riding, equestrian, horse race result, greyhound racing, horse betting, betting horse" />
<title>Racing Australia | Horse Racing Results</title>
<link rel="shortcut icon" type="image/x-icon" href="/design/images/favicon_risa.ico"/>
<link href="/design/css/risa_web_style.css?v30" rel="stylesheet" type="text/css" />
<link href="/design/css/search.css?v6" rel="stylesheet" type="text/css" />
<!--Racing Materials Style-->
<!--Racing Materials JS-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>
<script type="text/javascript" src="/design/js/stickycontent.js"></script><!--Sticky Race Number Menu-->
<script type="text/javascript" src="/design/js/ddaccordion.js"></script>
<script type="text/javascript" src="/design/js/editable.js"></script>
<script type="text/javascript" src="/design/js/Generic.js"></script>
<script type="text/javascript" src="/design/js/jquery.autocomplete.js"></script>
<!-- Google Tag Manager -->
<script> (function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({ 'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MGS3GD7');</script>
<!-- End Google Tag Manager -->
<!-- imgSlider Javascript file -->
<link href="/design/slider/js-image-slider.css" rel="stylesheet" />
<script src="/design/slider/js-image-slider.js" type="text/javascript"></script>
<!-- Begin iPhone/iPad detection code - Sets a global variable -->
<script type="text/javascript">
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
var replaceSWF = 1;
} else {
var replaceSWF = 0;
}
function GoHome() {
window.location='/home.aspx';
}
</script>
<!-- End iPhone/iPad detection code -->
<!--Asynchronous Code for google to track out bound clicks-->
<script type="text/javascript">
function recordOutboundLink(link, category, action) {
_gat._getTrackerByName()._trackEvent(category, action);
setTimeout('document.location = "' + link.href + '"', 100);
}
</script>
<!--End Asynchronous Code-->
<!--Google Analytics Updated Tracking 13052011-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-6444294-13']);
_gaq.push(['_setDomainName', '.risa.com.au']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
function recordOutboundLink(link, category, action) {
try {
var pageTracker = _gat._getTracker("UA-6444294-13");
pageTracker._trackEvent(category, action);
setTimeout('document.location = "' + link.href + '"', 100)
}catch(err){}
}
</script>
<!-- End Google Analytics Updated Tracking 13052011-->
<!--Google Analytics Updated Tracking 13May2015-->
<script type="text/javascript">
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-6444294-13', 'auto');
ga('send', 'pageview');
</script>
<!--Google Analytics Updated Tracking 13May2015-->
</head>
<body class='ShowQuickLinks'>
<div id="main">
<div id="main-content">
<div id="header" class="header">
<div id="header-logo">
<a href="/home.aspx" name="top"><img src='/design/images/Racing-Australia-Logo.png' width="200" height="58" alt="Racing Australia Logo" title="Racing Australia" border="0" /></a>
</div>
<!--
<div id="header-socialmedia">
<a href="https://www.facebook.com/RISA10" target="_blank"><img src="/design/images/Facebook.png" height="25" alt="Go to our Facebook Page" title="Go to our Facebook Page" border="0"></a>
<a href="https://twitter.com/#!/RacingAust" target="_blank"><img src="/design/images/Twitter.png" height="25" alt="Go to our Twitter Page" title="Go to our Twitter Page" border="0"></a>
</div>
-->
<ul class="header-top-menu">
<li><a href="https://myhorseracing.horse/#/site" target="_blank">My Horse Racing</a></li>
<li><a href="https://www.racingjobs.com.au/" target="_blank">Racing Jobs</a></li>
<li><a href="https://equinegeneticsresearchcentre.horse/" target="_blank">Equine Genetics Research Centre</a></li>
<li ><a href="https://tor.racingaustralia.horse/" target="_blank" >Trainer and Owner Reforms</a></li>
<a style="border: none;height: 19px;display: inline-block; vertical-align: middle;" href="https://twitter.com/RacingAust" target="_blank"><img border="0" src="/design/images/about_us/header-twitter.png"/></a> <a style="border: none;height: 19px;display: inline-block; vertical-align: middle; margin-right: 9px;" target="_blank" href="https://www.facebook.com/RISA10"><img border="0" src="/design/images/about_us/header-facebook.png"/></a>
</ul>
</div>
<div id="main-menu">
<ul>
<li>
<a href="https://www.studbook.org.au/" target="_blank">AUSTRALIAN STUD BOOK</a>
</li>
<li>
<a href="#">REGISTRAR OF RACEHORSES</a>
<ul class="sub-menu">
<li><a href="/RoR/AboutROR.aspx">About Registrar of Racehorses</a></li>
<li><a href="/RoR/RegisterHorse.aspx">Registering a Horse</a></li>
<li><a href="/FreeServices/horse_name_search.aspx">Horse Name Availability Search</a></li>
<li><a href="/RoR/RacehorseId.aspx">Racehorse Identification</a></li>
<li><a href="/RoR/TransferOwnership.aspx">Transfer Ownership / Change of Share Percentage</a></li>
<li><a href="/RoR/Leasing.aspx">Leasing a Racehorse</a></li>
<li><a href="/RoR/RegisterSyndicates.aspx">Register Syndicates</a></li>
<li><a href="/RoR/RacingOverseasHorses.aspx">Racing NZ & overseas horses in Australia</a></li>
<li><a href="/RoR/DuplicatePapers.aspx">Duplicate Papers</a></li>
<li><a href="/RoR/ChangingAHorseName.aspx">Changing a Horse’s name</a></li>
<li><a href="/RoR/ChangeOwnersDetails.aspx">Owners Contact Details</a></li>
<li><a href="/RoR/RegisteringColours.aspx">Registering Colours</a></li>
<li><a href="/RoR/Forms.aspx">Forms</a></li>
<li><a href="/FreeServices/Australian_Rules_Of_Racing.aspx">Australian Rules of Racing</a></li>
<li><a href="/RoR/RenamedHorses.aspx">Renamed Horses</a></li>
<!--<li><a href="/RoR/Login.aspx">Login</a></li>-->
<li><a href="/RoR/OwnersAssociations.aspx">Owners Associations</a></li>
</ul>
</li>
<li>
<a href="#">RACING MATERIALS</a>
<ul>
<li><a href="/FreeFields/Calendar.aspx?State=NSW">New South Wales</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=VIC">Victoria</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=QLD">Queensland</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=WA">Western Australia</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=SA">South Australia</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=TAS">Tasmania</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=ACT">Australian Capital Territory</a></li>
<li><a href="/FreeFields/Calendar.aspx?State=NT">Northern Territory</a></li>
<!--li><a href="/FreeFields/GroupAndListedRaces.aspx">Group & Listed Races / Classifications</a></li-->
</ul>
</li>
<!--li>
<a href="#">RULES & PUBLICATIONS</a>
<ul>
</ul>
</li-->
<li class="login" style="margin-right: 14px !important;">
<a href="#" class="login-a">LOGINS</a>
<ul>
<li><a href="/IndustryLogin/SNS_Login.aspx">SNS</a></li>
<li><a href="/IndustryLogin/Stable_Assist_Login.aspx">Stable Assist</a></li>
<li><a target="_blank" href="https://studbook.org.au/">ASB Subscriptions</a></li>
<li><a href="/IndustryLogin/RSB_subscribers_Login.aspx">RSB Subscribers</a></li>
<!--li><a href="/IndustryLogin/Form_subscribers_Login.aspx">RISA Form Subscribers</a></li-->
<li><a href="/IndustryLogin/Connect_Login.aspx">Connect Login</a></li>
<li><a href="https://risa.webex.com" target="_blank">Webex</a></li>
<li><a href="/arb/Racingappeals.aspx">Racing Appeals</a></li>
</ul>
</li>
<li class="about-us">
<a href="/ContactUs/default.aspx">ABOUT US</a>
<ul>
<li><a href="/Aboutus/Vision-Core-Functions.aspx">Vision & Core Functions</a></li>
<li><a href="/Aboutus/History.aspx">History</a></li>
<li><a href="/Aboutus/Role-and-Services.aspx">Our Role</a></li>
<li><a href="/Aboutus/Board.aspx">The Board</a></li>
<li><a href="/Aboutus/Management.aspx">The Team</a></li>
<li><a href="#">Publications                       ></a>
<ul style="padding-top:0px">
<li><a href="/Aboutus/AnnualReport.aspx">Annual Report</a></li>
<li><a href="/Aboutus/FactBook.aspx">Fact Book</a></li>
<li><a href="https://ier-study.racingaustralia.horse/">Industry Study</a></li>
</ul>
</li>
<li><a href="/FreeServices/Australian_Rules_Of_Racing.aspx">Australian Rules Of Racing</a></li>
<li><a href="/FreeServices/MediaReleases.aspx">Media Releases</a></li>
<!--li><a href="/Aboutus/sns.aspx">About SNS</a></li-->
<!--li><a href="#">Animal Welfare</a></li-->
<li><a href="/Licensing/Licensing.aspx">Licensing</a></li>
<li><a href="/FreeServices/PerformanceReport.aspx">Monthly Performance Report</a></li>
<li><a href="/ContactUs/">Contact Us</a></li>
<li><a href="/FAQ/FAQ.aspx">FAQ</a></li>
<li><a target="_blank" href="https://racingaustraliasystemsstatus.horse/">Racing Australia </br>Systems Status Updates</a></li>
</ul>
</li>
</ul>
</div>
<div>
</div>
<div id="middle-container">
<div id="info-container">
<div id="grey-content">
<div id="page-content">
<div class="state-specific-banner">
<a href="https://www.racingqueensland.com.au/Going-to-the-races/Event-search?what=Thoroughbred" target="_blank" onClick="ga('send', 'event', 'Outbound Link', 'Click', '2019 RQ Winter Carnival');">
<img src='../../design/images/adverts/2019_Winter_QLD_Banner.jpg' width='728' height='90' alt='2019 RQ Winter Carnival' border='0'/></a>
<img width='0' height='0' src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" onload="ga('send', 'event', 'Outbound Link', 'Impression','2019 RQ Winter Carnival',0, {'nonInteraction': 1});"/>
</div>
<div class="tab-menu">
<div class="inactive-tab"><a href="/FreeFields/RaceProgram.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Programs</a></div>
<div class="inactive-tab"><a href="/FreeFields/Nominations.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Nominations</a></div>
<div class="inactive-tab"><a href="/FreeFields/Weights.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Weights</a></div>
<div class="inactive-tab"><a href="/FreeFields/Acceptances.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Acceptances</a></div>
<div class="inactive-tab"><a href="/FreeFields/Form.aspx?Key=2019Mar14%2CQLD%2CBeaudesert&recentForm=Y">Recent Form</a></div>
<div class="inactive-tab"><a href="/FreeFields/AllForm.aspx?Key=2019Mar14%2CQLD%2CBeaudesert&recentForm=N">All Form</a></div>
<div class="inactive-tab"><a href="/FreeFields/GearChanges.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Gear</a></div>
<div class="inactive-tab"><a href="/FreeFields/Scratchings.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Scratchings</a></div>
<div class="active-tab"><a href="/FreeFields/Results.aspx?Key=2019Mar14%2CQLD%2CBeaudesert">Results</a></div>
</div>
<div class="clear-space"> </div>
<div class='race-venue'>
<div class='top'>
<h2>
Beaudesert: Beaudesert Race Club
<span class='race-venue-date'>Thursday, 14 March 2019</span>
</h2>
<span class='meeting-type'>Meeting Type: Provincial (TAB MEETING)</span>
<div class="printer-friendly">
<a href='?Key=2019Mar14,QLD,Beaudesert&BodyClass=PrintFriendly' target='_blank'><img src="/design/images/print_friendly_btn.png" alt="Print Friendly Version" title="Print Friendly Version" border="0" width="30" height="19">Print Friendly</a>
</div>
</div>
</div>
<div class='race-venue-bottom'>
<div class='col1'><b>Rail Position:</b> +2m 700m-250m, Cutaway from 250m, True Remainder<br><b>Dual Track Meeting:</b> N<br><b>Track Type:</b> Turf<br><b>Track Condition:</b> Good 3<br><b>Weather:</b> Hot<br><b>Penetrometer:</b> <br><b>Track Information:</b> <br /></div><div class='col2'><b>Results Last Published:</b> Fri 15-Mar-19 11:08AM AEDT<br></div>
<div class='comments'> | RA3 | 2019-03-15T10:55:39.000Z |
(Semno_h)\b\s+(\w{50}) | CLUSTAL X (1.81) multiple sequence alignment
Maca_ma TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_tonke TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Maca_ni TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_orchr TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_nemes TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_silen TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_siber TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCTACGATGAC
M_fusca TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_mulat TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_cyclo TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_fasci TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_arcto TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_thibe TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_sylva TGTG-TCTCACCATCT-TCCTACTCTCCACCACACTGAGCCCACGATGAC
P_anubi TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
P_hamad TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Papi_Pa TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
L_albig TGTG-TCTCACCATCT-TCCTACTCTCCACTACCCTGAGCCCACGATGAC
L_aterr TGTG-TCTCACCATCT-TCCTACTCTCCACTACCCTGAGCCCACGATGAC
Tupa_ge TGTG-TCTCACCATCT-TCCTACTCTCCACTACCCTGAGCCCACGATGAC
Cb_agil TGTG-CCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_chrys TGTG-CCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_torqu TGTG-CCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_leuco TGTG-CCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_sphin TGTG-CCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_albog TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
cercop_ ??????????????????????????????????????????????????
C_ascan TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Cerc_ce TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_petau TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Cercop_ TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_wolfi TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACAATGAC
Cercop_ TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_negle TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_hamly TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
M_ogoue TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_aethi TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_sabae TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
C_cynos TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Cer_lho TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
Erythro TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAGCCCACGATGAC
A_nigro TGTG-TCTCACCATCT-TCCCACTCTCCACTACACTGAGCCCACGATGAC
Tupa_ob TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Tupa_ph TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Tupa_au TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Tupa_de TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Tupa_fr ??????????????????????????????????????????????????
Tupa_ha TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
S_entel CGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCTATGATGAC
Semno_h CGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCTATGATGAC
S_entel TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Tupa_ve TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
P_ciner TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
P_nemae TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
P_nigri TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Nasalis TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Rhinopi TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Presb_c TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
P_melal TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Cb_guer TGTG-TCTCCCCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Cb_poly TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
Cb_ango TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGATGAC
PilioCb TGTG-TCTCACCATCT-TTCTACTCGCCACTACACTGAGCCCATGAT-AC
hylo_ag TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
hylo_mu TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
hyloba_ TGTG-TCKCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
Symphal TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAC
Nomas_l TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
Nomas_s TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
Nomas_c TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
Nomas_g TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACCATGAT
Ptroglo TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACAATGAC
P_trogl TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACAATGAC
Pan_pan TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACAATGAC
Homo_sa TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACAATGAC
Gorilla TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACAATGAC
png_abe TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACGATGAC
png_pyg TGTG-TCTCACCATCT-TCCTACTCTCCACTACACTGAACCCACGATGAC
Ca_jacc CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Ca_peni CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Ca_geof CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Ca_kuhl CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Ca_auri ??????????????????????????????????????????????????
Mico_ar CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Mico_hu CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Cebuell CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
C_goeld TATG-TCTCTGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
L_chrys TGCG-TCTCAGCATCC-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
L_rosal TGCG-TCTCAGCATCC-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
S_bicol TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_marti TGTG-TCTCAGCCTCTATCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_midas TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_geoff TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_oedip TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_labia TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_mysta TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_imper TGTG-TCTCAGCATCT-TCCTGCTCTCCACCATACTGAGCCCAAGATGAC
S_fusci TGTG-TCTCAGCATCT-TCCTGCTCTCYACCATACTGAGCCCAAGATGAC
A_azar_ TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
A_azar_ TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Aot_aza TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
A_nancy TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGTGCCCAAGATGAC
A_Linus ??????????????????????????????????????????????????
A_trivi ??????????????????????????????????????????????????
C_robus ?????????AGCA-TT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
C_xanth TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Cebs_ap TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
C_capuc TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
C_albif TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
C_oliva TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
S_oerst ?????????AGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
S_sciur TGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCCCAAGATGAC
Saim_us ??????????????????????????????????????????????????
S_boliv ??????????????????????????????????????????????????
A_belze TGTG-TMTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
A_geoff ??????????????????????????????????????????????????
A_hybri TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
A_fusci TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
Atel_ch TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
A_panis TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
B_arach TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
B_hypox CGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACTGAGCCCACCATGAC
Lagot_c TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACCGAGCCCACCATGAC
L_lagot TGTG-TCTCAGAATCT-TCCTGCTCTCCACCACACCGAGCCCACCATGAC
A_belze CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCACACAATGAT
Alouat_ CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCACACGATGAT
Alout_S CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCACACGATGAT
A_palli CGTG-TCTCAGCATCT-TCCTGCTCTCCACCACACTGAGCGCACGTTGAT
C_brunn ??????????????????????????????????????????????????
Callic_ TGTG-TCTTAGTATCT-TCCTGCTCTCCACCACACTGAGCCCACGATGAC
C_cupre TGTG-TCTTAGTATCT-TCCTGCTCTCCACCACACTGAGCCCACGATGAC
C_calig TGTG-TCTTAGTATCT-TCCTGCTCTCCACCACACTGAGCCCACGATGAC
C_donac TGTG-TCTTAGTATCT-TCCTGCTCTCCACCACACTGAGCCCACGATGAC
C_coimb TGTG-TCTTAGTATCT-TCCTGCTCTCCACCATACTGAGCCCACGATGAC
C_perso TGTG-TCTCAGTATCT--CCTGCT-CTCACCATACTGAGCCCACGATGAC
C_nigri ??????????????????????????????????????????????????
C_melan TGTG-TCTCAGCATCT-TCCTGCTCCCCACCACACTGAGCCCAAGATGAC
Cacaj_c TGTG-TCTCAGCATCT-TCCTGCTCCCCACCACACTGAGCCCACGATGAC
C_israe TGTG-TCTCAGCATCT-TCCTGCTCCCCACCACACTGAGCCCACGATGAC
C_satan TGTG-TCTCAGCATCT-TCCTGCTCCCCACCACACTGAGCCCACGATGAC
P_irror TGTG-TCTCAGCAT-T-TCCTGCTCCCCACCACACTGAGCCCACGATGAC
Papi_Pa TGTG-TCTCAGCATCT-TCCTGCTCCCCACCACACTGAGCCCACGATGAC
Tupa_ba CAT--CCTCAATGTCT-TTCTATTCTCTACCACGCTGAGCCCAGGATAAC
Tupa_sy GAT--CCTCAATGTCT-TTCTATTCTCCACCACGCTGAGCCCAGGATAAC
L_ankar TATG-TCCCAACATTT-TCTTATTCTCCACCGC--TGAGCYCARGATGAT
L_septe TATG-TCCCAACATTT-TCTTATTCTCCACCGC--TGAGCYCAGGATGAT
L_dorsa TATG-TCCCAACATTT-TCTTATTCTCCACCGC--TGAGCCCAGGATGAT
L_rufic TATG-TCCCAACATCT-CCTTATTTTCCACCGC--TGAGCCCAGGATGAT
Lepi_ja TATG-TCCCATCATTT-TCTTATTCTCCACTGC--TGAGCCCAGGATGAT
Microce -ATA-TCCCAACATTT-ACTTATTCTCCACCAC--TAAGCCCAGGATGAC
Microce ??????????????????????????????????????????????????
Mirza_z TATA-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
Chei_me -ATGTCCCCAACATCT----CATTCTCCACCAC--TGAGCCCAGGATGAC
P_ver_c ??????????????????????????????????????????????????
P_verre TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGYCTGGGATGAC
P_tatte TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCTGGGATGAC
P_diade TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
P_edwar TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
Avahi_l TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
Eulem_r TATG-TCCCAAYATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
E_colla TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
Eul_ful TAKG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCGGGGATGAC
E_albif TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCSGGGATGAC
E_sanfo TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCGGGGATGAC
Eul_Mon TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
Eul_mac TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
EuMac_f TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TTAGCCCGGGATGAC
E_coron TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
E_rubri TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCGGGATGAC
H_occid TATG-TCCCAAAAACT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
H_grise TATG-TCCCAAAAACT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
L_catta TATG-TCCCAACAACT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
Vv_vari TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
Vv_rubr TATG-TCCCAACATCT-CCTTATTCTCCACCAC--TGAGCCCAGGATGAC
Daubent ??????????????????????????????????????????????????
N_benga TATG-TCTCCACAGCT--CCTATTCTCTACCACAGTAAGCCCA-------
N_couca TATG-TCTCCACAGCT--CCTATTCTCTACCACAGTAAGCCCA-------
N_pygma TGTG-TCTCACCATCT-TCCTACTCTCCACTGCACTGAACCCACAATGAC
L_tardi ??????????????????????????????????????????????????
ArctoC_ TGTG-TCTCCCCATCT--CCTATTCTC---------TAACACACTAAGCC
Perodic TATG-TCTCCACATCT--CCCATTCTCTAACACACTAAGCCCA-------
O_garne ??????????????????????????????????????????????????
O_crass TATG-TCTCCACACCT--CCTATTCTCTACCACAATAAGCCCA-------
G_Galag ??????????????????????????????????????????????????
G_seneg ??????????????????????????????????????????????????
G_thoma TATG-TCTCCACACCT--CCTATTCTCTACCACACTAAGCCCA-------
Galeopt ??????????????????????????????????????????????????
Cynocep ??????????????????????????????????????????????????
Tupa_gl ??????????????????????????????????????????????????
Tupa_mi ??????????????????????????????????????????????????
rabbitr ??????????????????????????????????????????????????
| editing dupl names in taxa names | 2019-09-29T10:29:01.000Z |
|
^(["']?)(\$?([0-9]{1,3},([0-9]{3},?)*[0-9]{3}|[0-9]{1,3})((.[0-9]{0,3})[0-9]{0,10})?)\1$ | 123456
123.
.
.123
123.154574
.545.4584
+1454
+487.54587
-54587.7487
.1225-
.456+
454.4+
454.455874
45.45745687687.5678
45,547
45,5
,154567891021
0,154567891021
123,1023458748
4546587,54587867
578,4
0
.123
0.00145
0.0
012345678910
1,345.154
4,330,234.34
5.545445454
3,023,123.34
12.1
5,356.12345678910
1.20
1.01
0.52
125.30
158,265.36
100,100,100,123,125,568,000.00
""
''
"1"
'1'
"123"
'123'
"123.1"
'0'
"123.12345647891"
"19,741.24"
1234567891023154546574568768767866876767676876584764646546546465465464564564.240
"191741.240" | Moneda con string v3 | 2021-01-09T00:33:37.000Z |
|
(?P<type>BORDER)(?:::)(?P<desc>[\w#()/]*) | BORDER::APPLE_PEERING_GROUP_1 | BORDER | 2020-02-04T19:54:52.000Z |
|
Extract the street number and the remainder part from the address | [a-z]+[\s,]+[n\.\°\s]*([\d]+[-\/\._]?[\d]*[a-z]*[\d]*|[s][n][c])[ ,]*.* | P.ZZA DELLA COSTITUZIONE, N. 1/b | Street number | 2020-07-02T23:44:55.000Z |
^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.|$)){4}$ | Patrón para detectar direcciones IP correctas | 2018-08-14T07:32:20.000Z |
||
^DOMAIN\\\w+$ | Digital Identity - screen name, handle, login, nickname | 2019-12-03T19:45:27.000Z |
||
Regex for parse IIIF image request url.
Support IIIF image api 2.0 and 2.1. | ^\/prifix\/([a-zA-Z0-9_\-\!\.\/]+)\/{0,1}((\/(full|square|([1-9]\d*|0),([1-9]\d*|0),([1-9]\d*),([1-9]\d*)|pct:(([1-9]\d*|0)(\.\d+)?),(([1-9]\d*|0)(\.\d+)?),([1-9]\d{0,1}(\.\d*)?|0\.[0]*[1-9]+|100(\.0+)?),([1-9]\d{0,1}(\.\d*)?|0\.[0]*[1-9]+|100(\.0+)?)|(\w+))\/(full|max|([1-9]\d*),|,([1-9]\d*)|(\!)?([1-9]\d*),([1-9]\d*)|pct:(([1-9]\d*)(\.\d+)?)|(\w+))\/(\!)?([1-9]\d*|0|(\w+))(\.\d+)?\/(default|color|gray|bitonal|(\w+))\.(jpg|tif|png|webp|pdf|jp2|(\w+)))|info\.json){0,1}$ | /prifix/imageID/1024,1024,1024,1024/1024,1024/0/default.jpg
/prifix/imageID/1024,1024,1024,1024/!1024,1024/0/default.jpg
/prifix/imageID/1024,1024,1024,1024/1024,/0/default.jpg
/prifix/imageID/1024,1024,1024,1024/,1024/0/default.jpg
/prifix/imageID/full/PCT:50/0/default.jpg
/prifix/imageID/SqUarE/1024,/0/deFAult.jPg
/prifix/imageID/SqUarE/,1024/0/deFAult.jPg
/prifix/imageID/SqUarE/1024,2048/0/deFAult.jPg
/prifix/imageID/SqUarE/full/0/deFAult.jPg
/prifix/imageID/inFo.json
/prifix/imageID/
/prifix/imageID
/prifix/errorFormate/aaa/bbb/ccc/ddd.jpg
| IIIF URL | 2019-07-19T02:08:11.000Z |
class="[^"]*(?<="|\s)col-xs-9(?="|\s[^>]*)">(?<name>[^<]*) | <div class="top_seller_name col-xs-9">
Yusuf
<div class="sprite_view_icn_whatsapp top_seller_whatsapp_sprite">
<div class="top_seller_whatsapp">WhatsApp Preferred</div>
</div>
</div> | name | 2017-02-13T13:39:52.000Z |
|
(?<!\w\.\w.|etc.)(?<=\.|\?|!)\s(?=\w) | At present, I believe the "deeply-involved" contributor would need to fork the 'content' repo to their personal Github accounts, revise, and later do pull requests. An alternative workflow was considered that might involve more sophisticated use of Github, but after piloting it out, this seemed like it would be hard to explain and enforce consistent use, esp. with github newbies. This was overkill; though this project may contain very modest amounts of code, it is not a coding project for a software product! I decided that this is best left to user's individual workflow. Some explanation of best practice, etc. this is a test. (e.g. for pull requests) might still be needed for the proposed workflow, but this is a lighter burden than the alternative
This is a ttest.
This is a test. this is another test
This is a ttest.
This is a test. this is another test | Help in splitting paragraphs | 2020-06-23T11:09:00.000Z |
|
Use **Filebeat** and split log filenames in **Logstash** into separate fields:
`grok {
match => [ "[log][file][path]", "(?<environment>\w+)\.(?<company>[a-zA-Z-_]+)\.(?<logtype>[a-zA-Z-_]+)"]
}`
use filenames like
`/var/log/nginx/live.cnt-evac.access.log
/var/log/nginx/live.cnt-envac.error.log
/var/log/nginx/staging.mastodon.error.log
/var/log/nginx/staging.rundll.error.log` | (?<environment>\w+)\.(?<company>[a-zA-Z-_]+)\.(?<logtype>[a-zA-Z-_]+) | /var/log/nginx/live.cnt-environmental.error.log
/var/log/nginx/staging.perl-mini.access.log
/var/log/nginx/dev.molder.error.log | GROK to split log file name by dots | 2021-02-19T12:19:07.000Z |
This regex enforces the correct basic structure whilst only allowing permitted characters (RFC822) in both the local and domain parts.
It permits + routing made popular by Gmail and allows for the + group to identified as routing.
It allows all but the most extreme of valid email addresses i.e. "@" at symbols contained in quotes.
A cautionary note, just because RFC permits these characters you own mail server may not accept them all. | ^(?<local>[a-zA-Z0-9\.!#$%&'*\-\/=?^_`{|}~"]+)(?:\.)?(?<routing>[a-zA-Z0-9\.!#$%&'*\-\/=?^_`{|}~+"]*)(?:@)(?<domain>(?:[a-zA-Z0-9\-[\]]*)(?:\.)(?:[a-zA-Z0-9\-[\]\.]*))$ | yemolai+hello+amps@gmail.com
romulogabriel@outlook.com.br
a13b3440.junior@gmail.jp
gabriel.rodrigues@sedop.pa.gov.br
rubens.junior00k@hotmail-p.com
adam.mills@[192.168.1.1]
a@B.com
| A balanced email validation expression | 2018-08-15T08:38:40.000Z |
Matches any sequence of consecutive ones that isn't of prime length. | ^1?$|^(11+?)\1+$ |
1
11
111
1111
11111
111111
1111111
11111111
111111111
1111111111
11111111111
111111111111
1111111111111
11111111111111
111111111111111
1111111111111111
11111111111111111 | Primality | 2018-04-18T11:50:51.000Z |
(^\/+([^a-z])|(lets-begin)|(join-now)|(registration\/user))+[^\/]*$ | /
/?t=3
/?t=3&a=33
/?t=3/asd/
/lets-begin
/lets-begin?test=33
/join-now
/join-now?tes=44
/lets-test
/registration/user
/registration/user/test
/registration/user?test=33
/uday
/registration/user?test=33/ | Personal | 2018-08-16T05:47:00.000Z |
|
# SvelteComponent Class Directive Matching
Also supports TailwindCSS-style `@apply` directive for the class value.
## `class:directive={boolean}`
Svelte allows us to provide a "class directive", or a class name in the form of `class:NAME={boolean}`. If we place a boolean (or function that returns a boolean) as its value, it will add the class "NAME" to the component when it returns true, or omit it when false.
This is extremely useful for navigation components, and I use it all the time to highlight active links in my UX/UI development process.
```svelte
<NavBar>
<Link href="#abc" class:active={page === 'abc'}>ABC</Link>
<Link href="#xyz" class:active={page === 'xyz'}>XYZ</Link>
</NavBar>
```
Flexible matching for the class attribute on both **Svelte Components** and **HTML Elements**. | (?:(\bclass)(?:[:]([_a-zA-Z0-9-]+))?\s*[=]?(?:[{}]{0,}['"\s]*\b(.+)?\b["'\s]*[{}]*)?)|(?:\B([@]apply)\s+([_a-zA-Z0-9-\s\:\/]*)[;]?) | <SvelteComponent class:active={true} />
<img src="..." class="image" />
<div class="@apply bg-gray-500 px-10 py-5;">
class:active={is_active ? true : false}
class="mb-0 font-semibold text-white" | Svelte: CSS class attribute (Svelte or HTML friendly), class:directive, TailwindCSS classes, and @apply. | 2021-12-03T05:52:55.000Z |
(?m)^\(?([a-zA-Z]{1,4}[\)\.]|(XC|XL|L?X{0,3}|xc|xl|l?x{0,3})(IX|I?V|V?I{0,3}|ix|i?v|v?i{0,3})[\)\.]|([\dx]{1,3}\.){0,3}[\dx]{1,3})(?:[ \t]+)(\S.*)$ |
Hello, world
1.1.1 Great dude
A) Awesome
That's it?
ix. Sweet
BBB. Hello
CC) t
D) ere
() ere
There is no way to know whether you are (i) a monkey, (ii) going to become a monkey, and (iii) will have a monkey.
AB. Wrong!
Agreement, by the contractor
As, by
a, by
AAAA) b
| Section match | 2018-02-06T02:45:47.000Z |
|
获取登录的公司和法人名字。 | [\u4E00-\uFA29\uE7C7-\uE7F3\uff0c]+<i\sclass="icon-star"><\/i>\s([\u4E00-\uFA29\uE7C7-\uE7F3]+):([\u4E00-\uFA29\uE7C7-\uE7F3]+) | 欢迎您回来,<i class="icon-star"></i> 安徽辉隆慧达化工集团有限公司:李爱姣 | pageTracker | 2019-07-30T16:34:09.000Z |
Simple matcher for syslog format FRC 3164 | ^\<([0-9]{1,3})\>([A-Za-z]{3} [0-9]{1,2} \d{2}:\d{2}:\d{2}) ([\S]+) ([\S\s]+) | <131>Jan 23 17:05:05 rdmlpavesi1d gs-rest-service error message slf4j thread:http-nio-8080-exec-1 priority:ERROR category:command.AppSyslogd.Application exception: | Syslog RFC 3164 | 2018-01-25T09:37:45.000Z |
^[ \t]*(?>[^%])[ \t]*(?>lambdaRidgeK)[ \t]?=[ \t]?(?<lambdaRidgeK>\d*[e|E]?[-|+]?\d*)[ \t]*; |
%PostSlim:
%lambdaRidgeK = 3e-5; %too weak (going down fast)
%lambdaRidgeK = 3e-4; %too weak (fails at #14628)
lambdaRidgeK = 1e-3;
lambdaRidgeK =1e-3;
lambdaRidgeK=1e-3;
%lambdaRidgeK = 3e-4; %too weak (fails at #14628)
% lambdaRidgeK = 3e-4; %too weak (fails at #14628)
%K_momentum = 0.1;
K_momentum = 0;
%We're gonna scale the regularization term in the learning rule by
% this scalar.
% We calculated it using the slope of the f-i curve at the 'lambda'
% input rate.
SPIKE_RATE_REGULARIZATION_SCALE = 0; %FUTURE: to use it we'd have to recalc it
| lambdaRidgeK | 2017-08-12T16:19:51.000Z |
|
\P{Cc} | characters such as can enter the system | No control characters | 2019-03-14T10:06:33.000Z |
|
# Format detected:
"Jean"
OR
"Jean-Pierre"
OR
"Jean-Marie-Pierre"
## Details :
`Name[...-Name]`
> [...-Name] is optional, "Name" can be : a-z or A-Z no accent supported
| ^((?:(?:[a-zA-Z]+)(?:-(?:[a-zA-Z]+))+)|(?:[a-zA-Z]+))$ | Jean-Pierre-Marc | Regex of name or a firstname | 2022-06-29T17:56:09.000Z |
Visual tag and Back tag cannot more than 15 characters or only can contain uppercase, lowercase, space and dash. | ([\w\W]{16,})|([^-\s0-9[:alpha]]) | Livestock - Visual tag and Back tag | 2021-03-26T17:11:56.000Z |
Subsets and Splits