Here you can find a map with all objects and minerals on the planet Mavigon in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Sharjila in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Edolus in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Chohe in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nepheron in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Amaranthine in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Ontarom in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Tuntau in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Antibaar in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Eletania in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Xawin in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Binthu in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Trebin in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Casbin in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Rayingri in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Presrop in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nodacrux in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Klensal in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nepmos in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nonuel in Mass Effect 1 ...
This Links will guide you to your Youtube Thumbnail: https://img.youtube.com/vi/<insert-youtube-video-id-here>/default.jpg https://img.youtube.com/vi/<insert-youtube-video-id-here>/hqdefault.jpg https://img.youtube.com/vi/<insert-youtube-video-id-here>/mqdefault.jpg https://img.youtube.com/vi/<insert...
Examples of HTML Forwarding and Page Refreshing Refresh the Page after 15 seconds <meta http-equiv="refresh" content="15"> Redirection after 3 Seconds <meta http-equiv="refresh" content="3; url=http://url.com/"> Redirect immidiately <meta http...
If you encounter z-Index Problems on safari you can try to put that code into your z-indexed element: -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0); ...
USE WITH OWN RISK - ALL FIREWALL RULES WILL BE DELETED IPv4<br /> <br /> iptables -F<br /> iptables -X<br /> iptables -t nat -F<br /> iptables -t nat -X<br /> iptables -t mangle -F<br /> iptables -t mangle -X<br /> iptables -P INPUT ACCEPT<br /> iptables -P FORWARD ACCEPT<br /> iptables -P...
Here a simple Download Manager Class. Use like this: DownloadManager DM = new DownloadManager();<br /> DM.init(....);<br /> DM.execute(); Here the Class: import android.os.AsyncTask; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.io.PrintWriter; import java....
Here is the Linux code to restart all jitsi services: /etc/init.d/jicofo restart<br /> /etc/init.d/jitsi-videobridge2 restart<br /> /etc/init.d/prosody restart ...
Here you can find a map with all objects and minerals on the planet Chasca in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Altahe in Mass Effect 1 ...
This is Example for Internet Permissions Android Manifest XML (for every Permissoin u need one of this fitting block) <!-- Declare Use Of Internet --><br /> <uses-permission android:name="android.permission.INTER...
Delete with Condition:<br /> DELETE FROM tablename WHERE a = 1; Delete all entries in a table:<br /> DELETE FROM tablename; ...
This is the Main Layout of a sitemap.xml File <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://w...
ModRewrite needs to be enabled in apache2 by executing:<br /> a2enmod rewrite Modify your HTaccess File like this if index.php is your main php File: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?i=$1 [L,QSA] For example, if the user enters the UR...
This may fix this error ---<br /> javax.net.ssl.SSLHandshakeException: javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0x6abff398:Failure in SSL library, usually a protocol error error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:7440x684dfce0:0x00000000) Add this t...
For an object in space in a perfect circular orbit around another object (should be rare) the equation to calculate velocity of the orbiting object is: Scientifical designations: v = Velocity in m/s<br /> G = Gravitational Constant<br /> r = Radius in Meters<br /> M = Mass of the Central Body in kg Animation of an object orbiting ...
Passing the parameter Intent intent= new Intent(mContext,Activity.class);<br /> intent.putExtra("test","value")); Get value Intent intent=getIntent();<br /> msg_textview.setText(intent.getStringExtra("test")); ...
Here you can find a map with all objects and minerals on the planet Metgos in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Agebinium in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Maji in Mass Effect 1 ...
Write a File in Android to Internal Storage from String void writeFile(String data, Context context, String filename) throws IOException { OutputStreamWriter outStream = new OutputStreamWriter(context.openFileOutput(filename, Context.MODE_PRIVATE)); outStream.write(data); outStream.close(); } ...
Here is an example function to get the full html output code of an URL provided to the function into a string.<br /> You can get the data by using a string variable which gets the output: string variable = gethtmlcontent("https://thisisapage"); &...
Here you can find a map with all objects and minerals on the planet Solcrum in Mass Effect 1 ...
<FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" app:layout_constraintTop_toBottomOf="@+id/main_topbar"> <VideoView android:id="@+id/videoViewMain" android:layout_width="match_parent" android:layout_he...
Find a String inside Files<br /> grep -rnw '/path/to/somewhere/' -e 'pattern'<br /> <br /> Find File in Folder Structure<br /> find ./ -name card.php Display Linux System Informations<br /> uname Display Kernel Releases Informations<br /> uname -r Display Systems uptime and load av...
This unix Command will make a file non-writable. Make non-Writable chattr +i file Make writable again chattr -i file See Status: lsattr file ...
Enter this in your Websites .htaccess main directory to let the server redirect<br /> HTTP404 Errors or misc to a specified site. ErrorDocument 400 /error/400.php<br /> ErrorDocument 401 /error/401.php<br /> ErrorDocument 403 /error/403.html<br /> ErrorDocument 404 /error/404.php<br /> ErrorDocument 500 /error/405.php ...
Here the code to get the current Directory! string path = Directory.GetCurrentDirectory(); <br /> See more detailed Info here:<br /> https://docs.microsoft.com/de-de/dotnet/api/system.io.directory.getcurrentdirectory?view=netcore-3.1 ...
If you put this in your htaccess, the server will forward all request from HTTP to HTTPS<br /> (with all details after the domain included like get variables)<br /> It will also rewrite all www.yourdomain.de requests to yourdomain.de.<br /> So its not possible to create 2 sessions on the same website. Replace yourdomain.de with yo...
In Constructor super.onCreate(savedInstanceState); // Disable Screenshots<br /> getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);<br /> setContentView(R.layout.activity_main); ...
Dialog XML File: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="m...
Objective is to disable a Geth Weather device, which changes the planets atmossphere.<br /> Location: Canalus / Dirada / Pylos Nebula ...