Skip to content

Instantly share code, notes, and snippets.

View arteevraina's full-sized avatar
:octocat:
Working from home

Arteev Raina arteevraina

:octocat:
Working from home
View GitHub Profile
@antrikshmisri
antrikshmisri / GSoC2021_Final_Submission.md
Last active August 19, 2022 04:35
Final code submission for GSoC2021.
gsoc fury

Google Summer of Code 2021 Final Work Product

  • Name: Antriksh Misri
  • Organisation: Python Software Foundation
@aryamanpuri
aryamanpuri / SpeechRecognition.js
Last active June 5, 2024 15:17
Speech Recognition using Web Speech API
import React, { Component } from "react"
//------------------------SPEECH RECOGNITION-----------------------------
const SpeechRecognition = SpeechRecognition || webkitSpeechRecognition
const recognition = new SpeechRecognition()
recognition.continous = true
recognition.interimResults = true
recognition.lang = 'en-US'
@moksh-mahajan
moksh-mahajan / GSoC19_WorkProduct.md
Last active August 19, 2022 07:13
Final Work Product Submission for Google Summer of Code 2019 at The Mifos Initiative

Google Summer of Code 2019 Final Report

Moksh Mahajan | GitHub | Email | LinkedIn

gsoc-mifos another copy

Organisation: The Mifos Initiative

Project Name: Android Field Operations App Version 6

Mentor: Tarun Mudgal, Ishan Khanna

Project github repository link: master branch

Commits made during GSoC: Pull Requests

@Coder-ACJHP
Coder-ACJHP / ShareImageOnSocialMedia.swift
Created March 7, 2019 08:05
Example code for "how to share image on Facebook, Instagram, Whatsapp and Activity" with Swift 4+
/* Common steps to use these codes */
// 1- you need to implement FBSharekit for sharing on Facebook
// 2- Copy and Paste the following text to your "info.plist" (anywhere)
/*
<key>FacebookAppID</key>
<string>08760425023140553</string> //This is a mock id, you must add your own real app id else it never will work
<key>FacebookDisplayName</key>
<string>DoYourBest</string> //Add your real app name here
<key>LSApplicationQueriesSchemes</key>