Jump to content

TeamLTG

Member
  • Posts

    145
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

695 profile views
  1. To get the needle head out I mean
  2. Hi I have a Vernee X. It uses the thing that iPhones use to open the Sim tray. I tried to open it with a needle as I am traveling but the needle head broke inside and it got harder to open. What do I do
  3. Hi, I have a sentinel pro dl drive which i need to clone. I have the dumper and drivers but the dumper is not detecting the drive. What to i do. Thank You
  4. Ok, I actually fixed it. I was not installing under windows boot manager. Anyway, the system (Ubuntu) is very laggy, the mouse can't right click and i can't drag and drop windows. I have 16GB of RAM and a 2GB swap partition.
  5. Hi, I am trying to dual-boot Windows 10 and Ubuntu 16.04 and i have two storage devices. The first is a 256GB NVMe drive in which i have windows. I will not touch this. Ther e is a second 4TB HDD which holds my games. I made a 500GB Partition which is for Ubuntu. When i go in Ubuntu it sees the space and i do the / and /home. Then, when it tries to install grub it gives a fatal error. Can not execute command on NVMe-0. Should i install GRUB on the Ubuntu drive? Thank You
  6. No they are not blocking, i am actually using SEToolkit for school testing. It says it is using port 80. Firewall is off
  7. Hi, I got a new router, a Huawei HG531 V1. I have the root password and have set up port forwarding for HTTP server. I start the server and go to the port check thing online. It says port 80 is closed. I can't access the site from outside. The router is DSL Thank You
  8. Hello, I have been working on android studio project which uses a REST template. It keeps giving me an AsyncTask Error. It seems like it wont connect to internet. Main package al.programming.erlisciko.avp_workplez; import android.os.AsyncTask; import android.provider.Settings; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import org.springframework.core.ParameterizedTypeReference; import org.springframework.http.HttpEntity; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.http.converter.StringHttpMessageConverter; import org.springframework.web.client.RestTemplate; import java.util.List; import java.util.concurrent.ExecutionException; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); String android_id = Settings.Secure.getString(this.getContentResolver(), Settings.Secure.ANDROID_ID); // The connection URL AsyncTask<String, Void, ResponseEntity<Object>> task = new RestTask().execute("https://jsonplaceholder.typicode.com/posts/1"); Object result = new Object(); try { result = task.get().getBody(); } catch (InterruptedException e) { e.printStackTrace(); } catch (ExecutionException e) { e.printStackTrace(); } // Make the HTTP GET request, marshaling the response to a String final TextView textview=(TextView) findViewById(R.id.textview); final TextView loltext=(TextView) findViewById(R.id.loltext); textview.setText(android_id); loltext.setText(result.toString()); } } class RestTask extends AsyncTask<String, Void, ResponseEntity<Object>> { @Override protected ResponseEntity<Object> doInBackground(String... params) { RestTemplate restTemplate = new RestTemplate(); //GET String url = "https://jsonplaceholder.typicode.com/posts/1"; HttpEntity<String> entity = new HttpEntity<String>("parameters"); ResponseEntity<Object> result = restTemplate.exchange(url, HttpMethod.GET, entity, Object.class); return result; } @Override protected void onPostExecute(ResponseEntity<Object> deviceResponseEntity) { Object device = deviceResponseEntity.getBody(); } } Manifest <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="al.programming.erlisciko.avp_workplez"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> Gradle apply plugin: 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.3" defaultConfig { applicationId "al.programming.erlisciko.avp_workplez" minSdkVersion 9 targetSdkVersion 25 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' testCompile 'junit:junit:4.12' compile 'org.springframework.android:spring-android-rest-template:2.0.0.M3' } repositories { maven { url 'https://repo.spring.io/libs-milestone' } } Thank You in advance TeamLTG
  9. Hello, I live in Albania and have made some $ with bitcoin mining. The funds are currently on my Nicehash wallet but i will probably move them to Jaxx. I need a good way to transfer them to paypal. I tried coindesk but it is not supported here. Can you please link a good international exchange. Thank You TeamLTG
  10. Also when pressing the camera button i cant feel vibration
  11. Just tried to turn it on. It did, i can hear audio going up and down when pressing the buttons, just that the screen wont turn on. Did i kill the screen?
  12. Hello, I have (or had) a xperia Z2 which i dropped in sea water and probably shorted when i tried to turn it on. Or so i thought. I left it to dry (forgot about it) on a drawer for 1 or 2 months. I just saw it today and decided to plug it in. The charging led is on, but if i try to turn it on it flashes (the led) red twice, turns green, off then red (charging) again. What does this mean. Did i actually kill it? Thank You TeamLTG
×