Here you can find a map with all objects and minerals on the planet Nonuel 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 Rayingri 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 Mavigon 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 Nodacrux 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 Amaranthine 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 Edolus in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Nepmos in Mass Effect 1 ...
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"...
This script is for a proxmox host to set up 2 bridges. 1 provides static ip 4 and 6 to vservers 1 provides NAT routed connection Start of /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback...
Here you can find a map with all objects and minerals on the planet Sharjila in Mass Effect 1 ...
Here is a sample command for cmd to set a Port Forwarding on a Windows Client Example: netsh interface portproxy add v4tov4 listenaddress=192.168.178.54 listenport=1254 connectaddress=192.168.178.55 connectport=80 ...
Here you can find a map with all objects and minerals on the planet Antibaar in Mass Effect 1 ...
Delete with Condition: DELETE FROMtablename WHERE a = 1; Delete all entries in a table: DELETE FROM tablename; ...
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 Klensal in Mass Effect 1 ...
Put this into an element to prevent padding / borders from changing the width of an element. -webkit-box-sizing: border-box; /* Chrome */ -moz-box-sizing: border-box; /* Firefox */ box-sizing: border-box; /* Opera/IE */ ...
Example of replacing a sign in a string (works with more than one sign) $newstring = str_replace("TEXT", "NEW TEXT", $initialstring); ...
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); transform: translate3d(0, 0, 0); ...
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 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 Chohe in Mass Effect 1 ...
You can download my full Paragon Savegame here! Details: -> All Missions and DLC Mission achieved -> Cerberus has taken over Collectors Ship -> All Crew Members and Kaidan survived -> Council Survived -> ME2 has been played with ME1 full Paragon Savegame and all Missions done This savegame is the perfect ME3 start...
Here you can find a map with all objects and minerals on the planet Altahe in Mass Effect 1 ...
1. Rename your .apk to .zip 2. Unzip 3. locate classes.dex 4. Download Dex2Jar (Windows/Linux) 5. Use cmd/shell to navigate to dex2jar Folder. 6. Use command "dex2jar <source>" with source as your classes.dex file. 7. Now you have a new .jar file. This is the output of the .dex file. 8. You can use JDGUI to decompile...
<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...
Here you can find a map with all objects and minerals on the planet Presrop in Mass Effect 1 ...
Only to store. I am not working on this enigma Cr4P ...
If you put this in your htaccess, the server will forward all request from HTTP to HTTPS (with all details after the domain included like get variables) It will also rewrite all www.yourdomain.de requests to yourdomain.de. So its not possible to create 2 sessions on the same website. Replace yourdomain.de with your own domain which is needed. Rewri...
Objective is to destroy a vorcha weapons base and flee from the location. Location: Zada Ban / Xe Cha / The Shrike Abysall ...
ModRewrite needs to be enabled in apache2 by executing: 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 URL yourdomain.ending/wik...
Here code to check if a string exists in another string! $string = 'This is a String'; if (strpos($string , 'This') !== false) { echo 'true'; # STRING CONTAINS WORD "This" } else { # String not found inside $string } ...
Code for an Animated Border on a Box, only with CSS and HTML used! <style> .container{ padding-top: 20px; padding-bottom: 20px;} .box{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: #111845a6; box-sizing: border-box; overflow: hidden; box-shadow: 0 20px 50px rgb(23, ...
Here is an example function to get the full html output code of an URL provided to the function into a string. You can get the data by using a string variable which gets the output: string variable = gethtmlcontent("https://thisisapage"); public string gethtmlcontent(String URL) { HttpWebRequest request; HttpWebResponse response; ...
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 ...
This is the code for an .htaccess file which does: -> Redirect all www requests to non-www requests -> Always force SSL RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP_HOST} ^www\\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] ...
Create a new Repository from Command Line echo "# asd" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/bugfishtm/asd.git git push -u origin main Push an existing repository from the command line git remote add origin ht...
<style> .pie { /* Basic layout */ display: inline-block; width: 10em; height: 10em; border-radius: 50%; /* A little styling */ border: .15em solid #fff; box-shadow: 0 .075em .2em .05em rgba(0,0,0,.25); /* fixes a minor clipping issue in Chrome */ background-origin: border-box; } .pie { background-image: conic-gradient( #d44 calc(3.6de...
Here is the Linux code to restart all jitsi services: /etc/init.d/jicofo restart /etc/init.d/jitsi-videobridge2 restart /etc/init.d/prosody restart ...
Objective is to locate a protean sphere and report it to the citadel. Location: Gei Hinnom / Sheol / Hades Nexus Unfortunately there are no Images available. ...
Simple Code to read a File in Android (FROM INTERNAL STORAGE) to a String String readFile(Context context, String filename) throws IOException { String ret = ""; InputStream inStream = context.openFileInput(filename); if ( inStream != null ) { InputStreamReader inputStreamReader = new InputStreamReader(inStream); BufferedReader bu...
Objective is to disable a Geth Weather device, which changes the planets atmossphere. Location: Canalus / Dirada / Pylos Nebula ...
Here a simple Download Manager Class. Use like this: DownloadManager DM = new DownloadManager(); DM.init(....); 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.net.HttpURLConnection; import java.net.URL; public class ...
Objective is to reactivate a mesh and use him to break all walls which are blocking the way to retrieve an ancient artifact. Location: Taitus / Talava / Caleston rift ...
In Constructor super.onCreate(savedInstanceState); // Disable Screenshots getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE); setContentView(R.layout.activity_main); ...