Top 50 Entries

Most viewed top 50 entries!
^Top
<< Back
Mobile-Menu










Map - Mavigon

Here you can find a map with all objects and minerals on the planet Mavigon in Mass Effect 1 ...

Map - Sharjila

Here you can find a map with all objects and minerals on the planet Sharjila in Mass Effect 1 ...

Map - Edolus

Here you can find a map with all objects and minerals on the planet Edolus in Mass Effect 1 ...

Map - Chohe

Here you can find a map with all objects and minerals on the planet Chohe in Mass Effect 1 ...

Map - Nepheron

Here you can find a map with all objects and minerals on the planet Nepheron in Mass Effect 1 ...

Map - Amaranthine

Here you can find a map with all objects and minerals on the planet Amaranthine in Mass Effect 1 ...

Map - Ontarom

Here you can find a map with all objects and minerals on the planet Ontarom in Mass Effect 1 ...

Map - Tuntau

Here you can find a map with all objects and minerals on the planet Tuntau in Mass Effect 1 ...

Map - Antibaar

Here you can find a map with all objects and minerals on the planet Antibaar in Mass Effect 1 ...

Map - Eletania

Here you can find a map with all objects and minerals on the planet Eletania in Mass Effect 1 ...

Map - Xawin

Here you can find a map with all objects and minerals on the planet Xawin in Mass Effect 1 ...

Map - Binthu

Here you can find a map with all objects and minerals on the planet Binthu in Mass Effect 1 ...

Map - Trebin

Here you can find a map with all objects and minerals on the planet Trebin in Mass Effect 1 ...

Map - Casbin

Here you can find a map with all objects and minerals on the planet Casbin in Mass Effect 1 ...

Map - Rayingri

Here you can find a map with all objects and minerals on the planet Rayingri in Mass Effect 1 ...

Map - Presrop

Here you can find a map with all objects and minerals on the planet Presrop in Mass Effect 1 ...

Map - Nodacrux

Here you can find a map with all objects and minerals on the planet Nodacrux in Mass Effect 1 ...

Map - Klensal

Here you can find a map with all objects and minerals on the planet Klensal in Mass Effect 1 ...

Map - Nepmos

Here you can find a map with all objects and minerals on the planet Nepmos in Mass Effect 1 ...

Map - Nonuel

Here you can find a map with all objects and minerals on the planet Nonuel in Mass Effect 1 ...

Thumbnail URLs

This Links will guide you to your Youtube Thumbnail: https://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/default.jpg https://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/hqdefault.jpg https://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/mqdefault.jpg https://img.youtube.com/vi/&lt;insert...

HTML Forwarding with Meta

Examples of HTML Forwarding and Page Refreshing Refresh the Page after 15 seconds &lt;meta http-equiv=&quot;refresh&quot; content=&quot;15&quot;&gt; Redirection after 3 Seconds &lt;meta http-equiv=&quot;refresh&quot; content=&quot;3; url=http://url.com/&quot;&gt; Redirect immidiately &lt;meta http...

Safari Browser z-Index not Working

If you encounter z-Index Problems on safari you can try to put that code into your z-indexed element: &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; -webkit-transform: translate3d(0, 0, 0);<br /> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;transform: translate3d(0, 0, 0); ...

IpTables Flush And Allow All Traffic

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...

Download Manager Class

Here a simple Download Manager Class. Use like this: &nbsp; DownloadManager DM = new DownloadManager();<br /> &nbsp; DM.init(....);<br /> &nbsp; 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....

Restart Jitsi Services

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 ...

Map - Chasca

Here you can find a map with all objects and minerals on the planet Chasca in Mass Effect 1 ...

Map - Altahe

Here you can find a map with all objects and minerals on the planet Altahe in Mass Effect 1 ...

Check For Permission and Request

This is Example for Internet Permissions Android Manifest XML (for every Permissoin u need one of this fitting block) &nbsp;&nbsp;&nbsp; &lt;!-- Declare Use Of Internet --&gt;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;uses-permission android:name=&quot;android.permission.INTER...

Delete Database SQL Entries [Delete From]

Delete with Condition:<br /> DELETE FROM&nbsp;tablename WHERE a = 1; Delete all entries in a table:<br /> DELETE FROM tablename; ...

Create a sitemap.xml for SEO

This is the Main Layout of a sitemap.xml File &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;urlset &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns=&quot;http://www.sitemaps.org/schemas/sitemap/0.9&quot; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:xsi=&quot;http://w...

SEO Friendly URLs with PHP

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] &nbsp; For example, if the user enters the UR...

Android 4/5 SSL Fix over Google Play

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...

Object in Perfect Circular Orbit

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 Argument to an Intent

Passing the parameter Intent intent= new Intent(mContext,Activity.class);<br /> intent.putExtra(&quot;test&quot;,&quot;value&quot;)); Get value Intent intent=getIntent();<br /> msg_textview.setText(intent.getStringExtra(&quot;test&quot;)); ...

Map - Metgos

Here you can find a map with all objects and minerals on the planet Metgos in Mass Effect 1 ...

Map - Agebinium

Here you can find a map with all objects and minerals on the planet Agebinium in Mass Effect 1 ...

Map - Maji

Here you can find a map with all objects and minerals on the planet Maji in Mass Effect 1 ...

Write a File to Android Internal Storage from String

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(); } ...

Get Remote HTML Code as String

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(&quot;https://thisisapage&quot;); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&...

Map - Solcrum

Here you can find a map with all objects and minerals on the planet Solcrum in Mass Effect 1 ...

Display a Video Centered (in XML)

&lt;FrameLayout android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;match_parent&quot; app:layout_constraintTop_toBottomOf=&quot;@+id/main_topbar&quot;&gt; &lt;VideoView android:id=&quot;@+id/videoViewMain&quot; android:layout_width=&quot;match_parent&quot; android:layout_he...

Command Line Hints

Find a String inside Files<br /> grep -rnw &#39;/path/to/somewhere/&#39; -e &#39;pattern&#39;<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...

Linux make file Immune

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 ...

HTAccess own Error Documents

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 ...

Get the current Directory

&nbsp;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 &nbsp; &nbsp; ...

HTAccess Forward HTTP to HTTPS

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...

Disable Screenshots/Capturing

In Constructor super.onCreate(savedInstanceState); // Disable Screenshots<br /> getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);<br /> setContentView(R.layout.activity_main); ...

Creating a Pop-Up Dialog

Dialog XML File: &lt;RelativeLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; xmlns:tools=&quot;http://schemas.android.com/tools&quot; android:layout_width=&quot;fill_parent&quot; android:layout_height=&quot;fill_parent&quot;&gt; &lt;LinearLayout android:layout_width=&quot;m...

Anomaly: Canalus

Objective is to disable a Geth Weather device, which changes the planets atmossphere.<br /> Location: Canalus / Dirada / Pylos Nebula ...

Switches: 3 | Arrivals: 8 | Visits: 11
This Website is using Session Cookies for Site Functionality.