The "Sommerton Man" is an unknown person who died on the 30. Nov 1948 in Australia. Here you can get the Autopsy Report. The cause of death is unknown, but its rumored that he died from intoxication of an unknown poison.A Cipher has been found under mysterious cirmunstances which seems like a digitless code.<br /> <br /&g...
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); Buffere...
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 Nonuel in Mass Effect 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...
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")); ...
Bank and Cash ->banque->lire, ->banque->modifier, ->banque->configurer, ->banque->consolidate, ->banque->export, ->banque->transfer, ->banque->cheque Barcode ->barcode->lire, ->barcode->creer, ->barcode->suppr...
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 Solcrum 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 Klensal in Mass Effect 1 ...
Here you can find a map with all objects and minerals on the planet Ontarom in Mass Effect 1 ...
Here an example to load an custom application xml config file. // Load Configuration<br /> CurrentConfPath = "C:\\PATH\\TO\\EXE.CONFIG";<br /> ExeConfigurationFileMap configMap = new ExeConfigurationFileMap();<br /> configMap.ExeConfigFilename = CurrentConfPath;<br /> Configuration config = ConfigurationMan...
Create a new Repository from Command Line echo "# asd" >> README.md<br /> git init<br /> git add README.md<br /> git commit -m "first commit"<br /> git branch -M main<br /> git remote add origin https://github.com/bugfishtm/asd.git<br /> git push -u origin main Pu...
Here the code to display a video in a videoView element. VideoView videoview = findViewById(R.id.VIDEOVIEWID); Uri uri = Uri.parse(STRING PATH TO FILE); MediaController mediaController = new MediaController(this); mediaController.setAnchorView(videoview); videoview.setMediaController(mediaController); videoview.setVideoURI(uri); videoview.start(); ...
If you deleted a module via FTP or etc, and getting error messages about missing files - delete all module constants in llx_const. If the module name was "xxx" the consts would be: MAIN_MODULE_XXX<br />...
addExtraField ( $attrname,$label, $type, $pos,$size,$elementtype,$unique = 0,$required = 0,$default_value = '',<br role="presentation" />$param = '',$alwayseditable = 0,$perms = '',$list = '-1',$help = '',$computed = '',$entity = '',$langfile = '',$enabl...
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 Casbin in Mass Effect 1 ...
There is an easy way to avoid that your activity reloads if you change between portrait/landscape view.<br /> Define the class in the manifest file as follow: <br /> <activity android:name=".YourActivity&quo...
This is an easy postfix configuration to backup all emails going to specified domains until the master server is online again. Postfix Configuration [replace yourhostname with your hostname]: smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination<br /> myhostname = yourhostname<br /> ...
1. Rename your .apk to .zip<br /> 2. Unzip<br /> 3. locate classes.dex<br /> 4. Download Dex2Jar (Windows/Linux)<br /> 5. Use cmd/shell to navigate to dex2jar Folder.<br /> 6. Use command "dex2jar <source>" with source as your classes.dex file.<br /> 7. Now you have a new .jar file...
Here you can find a map with all objects and minerals on the planet Amaranthine in Mass Effect 1 ...
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 ...
GETPOST Function to get a value out of $_POST or $_GET request.<br role="presentation" />Varname: Is the name of the vaue provided via the request. The value will be stored in<br role="presentation" />$monChamp.<br role="presentation" />INT: Is a checking string. In this case it checks the value of th...
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 ...
Content Security Header (HSTS) Apache:<br /> Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" Nginx:<br /> add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload'; Content Security Policy (CSP) Apache:<br /> Header always set Content-S...
Here you can find a map with all objects and minerals on the planet Antibaar in Mass Effect 1 ...
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 ...
If SSL Connections fail with Security Protocol Error, this code in Main Function could do the trick! ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls<br /> &a...
Here you can find a map with all objects and minerals on the planet Maji in Mass Effect 1 ...
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); ...
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; ...
Here an example how to combine multiple text files into one large text file.<br /> Here a imaginary situation: you have 3 text files named [text1.txt] [text2.txt] [text3.txt] You want to combine these files into one single file named: [textall.txt]<br /> You can use this quick and easy windows command in cmd console for is, just navigat...
Create a new file: nano /etc/apt/sources.list.d/jitsi-stable.list Input this content to the file to get access to the jitsi repository: deb https://download.jitsi.org stable/ Save the file and run this command to install jitsi: apt install jitsi-meet If the installation manager asks for a hostname, take the full domain name of your jitsi installati...
Flight Radar --------------<br /> Tab PING<br /> Period INCREASE<br /> Comma DECREASE FLIGHT TARGETING --------------<br /> 9 HAIL TARGET<br /> 1-3 &am...
In Constructor super.onCreate(savedInstanceState); // Disable Screenshots<br /> getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);<br /> setContentView(R.layout.activity_main); ...
Here you can find a map with all objects and minerals on the planet Sharjila 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(); } ...
How to use git to clone a remote repository? Open the CommandLine Navigate to the Folder You want to get the repository cloned to Execute Git Command: "git clone https://yourgitlaburl.url/group/repository.git" Now the actual repository files should be in your Folder. A successfull output looks like this: Cloning into 'exam...
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 Trebin in Mass Effect 1 ...
Here are the copies of the unknown book that i found. Page after page... ...
deb http://deb.debian.org/debian buster main deb-src http://deb.debian.org/debian buster main deb http://deb.debian.org/debian-security/ buster/updates main deb-src http://deb.debian.org/debian-security/ buster/updates main deb http://deb.debian.org/debian buster-updates main deb-src http://deb.debian.org/debian buster-updates main ...
A forkbomb is a denial of service bash command that blocks the server, duo to high cpu load.<br /> The script is creating a recursive function and is infinitly launching itself - so the system will be blocked.<br /> <br /> Usefull for testing vHosts which are sharing ressources if high load is affecting other hosts.<br /> (T...
Here you can find a map with all objects and minerals on the planet Mavigon in Mass Effect 1 ...
Illegal Mercenary Activity on this planet to take care of.<br /> Location: Joab / Enoch / Rosetta Nebula ...
Objective is to destroy a vorcha weapons base and flee from the location.<br /> Location: Zada Ban / Xe Cha / The Shrike Abysall ...
Here you can find a map with all objects and minerals on the planet Agebinium in Mass Effect 1 ...