This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- window tiling for 3 col + 2 row | |
| function tile(x_pos, y_pos) | |
| return function() | |
| local win = hs.window.focusedWindow() | |
| local f = win:frame() | |
| local screen = win:screen() | |
| local max = screen:frame() | |
| local new_width = max.w / 3 | |
| local new_height = max.h / 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Comment | Designator | Footprint | LCSC Part # | |
|---|---|---|---|---|
| 22pF | C1,C2 | C_0805_HandSoldering | C1804 | |
| 10uF | C3 | C_0805_HandSoldering | C15850 | |
| 1uF (±10%) | C4 | C_0805_HandSoldering | C28323 | |
| 1uF | C5 | C_0805_HandSoldering | C28323 | |
| 0.1uF | C6,C8,C7,C9 | C_0805_HandSoldering | C49678 | |
| D | D2,D6,D1,D7,D3,D4,D5,D8,D9,D10,D11,D12,D13,D14,D15,D16,D17,D18,D19,D20,D21,D22,D23,D24,D25,D26,D27,D28,D29,D30,D31,D32,D33,D34,D35,D36,D37,D38,D39,D40,D41,D42,D43,D44,D45,D46,D47,D48,D49,D50,D51,D52,D53,D54,D55,D56,D57,D58,D59,D60,D61,D62,D63,D64,D65,D66,D67 | D_SOD-123 | C81598 | |
| 22 | R1,R2 | R_0805_HandSoldering | C17561 | |
| 10K | R3,R4 | R_0805_HandSoldering | C17414 | |
| USBLC6-2SC6 | U1 | SOT-23-6_Handsoldering | C7519 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html><head> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function(){ | |
| function tally (selector) { | |
| $(selector).each(function () { | |
| var total = 0, average = 0, symbol = '', sums = 0, | |
| column = $(this).siblings(selector).andSelf().index(this), | |
| sym = function (match) { |