SajjadRobin

Learn every day

  • Like on facebookLike on facebook
  • Follow me on TwitterFollow me on Twitter
  • Subscribe to youtube channelSubscribe to youtube channel
  • Add SajjadRobin in your circleAdd SajjadRobin in your circle
  • LinkedInLinkedIn
  • FeedFeed

Author: robin

How To · Python

0

ETL in Python – read csv, json files

  • August 6, 2021

Let’s start with how to read csv, json files:

Read CSV, JSON files in Python
Python
1
2
3
4
5
6
 
import glob
list_csv = glob("*.csv")
 
list_json = glob("*.json")
 

Let’s create a function to read a CSV file in python:

Extract content from CSV in Python
Python
1
2
3
4
5
6
7
 
def extract_from_csv(file_to_process):
  dataframe = pd.read_csv(file_to_process)
  return dataframe
 
df = extract_from_csv("example1.csv")
 

Now, let’s create another function to read content[…]

Share this:

  • Tweet
  • Email

Read more

javascript good parts: object

Javascript

0

Javascript – The Good Parts: Object

  • August 28, 2018

After Javascript: Grammar now it’s time for Object. Simple types of JavaScript are Numbers Strings Booleans null Undefined All others are Objects Simple Object:

JavaScript
1
2
3
4
5
6
7
 
var dentist = {
     'first-name' : 'Sajjadul',
     'last-name' :  'Robin',
     'age' : 30
};
 

Retrieval:

JavaScript
1
2
3
 
dentist['first-name'] ;// Sajjadul
 

JavaScript
1
2
3
 
dentist.age; // 30
 

If a key does[…]

Share this:

  • Tweet
  • Email

Read more

More Tutorials

javascript good parts: grammar

Javascript

0

Javascript – The Good Parts : Grammar

  • August 28, 2018

I started to read a book : JavaScript: The Good Parts by Douglas Crockford. I am keeping a short note for myself and others if useful for future. It’s about[…]

Share this:

  • Tweet
  • Email

Read more

DELETE DUPLICATE ROW

How To · MySql · MySql

0

How to delete duplicate rows from a table

  • August 22, 2017

Often you want to delete rows from a table in mysql. How can you achieve it? Let’s say you have user table which has users with duplicate column (mysql field)[…]

Share this:

  • Tweet
  • Email

Read more

How to setup virtual host in xampp

apache · How To

0

How to setup virtual host in xampp

  • May 8, 2017

This article is about how to setup virtual host in xampp. Why do you need virtual host? Simple example is to mimic public domain in local development machine. Say you[…]

Share this:

  • Tweet
  • Email

Read more

How to set AddHanlder in PHP

How To · php

0

How to set AddHandler in PHP

  • May 8, 2017

This article is about to set AddHandler properly in PHP. You can run .php file with apache. It may be necessary to execute other file extension with php parser like[…]

Share this:

  • Tweet
  • Email

Read more

25 guerrilla actions for php security

php · security

0

Take 25 guerrilla actions for php security

  • May 8, 2017

So you want to secure your PHP websites. Follow these 100 actionable PHP security tips. What happens if you don’t secure PHP? : US Govt Data Shows Russia Used Outdated Ukrainian PHP Malware. This[…]

Share this:

  • Tweet
  • Email

Read more

wordpress website

Wordpress website

0

Website For Beginners

  • September 17, 2015

Website For Beginners এই কোর্স এর মূল লক্ষ্য হচ্ছে একদম শূন্য থেকে ওয়েবসাইট বানানো শেখা। কোনো প্রোগ্রামিং জানতে হবে না। প্রতিটা বিষয় ধীরে ধীরে বুঝানো হবে। কোনো সমস্যা হলে ভিডিওটি[…]

Share this:

  • Tweet
  • Email

Read more

Swift - Learn by doing

Udemy

0

Swift – Learn by doing

  • July 19, 2015

Swift – Learn by doing Apple has brought new programming language this June, 2014. Out of no where Apple declared Swift. It’s innovative language for both Cocoa and Cocoa Touch.[…]

Share this:

  • Tweet
  • Email

Read more

Grow unlimited twitter followers and earn money

Udemy

0

Grow unlimited twitter followers and earn money

  • July 19, 2015

Grow unlimited twitter follower, earn money Do you want to grow unlimited twitter followers for free? Follow this course, gain followers and finally earn money. Grab it before the price is[…]

Share this:

  • Tweet
  • Email

Read more

  • Next Page »
  • Get your dream job

    Learn web development
  • Go social, go viral

  • Like on Facebook

    Like on Facebook
  • Recent Posts

    • ETL in Python – read csv, json files
    • Javascript – The Good Parts: Object
    • Javascript – The Good Parts : Grammar
    • How to delete duplicate rows from a table
    • How to setup virtual host in xampp
  • Categories

    • apache
    • How To
    • Javascript
    • MySql
    • MySql
    • php
    • Python
    • security
    • Udemy
    • Web Development in Bengali
    • Wordpress website
  • Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
    To find out more, including how to control cookies, see here: Cookie Policy
  • Like on facebookLike on facebook
  • Follow me on TwitterFollow me on Twitter
  • Subscribe to youtube channelSubscribe to youtube channel
  • Add SajjadRobin in your circleAdd SajjadRobin in your circle
  • LinkedInLinkedIn
  • FeedFeed

© Copyright 2018 sajjadrobin.