Advanced Search
Search Results
476 total results found
.NET Framework und Core Kompatibilitäten
Quelle: https://stackoverflow.com/questions/40527541/c-sharp-library-for-net-core-and-net-framework Übersicht Target Plattform Name Alias Versions .NET Plattform Standard netstandard 1.0 1.1 1.2 1.3 1.4 1.5 1.6 ...
nginx
Serialisieren von Objekten
Serialisierung ToBinary /// <summary> /// Serializes to binary. /// </summary> /// <param name="value">The value.</param> /// <returns></returns> public static byte[] SerializeToBinary(object value) { using (MemoryStream ms = new MemoryStream()) { ...
Nginx Proxy Manager
Setup.dll Sample and Walkthrough: Terms & Conditions / End User License Agreement for a Smart Device CAB installer
Quelle: http://www.mobilepractices.com/2008/10/setupdll-sample-and-walkthrough-terms.html
Notepad++
Software für Windows Mobile 6 entwickeln - wie fange ich an?
Quelle: http://www.techfiles.de/frankpr/Software%20f%C3%BCr%20Windows%20Mobile%206%20entwickeln.htm
O&O Shutup
String Format
Digits after decimal point This example formats double to string with fixed number of decimal places. For two decimal places use pattern „0.00“. If a float number has less decimal places, the rest digits on the right will be zeroes. If it has more decimal pla...
Octoprint
Serialisieren von Objekten nach XML in Java
Das Serialisieren von Objekten in Java und gleichzeitigem Abspeichern ist sehr einfach. Folgende zwei Methoden werden für das Laden und Speichern benötigt. Speichern /** * @param fileName * @param obj */ public void SerializeObjectToFile( ...
Oracle
Text von Konsolenanwendung mit Umlauten und Sonderzeichen ausgeben
Problem Textausgabe in JAVA ist nicht ganz so trivial wie man meint. Denn Umlaute werden nicht richtig wiedergegegeben, da die Konsole eine andere CodePage verwendet. Das Betrifft z.B. alle Ausgaben von System.out.println("äöüÄÖÜß"); Das Probl...
Verbindung MySql über Java
Beschreibung Möchte man auf eine MySql-Datenbank mit Java zugreifen, so gibt es dafür von der MySql-Website einen entsprechenden Connector. Die Datei kann man hier downloaden. Einbinden des Connectors Die heruntergeladenen jar-Datei muss in das Projekt eing...
Postfix
Java-Snippet: Zeritifikat-Validierung deaktivieren
Quelle: http://www.nakov.com/blog/2009/07/16/disable-certificate-validation-in-java-ssl-connections/ By design when we open an SSL connection in Java (e.g. through java.net.URL.openConnection(“https://….”)) the JSSE implementation of the SSL protocol performs ...
Proftpd
Aktuelle Seite mit QR-Code versehen - leichte Übernahme in das Smartphone
Problem: Ich surfe am PC und bin gerade auf einer Webseite und denke mir "Wie cool wäre das jetzt, wenn ich diese Seite mit einem QR-Scanner auf meinem Handy öffnen könnte..." Lösung: Diese Bookmarklet fügt temporär einen 150x150px großen QR-Code oben Links au...
Aktuelles Datum ermitteln
function getCurrentDate() { var today = new Date(); var dd = (today.getDate() < 10) ? ('0' + today.getDate()) : today.getDate(); var mm = (today.getMonth()+1 <10 ) ? ('0' + (today.getMonth()+1)) : today.getMonth()+1; ...