- CSS fundementals course - Good course on CSS fundementals
- CSS selectors basics - Covers basic concepts of selectors
- CSS basics - Covers syntax and basic concepts
- CSS concepts - Another good one that covers basic syntax and concepts
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
| # fix the bug | |
| foo = 'https' | |
| bar = `1mF-JfsufEdUVB-8gLpmif0T7ypPJd4v0Hgm2kvKwLa4/edit?usp=sharing` | |
| baz = 'docs.google.com/presentation/d/' | |
| print(foo + '://' + baz + bar) |
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
| LSAuIC4tLi4gLi0uLiAvIC0tIC4gLyAuLS0gLi4uLiAuLSAtIC8gLi0tIC4gLyAuLSAtIC4gLyAuLi0uIC0tLSAuLS4gLyAtLi4gLi4gLS4gLS4gLiAuLS4= |
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
| # places to buy stuff | |
| - reddit.com/r/mechmarket | |
| - https://zealpc.net/products/zealio - switches I like | |
| - kbdfans.com | |
| - keycaps (also good places to buy stuff) | |
| - https://mechanicalkeyboards.com/shop/index.php?l=product_list&c=40 | |
| - https://kbdfans.com/collections/keycaps | |
| - https://kprepublic.com/collections/keycaps | |
| - https://novelkeys.xyz/collections/keycaps | |
| - https://kono.store/collections/keycap-sets |
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
| <DataList | |
| template={item => | |
| <ListItem label={item.name} /> | |
| } | |
| items={items} | |
| /> |
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
| [application] | |
| name = "Notes app" | |
| version = "1.0.0" | |
| [author] | |
| name = "Joshua Beitler" | |
| email = "[email protected]" | |
| [permissions] | |
| [permissions.fs] |
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
| func (r *Resolver) UpdateNoteResolver(p graphql.ResolveParams) (interface{}, error) { | |
| id, _ := p.Args["id"].(int) | |
| note := r.db.GetNoteById(id) | |
| if title, ok := p.Args["title"].(string); ok { | |
| note.Title = title | |
| } | |
| if body, ok := p.Args["body"].(string); ok { | |
| note.Body = body |
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
| func (d *Db) CreateNote(title string, body string) Note { | |
| stmt, err := d.Prepare("INSERT INTO notes (title, body) VALUES ($1, $2) RETURNING id") | |
| if err != nil { | |
| fmt.Println("CreateNote Preperation Err: ", err) | |
| } | |
| id := 0 | |
| err = stmt.QueryRow(title, body).Scan(&id); | |
| if err != nil { |
- https://developer.mozilla.org/en-US/ - MDN Web Docs, highest quality, best documentation for the web platform maintained by Mozilla and Microsoft
NewerOlder