Charts: https://github.com/kamranahmedse/developer-roadmap
Article: https://medium.com/applantic/getting-started-with-front-end-development-in-2018-6ce4993926d8
Courses (some paid, but usually cheap):
user_id | status | subscription_id | remaining_credits | start_date | ||
---|---|---|---|---|---|---|
262213 | [email protected] | 2 | 914 | 600.0 | 2024-12-27T18:41:23.151667+00:00 | |
262593 | [email protected] | 2 | 915 | 600.0 | 2024-12-27T18:41:23.413359+00:00 | |
262314 | [email protected] | 2 | 916 | 600.0 | 2024-12-27T18:41:23.681111+00:00 | |
44 | dsadas | 2 | 917 | 3241.0 | 2024-12-27T18:41:23.945863+00:00 | |
47 | [email protected] | 2 | 918 | 3240.0 | 2024-12-27T18:41:24.210118+00:00 | |
55 | [email protected] | 2 | 919 | 3240.0 | 2024-12-27T18:41:24.474193+00:00 | |
45 | [email protected] | 1 | 920 | 1410.0 | 2024-12-27T18:41:24.739826+00:00 | |
61 | [email protected] | 2 | 921 | 3240.0 | 2024-12-27T18:41:25.004005+00:00 | |
64 | [email protected] | 2 | 922 | 3240.0 | 2024-12-27T18:41:25.265060+00:00 |
#!/bin/sh | |
# Modified version of script found at | |
# http://devblog.springest.com/a-script-to-remove-old-git-branches | |
# This has to be run from main | |
git checkout main | |
# Update our list of remotes | |
git fetch origin | |
git remote prune origin |
Charts: https://github.com/kamranahmedse/developer-roadmap
Article: https://medium.com/applantic/getting-started-with-front-end-development-in-2018-6ce4993926d8
Courses (some paid, but usually cheap):
#Understanding closures, callbacks and promises
For a code newbie like myself, callbacks, closures and promises are scary JavaScript concepts.
10 months into my full-time dev career, and I would struggle to explain these words to a peer.
So I decided it was time to face my fears, and try to get my head around each concept.
Here are the notes from my initial reading. I'll continue to refine them as my understanding improves.
def find_unknown_object(uuid_string) | |
db_connection = ActiveRecord::Base.connection | |
db_connection.tables.each do |table_string| | |
begin | |
model = table_string.classify.constantize | |
object = model.find(uuid) | |
return object unless object.nil? |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>DOM manipulation with jQuery</title> | |
<!-- Add a link to jQuery CDN here script here --> | |
<script type="text/javascript" src="jquery_example.js"></script> | |
</head> | |
<body> |
class BoggleBoard | |
attr_reader :board | |
def initialize(board_name = create_board) | |
@board = board_name | |
end | |
def create_word(*coords) | |
coords.map { |coord| board[coord.first][coord.last] }.join |
# INITIAL CODE | |
class BoggleBoard | |
attr_reader :board_type | |
def initialize(board_type) | |
@board_type = board_type | |
end | |
def create_word(*coords) | |
coords.map { |coord| @board_type[coord.first][coord.last]}.join("") |