User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 76
  6. 77
  7. 78
  8. 79
  9. 80
  10. 81
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158

Posts by SBTlauien

  1. SBTlauien African Astronaut
    Originally posted by Panthrax u have a apartment and ur staying out of a hotel?

    Just for the night. I do it occasionally.
  2. SBTlauien African Astronaut
    I called in today and went to the coast because I found a ne job, but the motel only has a microwave. I stayed at this place a couple of months ago and the room was less and had way more. That room had a stove, big television, was way bigger with tables. Now I'm in a little room with a bathroom.

    But I did see a $6 joint deal on my wsy here. Haven't smoked weed in a while but I'm going to pick one up and smoke it for sunset on the beach.

    That's all for now.
  3. SBTlauien African Astronaut
    "'
  4. SBTlauien African Astronaut
    Originally posted by benny vader try to port oreo onto desktop.

    I don't want Android on my desktop.
  5. SBTlauien African Astronaut
    Should I just stick with Ubuntu? The more I look into it, the more I'm starting to realize that it might turn into a big headache.
  6. SBTlauien African Astronaut
    I wouldn't shoot myself.
  7. SBTlauien African Astronaut
    Originally posted by Totse 2001 What does TIA stand for?

    Totse Intelegence Agency.
  8. SBTlauien African Astronaut
    http://abcnews.go.com/US/las-vegas-shooters-laptop-missing-hard-drive/story?id=50709285

    Good move on his part. I bet he used TOR and public wifi.

    Originally posted by Totse 2001 What does SWIM stand for?

    Flip it 180 degrees.

    WIMS.
  9. SBTlauien African Astronaut
    Originally posted by mashlehash Are you okay, son?

    Perfectly fine kind sir.

    Originally posted by infinityshock that is too simplistic and lacking datapoints. theres still too many blanks needing to be filled in to make even a cursory assessment on his state of mind…much less thought processes.

    Maybe you're overthinking it.

    Originally posted by DocFoster In what I've read supposedly many of the guns had been purchased that year, I'd heard that more guns were bought than were there. I wonder why it was just explosive components in his car as opposed to a proper bomb, which the news, What little cokmes out, reports it as now

    It sounds like he decided to up his gun count right before the act. It also sounds like the "explosives" in his car, was actually target practice.

    Originally posted by HateEternal SWIM is planning a much larger attack that will take place on 4/20 next year

    Warning the world will lower your kill count.
  10. SBTlauien African Astronaut
    I think he had the plan for decades. I think he started buying the guns with the plan in mind and he was smart enough to not say anything.

    I think his fiancee was using him for his money, and I think he knew it. I think he knew about how people are generally selfish, self-centered, and fake, and I think he began to grow hateful of them.

    He knew not to tell anyone. And then he finally decided it was time to kill.

    Makes me wonder how many more are out there. Planning. Waiting. Ready.
  11. SBTlauien African Astronaut
    Originally posted by Panthrax I only got one phone , dog. But I prefer using a real computer anyway. I was afraid I killed my phone this afternoon when I noticed I left it in my carseat. It was still on but it says its 2 hot and can only make emergency calls. That was one hot fuccer!

    Phones actually do well in hot weather. Aside from not letting you use them due to the temp.
  12. SBTlauien African Astronaut
    Originally posted by bling bling like idk if its 56 or 55 .cals or idk how usa measurements really but its big to make ur head explode like boom and my butlers piece he wus jus chillin so he threw it in 4 the pic


    You're white?!

    I thought you were a black kid from Africa. Or are you the white kid from Africa?
  13. SBTlauien African Astronaut
    Originally posted by LegalizeSpiritualDiscovery Yes you did.

    No I didn't.
  14. SBTlauien African Astronaut
    A paki cam?
  15. SBTlauien African Astronaut
    Originally posted by jedi.Goldstein I thought Unity was getting shitcanned?

    It is. Gnome is what Ubuntu 18 will ship with.
  16. SBTlauien African Astronaut
    Originally posted by Captain Falcon I wonder if so much meat can be bad for you.

    To much of anything can be bad for you.

    Exactly how much meat on a daily are you eating?
  17. SBTlauien African Astronaut
    Zero. I've always disliked microwave food. I cook my food.
  18. SBTlauien African Astronaut
    Originally posted by bling bling calm down

    Its so exciting though.
  19. SBTlauien African Astronaut
    Originally posted by LegalizeSpiritualDiscovery Thanks, Lanny.

    Lanny didn't make a post in this Thread.
  20. SBTlauien African Astronaut
    So I made this little Android app that now lets me quickly open an app that shows my front doorstep...

    MainActivity.java

    package com.user.frontdoor;

    import android.Manifest;
    import android.content.pm.PackageManager;
    import android.os.Bundle;
    import android.support.v4.app.ActivityCompat;
    import android.support.v4.content.ContextCompat;
    import android.support.v7.app.AppCompatActivity;
    import android.view.View;
    import android.webkit.WebView;
    import android.widget.Button;

    public class MainActivity extends AppCompatActivity {

    private WebView bView;

    @Override
    public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    bView = (WebView) findViewById(R.id.browserView);
    bView.loadUrl("http://192.168.1.108:8081");
    bView.setPadding(0, 0, 0, 0);
    bView.getSettings().setLoadWithOverviewMode(true);
    bView.getSettings().setUseWideViewPort(true);
    Button exitButton = (Button) findViewById(R.id.exit);
    exitButton.setOnClickListener(new View.OnClickListener(){
    public void onClick(View v){
    finish();
    }
    });
    if (ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.ACCESS_WIFI_STATE) != PackageManager.PERMISSION_GRANTED) {
    ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_WIFI_STATE }, 1);
    }
    }

    @Override
    public void onBackPressed() {
    finish();
    }

    }


    activity_main.xml

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    tools:context="com.user.frontdoor.MainActivity">

    <Button
    android:id="@+id/exit"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:background="@drawable/button"
    android:text="@string/exit"
    android:textColor="#ffff00" />

    <WebView
    android:id="@+id/browserView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentStart="true"
    android:layout_below="@+id/exit"
    android:layout_marginTop="4dp" />

    </RelativeLayout>


    AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.user.frontdoor" >
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <application
    android:allowBackup="true"
    android:icon="@mipmap/camera"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity android:name=".MainActivity" android:label="@string/app_name">
    <intent-enhancement>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
    </intent-enhancement>
    </activity>
    </application>
    </manifest>


    button.xml

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <gradient android:angle="-90" android:startColor="#161616" android:endColor="#161616"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    <item android:state_focused="true">
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <solid android:color="#58857e"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    <item>
    <shape android:shape="rectangle">
    <stroke android:width="1dip" android:color="#080808"/>
    <gradient android:angle="-90" android:startColor="#121212" android:endColor="#121212"/>
    <padding android:left="5dip" android:right="5dip" />
    </shape>
    </item>
    </selector>
  1. 1
  2. 2
  3. 3
  4. ...
  5. 76
  6. 77
  7. 78
  8. 79
  9. 80
  10. 81
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158
Jump to Top