HN - http://hnhiring.me/
Remote OK - https://remoteok.io/
Stack Overflow - https://careers.stackoverflow.com/jobs?allowsremote=True
LiquidTalent - http://www.liquidtalent.com/
Working Not Working - http://workingnotworking.com
HN - http://hnhiring.me/
Remote OK - https://remoteok.io/
Stack Overflow - https://careers.stackoverflow.com/jobs?allowsremote=True
LiquidTalent - http://www.liquidtalent.com/
Working Not Working - http://workingnotworking.com
| { | |
| "@type":"Job", | |
| "notes":"Test Job for R2 Demo in TCI", | |
| "cropYear":"2018", | |
| "status":"COMPLETED", | |
| "createdDate":"2018-04-02T08:59:44.957Z", | |
| "startedDate":"2018-04-02T12:29:57.000Z", | |
| "lastModifiedDate":"2018-04-02T12:30:55.000Z", | |
| "type":"SEED", | |
| "workPlan":{ |
Run these fun commands in the console:
parseFloat('100000.618033988757')
10000000000000000 === 10000000000000001
.2 + .1
5508402744232713000 + 10
| .replace(/\.?0+$/, '') |
| 1. What is the difference between '==' and .equals()? | |
| 2. Is java pass-by-value or pass-by-reference? | |
| 3. What is the difference between checked and unchecked exceptions? | |
| 4. What is an abstract class and when would you use it? |
| jQuery('a').attr("target", "_blank"); |
| <button type="button" class="btn btn-default btn-xs" onclick="guid()" title="generate a random guid">Generate Random Guid</button> | |
| <br/> | |
| <textarea id="guidtxt" cols="60"></textarea> | |
| <script> | |
| function guid() { | |
| var guid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {var r = Math.random()*16|0,v=c=='x'?r:r&0x3|0x8;return v.toString(16);}); | |
| $("#guidtxt").val(guid); | |
| $("#guidtxt").select(); | |
| } | |
| </script> |
| <button type="button" class="btn btn-default btn-xs" onclick="htmlEncode()" title="encode">HTML encode</button> | |
| <button type="button" class="btn btn-default btn-xs" onclick="htmlDecode()" title="encode">HTML decode</button> | |
| <br/> | |
| <textarea id="encodedecode" cols="80" rows="10"></textarea> | |
| <script> | |
| function htmlEncode(){ | |
| var encoded = $("#encodedecode").val().replace(/&/g, '&') | |
| .replace(/</g, '<') | |
| .replace(/>/g, '>') | |
| .replace(/"/g, '"') |
| delegate void updateDateTimePickerCallback(int t); | |
| private void updateDateTimePicker(int t) | |
| { | |
| if (dateTimePicker1.InvokeRequired) | |
| { | |
| updateDateTimePickerCallback s = new updateDateTimePickerCallback(updateDateTimePicker); | |
| this.Invoke(s, new object[] { t }); | |
| } | |
| else |