By Clint Simon
Most people I know use ChatGPT, Claude, Copilot, or Gemini the same way they used Google in 2008. They type a question, skim the answer, and move on. That works, but it leaves about 80% of the value on the table.
By Clint Simon
Most people I know use ChatGPT, Claude, Copilot, or Gemini the same way they used Google in 2008. They type a question, skim the answer, and move on. That works, but it leaves about 80% of the value on the table.
| public class HashTable<T, TU> | |
| { | |
| private LinkedList<Tuple<T, TU>>[] _items; | |
| private int _fillFactor = 3; | |
| private int _size; | |
| public HashTable() | |
| { | |
| _items = new LinkedList<Tuple<T, TU>>[4]; | |
| } |
| // Please name the data types available JavaScript. |
| using System; | |
| public class Program | |
| { | |
| static string location = default(string); | |
| static DateTime time = default(DateTime); | |
| public static void Main() | |
| { | |
| Console.WriteLine(location == null ? "location is null" : location); |
me@clintsimon.com | (425) 785-8007 | pdf | linkedin | @clintsim
First and foremost I excel at using technology to solve business problems. I've worked in technology for over 19 years, delivering custom application development projects ranging from simple websites to complex enterprise systems, with various team sizes from 1 person all the way up to 120 people.
| ko.bindingHandlers.dropzone = { | |
| init: function(element, valueAccessor) | |
| { | |
| var value = ko.unwrap(valueAccessor()); | |
| var options = { | |
| maxFileSize: 15, | |
| createImageThumbnails: false, | |
| }; |
| <div style="position: fixed; top: 0px; left: 0px; z-index: 10000;" class="btn btn-default"> | |
| <div class="visible-xs">Extra Small (xs)</div> | |
| <div class="visible-sm">Small (sm)</div> | |
| <div class="visible-md">Medium (md)</div> | |
| <div class="visible-lg">Large (lg)</div> | |
| </div> |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response] | |
| "AutoRepeatDelay"="250" | |
| "AutoRepeatRate"="20" | |
| "BounceTime"="0" | |
| "DelayBeforeAcceptance"="0" | |
| "Flags"="59" |
| function Edit { | |
| $SublimePath = "{your path}\sublime_text.exe" | |
| if ($args.length -eq 0) { | |
| & $SublimePath $pwd | |
| } else { | |
| & $SublimePath $args | |
| } | |
| } |
| var angle = function(hour, minute) { | |
| var hourAngle = parseFloat(hour * 30); | |
| // take into account the movement of the hour hand between hours | |
| hourAngle = hourAngle + parseFloat((minute / 60) * 5); | |
| var minuteAngle = parseFloat(minute * 6); | |
| var angle = Math.abs(hourAngle - minuteAngle); | |
| return (angle > 180) ? 360 - angle : angle; | |
| }; | |
| alert(angle(3, 0)); | |
| alert(angle(3, 10)); |