- Install the following:
- Open command palette in VSCode with Cmd + Shift + P
- Type and select
Preferences: Open Workspace Settings (JSON)
- Copy and paste the following settings into your workspace settings file:
{
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Increase width. | |
var width = "710px"; | |
for (var clss of ["ad-list-container--1UnyA", "list-wrapper--t_A02", "list--3NxGO", "gtm-top-ad", "gtm-normal-ad"]) { | |
var elems = document.getElementsByClassName(clss) | |
for (var elem of elems) { | |
elem.style.maxWidth = width; | |
elem.style.width = width; | |
} | |
} |
Using this script on any browser, you can sort the restaurants listed in the foodpanda website by rating or review count.
- Visit foodpanda.com and select your location.
- Keep scrolling down to the bottom of the page until all resaurants are loaded on the page.
- In Chrome, right click anywhere on the page and select Inspect from the menu.
- In the Inspect window click the Console tab.
- In the console, paste in the following script and hit enter.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download the following ZIPs: | |
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
Download the correct GApps for your Android version: | |
Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161892865 - gapps-L-4-21-15.zip) | |
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) | |
Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip) |
- Go to digitalocean.com and hit Create Droplet.
- Name your droplet, select size and region.
- Select ubuntu distribution and lamp application.
- Click Create droplet.
- You will receive an email with ip address and user credentials.
- Download putty from: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
- Open putty.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.alamkanak.weekview.sample; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import com.alamkanak.weekview.WeekView; | |
import com.alamkanak.weekview.WeekViewEvent; | |
import java.util.ArrayList; | |
import java.util.Calendar; | |
import java.util.List; | |