Skip to content

Instantly share code, notes, and snippets.

View nian88's full-sized avatar
🏠
Working from home

Azhar nian nian88

🏠
Working from home
View GitHub Profile
@tcpipuk
tcpipuk / postgres-backup-replica.md
Last active December 19, 2023 23:08
Setting Up a Replica for Backups for Postgres 15 in Docker
@rizkysetiawanel
rizkysetiawanel / controller.php
Last active March 5, 2017 02:13
Load scroll dengan codeigniter, js->controller->model->view
public function auto_halaman($num)
{
$data['anime_data'] = $this->anime_panel_model->mengambil_data2($num); //ini untuk menload data posting nya
$this->load->view('browse/front/anime_view', $data); // ini untuk ke view nya
}
@anchetaWern
anchetaWern / php-webscraping.md
Created August 4, 2013 13:18
web scraping in php

Have you ever wanted to get a specific data from another website but there's no API available for it? That's where Web Scraping comes in, if the data is not made available by the website we can just scrape it from the website itself.

But before we dive in let us first define what web scraping is. According to Wikipedia:

{% blockquote %} Web scraping (web harvesting or web data extraction) is a computer software technique of extracting information from websites. Usually, such software programs simulate human exploration of the World Wide Web by either implementing low-level Hypertext Transfer Protocol (HTTP), or embedding a fully-fledged web browser, such as Internet Explorer or Mozilla Firefox. {% endblockquote %}