Skip to content

Instantly share code, notes, and snippets.

@8-88
8-88 / vs-code-user-setting.md
Created August 9, 2021 02:23 — forked from xgqfrms-GitHub/vs-code-user-setting.md
VS code setting.json & React JS
@xyzdata
xyzdata / index.html
Created July 7, 2020 09:17 — forked from xgqfrms/index.html
Flutter in DartPad live app
<h1>Flutter in DartPad live app</h1>
<div>
<canvas id="canvas" width="300" height="300"></canvas>
</div>
dmesg
[ 0.000000] -(0)[0:swapper]Initializing cgroup subsys cpu
[ 0.000000] -(0)[0:swapper]Initializing cgroup subsys cpuacct
[ 0.000000] -(0)[0:swapper]Linux version 3.18.119 (root@alpz) (gcc version 4.9.x 20150123 (prerelease) (GCC) ) #2 SMP PREEMPT Tue Nov 26 10:00:51 UTC 2019
[ 0.000000] -(0)[0:swapper]Boot CPU: AArch64 Processor [410fd034]
[ 0.000000] -(0)[0:swapper][PHY layout]mblock-2-lk_init_display : 0xff370000 - 0xffffffff (0xc90000)
[ 0.000000] -(0)[0:swapper][PHY layout]mblock-1-trustzone_pre_init : 0xbffc0000 - 0xbfffffff (0x40000)
[ 0.000000] -(0)[0:swapper][PHY layout]atf-reserved-memory@43000000 : 0x43000000 - 0x4302ffff (0x30000)
[ 0.000000] -(0)[0:swapper]Reserved memory: initialized node reserve-memory-dram_r1_dummy_read, compatible id reserve-memory-dram_r1_dummy_read
[
@xyzdata
xyzdata / vs-code-user-setting.md
Last active August 9, 2021 02:57
VS code setting.json & React JS
@Chaser324
Chaser324 / GitHub-Forking.md
Last active September 3, 2024 21:12
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j

Location Function Component Family Component Type Qty Manufacturer Part Number Component Description Markings Form IO / Pin Count IO Pitch Diameter (mm) Length (mm) Width (mm) Height (mm) Data Sheet Links
Main PCB, Bottom Power Management Passive Capacitor 4 NEC Tokin PSLA0E227M Tantalum Conductive Polymer - Encapsulated, 2.5V, 220uF, 20%, Low ESR heJ8 3216-16 2 3.20 1.60 1.10 Visit URL
Main PCB, Bottom Memory Passive Resistor 1 SMD Flat Chip 0402 2 1.00 0.50
Main PCB, Bottom Apps Processing Passive Capacitor 6 Ceramic Multilayer - X5R/X7R Brown 0402 2 1.00 0.50
Main PCB, Bottom Apps Processing Passive Capacitor 12 Ceramic Multilayer - X5R/X7R Brown 0201 2 0.50 0.25
Main PCB, Bottom Apps Processing Passive Capacitor 2 Ceramic Multilayer - C0G/NP0 Violet 0201 2 0.50 0.25
Main PCB, Bottom Apps Processing Passive Resistor 1 SMD Flat Chip 0603 2 1.50 0.75
M
@GlowScripts
GlowScripts / All of the eBooks
Created August 28, 2011 22:41
Almost 1,000 "For Dummies" eBooks that I have. :)
78 Tax Tips for Canadians for Dummies (ISBN - 0470676582)
A Family's Guide to the Military for Dummies (ISBN - 0470386975)
Access 2007 VBA Programming for Dummies (ISBN - 0470046538)
Access 2010 All-in-One for Dummies (ISBN - 0470532181)
Access Forms & Reports for Dummies (ISBN - 0764599658)
Access VBA Programming for Dummies (ISBN - 0764574116)
Accounting for Dummies (ISBN - 0470246006)
Accounting Workbook for Dummies (ISBN - 0471791458)
Acne for Dummies (ISBN - 0471746983)
Acrylic Painting for Dummies (ISBN - 047044455X)
@stubbetje
stubbetje / base64.js
Created November 9, 2009 14:34
Base64 encode and decode in javascript
var Base64 = {
characters: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" ,
encode: function( string )
{
var characters = Base64.characters;
var result = '';
var i = 0;
do {