This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESPAsyncTCP.h> // Manual installation from https://github.com/me-no-dev/ESPAsyncTCP | |
#include <AsyncHTTPRequest_Generic.h> // Docs available at https://github.com/khoih-prog/AsyncHTTPRequest_Generic | |
#include <ESP8266WiFi.h> | |
AsyncHTTPRequest request; | |
void setup() { | |
Serial.begin(9600); | |
WiFi.mode(WIFI_STA); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface KeyboardAndScrollViewController () | |
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView; | |
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *scrollViewBottomConstraint; | |
@end | |
@implementation KeyboardAndScrollViewController | |
- (void)viewDidLoad { | |
[super viewDidLoad]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package be.uest.terva.activity; | |
import android.app.Activity; | |
import android.content.Intent; | |
import android.graphics.Bitmap; | |
import android.graphics.BitmapFactory; | |
import android.graphics.Matrix; | |
import android.media.ExifInterface; | |
import android.net.Uri; | |
import android.os.Build; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<application | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name"> | |
... | |
<provider |