Skip to content

Instantly share code, notes, and snippets.

View sreelakshmig009's full-sized avatar
💪
Working my way

Sreelakshmi sreelakshmig009

💪
Working my way
View GitHub Profile
@TylerFisher
TylerFisher / hosting-on-github.md
Last active November 10, 2024 15:41
Basic steps for hosting on Github

Hey there, apparently people are still using this Gist from 2013! It's out of date! Consult the Github docs.

Steps for Hosting a Website on GitHub

  1. Create a GitHub account on github.com.
  2. Download either [GitHub for Mac][1] or [GitHub for Windows][2], depending on your operating system. Open the app and log in using the account you just created.
  3. (On Mac): After you login, click advanced and make sure that your name and email are correct. Then, click "Install Command Line Tools", just in case you want to start using the command line later in life.
  4. Create a new repository in your GitHub application. Name it your-username.github.io. The name is very important. Note the folder that GitHub is saving the repository to. Make sure the "Push to GitHub?" box is checked.
  5. Move your website's files into the folder that GitHub just created when you made the repository. IMPORTANT: Your homepage HTML file must be called "index.html", and it must exist in the top-level
@rxaviers
rxaviers / gist:7360908
Last active November 20, 2024 00:07
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:
@ao
ao / javascript.js
Created October 29, 2016 18:03
Codility: A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.
function solution(N) {
var binary = N.toString(2);
var length = binary.length;
var ones = [];
for(var i=0; i<length; i++) {
if (binary[i]=='1') ones.push(i);
}
@tyler-austin
tyler-austin / README.md
Created May 31, 2017 22:02
Code Fights - commonCharacterCount

Given two strings, find the number of common characters between them.

Example

For s1 = "aabcc" and s2 = "adcaa", the output should be
commonCharacterCount(s1, s2) = 3.

Strings have 3 common characters - 2 "a"s and 1 "c".

Input/Output

@by12380
by12380 / amazon-lp-from-leetcode.txt
Last active September 30, 2024 14:07
Amazon LP Questions from LeetCode Interview Experiences
1.https://interviewgenie.com/blog-1/category/Amazon+interviews
2.https://www.youtube.com/channel/UCw0uQHve23oMWgQcTTpgQsQ/playlists
3.https://medium.com/@scarletinked/are-you-the-leader-were-looking-for-interviewing-at-amazon-8301d787815d
Tell me about a situation where you had a conflict with someone on your team. What was it about? What did you do? How did they react? What was the outcome?
Give an example of when you saw a peer struggling and decided to step in and help. What was the situation and what actions did you take? What was the outcome?
Tell me about a time you committed a mistake?
Tell me about a time when your earned your teammate's trust?
@tykurtz
tykurtz / grokking_to_leetcode.md
Last active November 20, 2024 02:18
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@Ruchip16
Ruchip16 / My.Contributions.md
Last active January 6, 2022 17:21
Highlighting my wins in 2021

January 2021

  • I got accepted into Microsoft learn Student Ambassador program & that was the best thing ever happened to me at the very start of this year. Doodles 🎉
  • Being the first Microsoft Learn Student Ambassador on my campus I made sure to spread the word about this amazing community in my college by organizing events and hence created an inclusive Whatsapp group for 100+ people to discuss and share any doubts or anything which can benefit them greatly in their career related to tech.

February 2021

  • Started building my personal brand on Twitter with 650+ audience with a motive to learn in public, network & interact with the MLSA Community around the globe and with fellow gold ambassadors - Link
  • Got accepted as a Mentee at GirlScript Summer of Code and contributed to Manthan, HotelonTouch, and Neo-Algo Docs, among the 20 repositories.