Postagens

Is boublr.com scam or legit?

Imagem
Hello everyone, recently I got an Instagram ads about  boublr  website which promises you to double your bitcoin amount in just 100 hours. So, the first question I made to myself was simple: " Is doublr.com scam or legit? " Of course, the first thing I made was to use the scamadviser  and search for https://www.boublr.com/ Then I got the following results: boublr.com Which basically shows the website has EVERYTHING TO BE SCAM ! Why? Simply, the website is pretty new, promising a really astounding awarding. Ok, and what about the SSL certificate ? If you google, you will find in just a few seconds that a lot of SCAM WEBSITES use SSL certificate, in other words that doesnt show anything. So, lets keep tracking, until then I will not invest anything on that website. When the money is TOO easy , that is the REAL SCAM ! Now you could be wondering: "ok, I could lose the easist money of my life". That would be better than: "I lost the money I wor...

Internet SLOW or not REACHING the MAX velocity 100MBps 500MBs 1GHBits

Imagem
Your internet is not achieving the max velocity ? First off, check if your modem can really handle with that. If you are using wi-fi probably you will not achieve. (tip: use a direct cable) After that, check your driver settings: Set Jumbo Frame (or Jumbo Packet) to the maximum supported value, for example, 9014 bytes. Gigabit Ethernet controllers that support jumbo frames can transfer packet sizes larger than the standard Ethernet frame size (1500 bytes). Set Receive Buffers (or Receive Descriptors) to the maximum supported value, for example, 2048. For some Ethernet controller drivers, this setting is grouped under Performance Options. Confirm that Link Speed & Duplex is set to Auto Negotiation (or Auto Detect velocity-giga-internet-speed-max-upload

SpecFlow build errors bug Could not find a reference to SpecFlow in project

Imagem
I have just added a specflow file (feature) on my visual studio 2017 and then got these errors. specflow-visual-studio-errors-build Error CS1029 #error: ' Could not find a reference to SpecFlow in project 'MyFourthBDDProject'.' CS1029 #error: 'Please add the ' TechTalk.SpecFlow' package to the project and use MSBuild generation instead of using SpecFlowSingleFileGenerator .' CS1029 #error: 'For more information see https://specflow.org/documentation/Generate-Tests-from-MsBuild/' Custom tool error: Generation error: Could not find a reference to SpecFlow in project 'MyFourthBDDProject'. Please add the 'TechTalk.SpecFlow' package to the project and use MSBuild generation instead of using SpecFlowSingleFileGenerator. For more information see https://specflow.org/documentation/Generate-Tests-from-MsBuild/ MyFourthBDDProject C:\Users\cuechi\source\repos\MyFourthBDDProject\MyFourthBDDProject\SpecFlowFeature1.feat...

Change initial path directory of the command prompt windows

Imagem
How to set the start directory path folder of the cmd command prompt of windows 10: Just follow the steps Run regedit Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor  add a new string value with the name AutoRun Set its value to cd /d c:\Users\YOURUSERNAME\desktop cmd-change-initial-start-directory-path

Certified translation services in Toronto

Check if the translator is certified by ATIO on:  find a certified translator If you are looking for a certified translation of your personal or business documents in Toronto you need to be aware the translator needs to have the ATIO certificate.

SOLVED MySQL connector with ENTITY FRAMEWORK WORKING in Medium Trust hosting environments

Imagem
First I'm going to show you how I finally used the Entity Framework in a  Shared Web Hosting Trust Level . And at the end, I will let off the things I worked so hard. My environment: Mysql version was something 5.6.35-81.0-log .NET framework 4.0 Visual Studio Community 2017 Shared Web Hosting Trust Level = Medium Follow the steps to you finally publish successfully your application: Install the  mysql-connector-net-6.3.9 ( download ) Install the  mysql-for-visualstudio-1.2.8   ( download ) Reference the 4 mysql dlls in your project mysql.data.dll ( download ) mysql.data.entity.dll ( download ) mysql.visualstudio.dll ( download ) mysql.web.dll ( download ) Go to your project Properties > AssemblyInfo.cs and add the 2 assemblies: [assembly: SecurityRules(SecurityRuleSet.Level1)] [assembly: System.Security.AllowPartiallyTrustedCallers] Make sure your webconfig file has the following lines: <system.data...

JAVA Como ler um objeto JSON ARRAY ou como converter uma linha de JSON ARRAY em JSONOBJECT

Imagem
JAVA Como ler um objeto JSON ARRAY ou como converter uma linha de JSON ARRAY em JSONOBJECT final JSONArray geodata = response.getJSONArray( "result" ); final int n = geodata.length(); for ( int i = 0 ; i < n; ++i) { final JSONObject person = geodata.getJSONObject(i); //System.out.println(person.getInt("id")); repoName = person.getString( "Name" ); //System.out.println(person.getString("gender")); //System.out.println(person.getDouble("latitude")); //System.out.println(person.getDouble("longitude")); } note que o geodata do tipo JSONARRAY recebe um JSON ARRAY. Nisso basta ler todas as propriedas e pelo .getString voce conseguira ler a propriedade desejada.