Skip to content

Instantly share code, notes, and snippets.

View jamesgeorge007's full-sized avatar

James George jamesgeorge007

View GitHub Profile
@MarcDiethelm
MarcDiethelm / Contributing.md
Last active July 6, 2024 13:12
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.

@rxaviers
rxaviers / gist:7360908
Last active July 28, 2024 01:40
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:
@roachhd
roachhd / README.md
Last active July 26, 2024 15:34
EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: 😄

@CLAassistant
CLAassistant / SAP_CLA
Last active July 8, 2024 16:32
SAP Individual Contributor License Agreement
### SAP Individual Contributor License Agreement
Thank you for your interest in contributing to open source software projects (“Projects”) made available by SAP SE or its affiliates (“SAP”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to SAP in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact opensource@sap.com.
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.
**Copyright License.** You hereby grant, and agree to grant, to SAP a non-exclusive, perpetual, irrevocable, worldwi
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 28, 2024 03:34
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@jamesgeorge007
jamesgeorge007 / GUI.java
Last active February 22, 2018 12:56
This is a very simple GUI application in the swing library written in Java which computes the Net Amount based on the choices received from the user.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class netAmount_Calculator extends JFrame
{
private Label billAmount,modeOfPayment,Discount,netAmount;
private Button discountButton,netAmountButton,Stop;
private TextField billAmount_tf,modeOfPaymnet_tf,Discount_tf,netAmount_tf;
private JComboBox cb;
String mode_of_payment[]={"Cash","Cheque","Credit Card"};
@jamesgeorge007
jamesgeorge007 / array_operations.go
Last active June 18, 2018 10:15
Go lang implementation of the basic Array operations like inserting, deleting and sorting using the Bubble sorting algorithm.
package main
import "fmt"
func main(){
var A[25] int
var n, pos, el, temp, mid, first, last int
fmt.Println("Number of elements <=25:")
@jamesgeorge007
jamesgeorge007 / web_scraping_sample.py
Last active February 22, 2018 12:56
This particular code snippet makes use of the Beautiful Soup library to extract all the links from a particular website where the '#' are skipped while './' are concatenated with https::/learncodeonline.in along with rest of the part available as part of the URL.
import requests
import bs4
res = requests.get('https://learncodeonline.in')
soup = bs4.BeautifulSoup(res.text, 'lxml')
links = soup.find_all('a', href=True)
for i in links:
@jamesgeorge007
jamesgeorge007 / array_operations.c
Last active February 22, 2018 12:55
Implementation of the basic Array manipulation operations like searching, deleting and inserting elements as long as the user wants in the C language.
#include<stdio.h>
void main()
{
int n, A[25], i, el, pos, choice, position, index = 0;
char cont='y';
printf("Number of elements:");
scanf("%d", &n);