Skip to content

Instantly share code, notes, and snippets.

View mgwedd's full-sized avatar
⚒️

Michael Wedd mgwedd

⚒️
View GitHub Profile
@ozcanzaferayan
ozcanzaferayan / App.tsx
Last active January 26, 2024 13:39
React Native Donut Chart with react-native-svg
import React from 'react';
import { View } from 'react-native';
export const App: React.FC = () => {
return (
<View style={{flexDirection: 'row', justifyContent:'center'}}>
<DonutChart radius={15} percentage={25} width={100}/>
<DonutChart radius={15} percentage={65} width={100}/>
<DonutChart radius={15} percentage={70} width={100}/>
@Pulimet
Pulimet / AdbCommands
Last active May 28, 2024 14:51
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@yoavniran
yoavniran / ultimate-ut-cheat-sheet.md
Last active May 28, 2024 17:41
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai, Sinon, and Jest
@jdennes
jdennes / Procfile
Last active December 31, 2021 09:24
Flask application to demonstrate authenticating with the Campaign Monitor API using OAuth. Uses the createsend, Flask, and Flask-OAuth packages.
web: python app.py