Skip to content

Instantly share code, notes, and snippets.

View 50-Course's full-sized avatar
🏠
Working from home

Eri A. 50-Course

🏠
Working from home
View GitHub Profile
* Downloaded or downloading
=============================
**http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
**http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html
**http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html
**http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html
**http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html
*http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html
*http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html
@50-Course
50-Course / project-ideas01.md
Created January 7, 2022 00:49 — forked from MWins/project-ideas01.md
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@50-Course
50-Course / GitCommitEmoji.md
Created September 18, 2022 02:46 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji

Inspired by dannyfritz/commit-message-emoji

See also gitmoji.

Commit type Emoji
Initial commit πŸŽ‰ :tada:
Version tag πŸ”– :bookmark:
New feature ✨ :sparkles:
Bugfix πŸ› :bug:
@50-Course
50-Course / gist:3e923c42a33e7bf64636110b747b6d51
Created October 30, 2022 03:01 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@50-Course
50-Course / customBadges.md
Created December 20, 2022 09:05 — forked from afig/customBadges.md
Creating a Custom Badge for GitHub Projects

Custom Badges

The Shields service (at shields.io) provides a way to create custom badges for your projects. These are badges are very common and are frequently used to show status information about the project, or demonstrate tools that were used for the development of your project.

Example badge:

Creating a badge

@50-Course
50-Course / dj-compose.compose.yaml
Last active August 1, 2023 13:03
Compose file template for python backend applications
##############
# Docker Compose File
# Maintainer: Eri Adeodu (@50-Course)
# License: MIT License.
#
# Reference links:
# incase you feeling adventerous,
# - https://docs.docker.com/compose/compose-file/
# - https://nickjanetakis.com/blog/best-practices-around-production-ready-web-apps-with-docker-compose
# - https://https://hackmamba.io/blog/2022/09/best-practices-when-using-docker-compose/
@50-Course
50-Course / cdn.md
Created March 14, 2023 09:52 — forked from jcubic/cdn.md
How to setup a literally free CDN
@50-Course
50-Course / init.lua.save
Created October 18, 2023 10:04
self-contained vimrc configuration
-- This configuration file is licensed under the MIT License
-- The user (You) is permitted to modfiy, use or re-distribute the configuration
-- file as he/she/they/them/other see pleased.
--
-- It would be nice, if you could mention the author. Thanks!
-- Global configuration
--
-- :h <options> would give you the options
@50-Course
50-Course / keymaps.lua
Created October 30, 2023 12:03
LSP Keymaps passed exported as a module and passed into `on_attach` function
--- Defines the bindings for various operations performed by the LSP with combination of
--- chords.
local map = require('utils').remap
local M = {}
M.on_attach = function(client, bufnr)
client = client
buffer = bufnr