Skip to content

Instantly share code, notes, and snippets.

View adamgajzlerowicz's full-sized avatar
👋
Clear is better than clever

Adam Gajzlerowicz adamgajzlerowicz

👋
Clear is better than clever
View GitHub Profile
@remy
remy / .eslintignore
Last active April 13, 2021 04:48
My Next.js eslint config + `npm install --save-dev eslint eslint-plugin-react babel-eslint`
.next
out
@Antarix
Antarix / SendSMS.java
Created August 23, 2013 09:27
Send SMS in android with delivery report
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);