#1698 - Access denied for user 'root'@'localhost'
http://stackoverflow.com/questions/39281594/error-1698-28000-access-denied-for-user-rootlocalhost
One Nice Bug Per Day
dirt enthusiast
I'd rather be in outer space 🛸

Love Begins
2025 on Tumblr: Trends That Defined the Year
PUT YOUR BEARD IN MY MOUTH

todays bird
noise dept.
Stranger Things

JVL

祝日 / Permanent Vacation
he wasn't even looking at me and he found me
i don't do bad sauce passes

@theartofmadeline
h
ojovivo
YOU ARE THE REASON

Origami Around
seen from Singapore

seen from Belarus
seen from United States

seen from France
seen from Türkiye

seen from Germany

seen from United States

seen from Armenia
seen from United States
seen from Türkiye
seen from United States
seen from United States
seen from United Kingdom
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
seen from United States
@sifatul
#1698 - Access denied for user 'root'@'localhost'
http://stackoverflow.com/questions/39281594/error-1698-28000-access-denied-for-user-rootlocalhost

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
MSC in Canada
Is MS in Canada a better option than in the U.S.? Education is not as good as U.S but if thinking of immigrating permanently then its awesome.
Job opportunities in Canada after MS? Job solely depends on skills and job search strategy . Since Canada is rising in tec job opportunities are increasing too but on the other hand number of international students and job seekers have increased too thus the market is very competitive.
What/how to apply?
MSC in Germany
Is it worth doing Masters in Computer Science in Germany?
Germany has its own advantage and disadvantage but education style, work permits and cost effectiveness I think its worth giving a shot. P.S: Need to learn German language Firstly i need to list down interested institutes in Germany.
Top institutes:
RWTH Aachen
KIT (Karlsruhe Institute of Technology)
TU Munich
Jacobs University Bremen
Hasso-Plattner-Inst. Potsdam
ULM University
Rwth Aachen
Passau University
TU Berlin
TU Darmstadt
TU Dresden
TU Munich
Countries to do MS in computer science?
Choosing the right institution for my msc is a big step and it requires broad study about the current course provided by the institute work facility, country economy and probability of scholarship, etc.
Which are some of the best countries to do MS in computer science?
Top institutes: Japan, Europe, Canada,Singapore,NZ,Australia, UK(minimum people recommend UK) Plenty of job: USA, Germany, Canada Cheap education: Belgium, Hungary, Germany, Italy, France, Finland, Denmark, Norway, Sweden, Ukraine
Git http proxy
git config --global http.proxy domain:port
git config --global http.proxy 192.168.1.5:8080
Now rest of the commands for what you want to do git clone blah blah blah

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
How I make virtualenv using Conda and install Django, python there
PLEASE BE NOTED: My PC has python3.5, pip 9.0.1,conda 4.3.13 installed.
Step 1: Go the directory where I need the virtual environment to start working.
sifii2013@sifii2013 ~ $ cd drive/Factory/workshop
I want to work in my ‘workshop’.
Step 2: Create a virtual environment there and name it world .
conda create -n yourenvname python=x.x anaconda
for my case , i need python2.7 and virtualenv name world
sifii2013@sifii2013 ~/drive/Factory/workshop $ conda create -p world python=2.7
Take note that sifii2013@sifii2013 ~/drive/Factory/workshop $ conda create -n world python=2.7 would create the virtualenv in /user/anaconda3/envs directory- just ‘-n’ instead of ‘-p’
Step 3: Need to activate virtualenv - “ source activate location_of_env“
sifii2013@sifii2013 ~/drive/Factory/workshop $ source activate /home/sifii2013/drive/Factory/workshop/world
(/home/sifii2013/drive/Factory/workshop/world) sifii2013@sifii2013 ~/drive/Factory/workshop $
Step 4: install Django and check Django version that is installed.
(/home/sifii2013/drive/Factory/workshop/world) sifii2013@sifii2013 ~/drive/Factory/workshop $ pip install Django
(/home/sifii2013/drive/Factory/workshop/world) sifii2013@sifii2013 ~/drive/Factory/workshop $ django-admin.py version
Step 5: go inside the virtualenv
(/home/sifii2013/drive/Factory/workshop/world) sifii2013@sifii2013 ~/drive/Factory/workshop $ cd world
and start a Django project
(/home/sifii2013/drive/Factory/workshop/world) sifii2013@sifii2013 ~/drive/Factory/workshop/world $ django-admin startproject mysite
References :
http://stackoverflow.com/questions/...
https://iamzed.com/2009/05/07/a-pri...
https://docs.djangoproject.com/en/1...
Energia compilation error - MSP430
Energia: 1.6.10E18 (Windows 8.1), Board: "MSP-EXP430FR4133LP"
msp430-g++: error: islam\Desktop\energia-1.6.10E18\hardware\tools\msp430/include: No such file or directory
exit status 1 Error compiling for board MSP-EXP430FR4133LP.
This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences
solution :
Change your directory to
C:\IDE\energia\energia-1.6.10E18
ANDROID: Read Image From Memory
//initialize private static final int SELECTED_PICTURE=1; ImageView iv;
View.OnClickListener upload_img = new View.OnClickListener() { public void onClick(View v) { Intent i=new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(i, SELECTED_PICTURE); } }; protected void onActivityResult(int requestCode, int resultCode,Intent data){ super.onActivityResult(requestCode,resultCode,data); switch (requestCode){ case SELECTED_PICTURE: if(resultCode==RESULT_OK){ Uri uri=data.getData(); String [] projection={MediaStore.Images.Media.DATA}; Cursor cursor=getContentResolver().query(uri,projection,null,null,null); cursor.moveToFirst(); int columnIndex=cursor.getColumnIndex(projection[0]); String filePath=cursor.getString(columnIndex); } break; } }
ANDROID: Date Picker
package com.example.sifatulislam.testmemory; import android.app.DatePickerDialog; import android.app.Dialog; import android.content.Intent; import android.database.Cursor; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.media.Image; import android.net.Uri; import android.os.Bundle; import android.provider.MediaStore; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.View; import android.view.Menu; import android.view.MenuItem; import android.widget.Button; import android.widget.DatePicker; import android.widget.ImageView; import android.widget.TextView; import java.net.URI; import java.util.Calendar; public class MainActivity extends AppCompatActivity { private int mYear; private int mMonth; private int mDay; private TextView mDateDisplay; private Button mPickDate; static final int DATE_DIALOG_ID = 0; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.content_main); mDateDisplay = (TextView) findViewById(R.id.showMyDate); mPickDate = (Button) findViewById(R.id.myDatePickerButton); mPickDate.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { showDialog(DATE_DIALOG_ID); } }); // get the current date final Calendar c = Calendar.getInstance(); mYear = c.get(Calendar.YEAR); mMonth = c.get(Calendar.MONTH); mDay = c.get(Calendar.DAY_OF_MONTH); // display the current date updateDisplay(); } private void updateDisplay() { this.mDateDisplay.setText( new StringBuilder() // Month is 0 based so add 1 .append(mMonth + 1).append("-") .append(mDay).append("-") .append(mYear).append(" ")); } private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() { public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { mYear = year; mMonth = monthOfYear; mDay = dayOfMonth; updateDisplay(); } }; @Override protected Dialog onCreateDialog(int id) { switch (id) { case DATE_DIALOG_ID: return new DatePickerDialog(this, mDateSetListener, mYear, mMonth, mDay); } return null; } }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:paddingBottom="@dimen/activity_vertical_margin" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/activity_main" tools:context=".MainActivity"> <Button android:id="@+id/myDatePickerButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Choose Date"/> <TextView android:id="@+id/showMyDate" android:layout_marginTop="20dp" android:layout_width="fill_parent" android:layout_height="wrap_content"/> </RelativeLayout>
Sites to send sms using php
https://www.nexmo.com/ https://www.techbe.org/send-text-message-to-mobiles-using-php/

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Project-2
Making a replica of http://www.waltonbd.com/
PHP Video Tutorial for Beginners With Examples For Complete Playlist Click Here : https://www.youtube.com/watch?v=1tpEPFL1bds&list=PLkafFmR_hW8Pa3_jcrncS4R9L...
Connect your php with mysql and fetch data from your database;
Check your websites’ mobile friendliness!
OverAPI.com is a site collecting all the cheatsheets,all!
Its obvious to forget few important methods while working with JS. Why not have a cheat sheet! :p
Access webcam in html
Work with API begins! https://jsfiddle.net/kq3jdjv3/

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
আসসালামু আলাইকুম, সবাইকে আমার প্রীতি ও পরান ঢালা শুভেচ্ছা রইলো। আজ আমি বাংলাদেশ থেকে ফ্রী Payoneer Mastercard পাওয়ার এবং Verified Paypal Account খোলা সহজ উপয় নিয়ে বলব । আমরা যারা অনলাইন এ কাজ করি ত...
Install clash of clan in ubuntu
People around me seem to be really into clash of clan .So here is is a hand for the ubuntu users! https://www.4teq.com/2014/01/run-clash-of-clans-on-ubuntu-linux-windows.html