Skip to content

Instantly share code, notes, and snippets.

https://gist.github.com/daivq/35017a92233d3f7ce7a511f9f897ae2b
https://github.com/scrapy/scrapyd
http://scrapyd.readthedocs.io/en/stable/overview.html
@Sylyac2000
Sylyac2000 / Install php 5.6 ubuntu 16
Created January 25, 2018 15:37 — forked from anhtuank7c/Install php 5.6 ubuntu 16
Install php 5.6 ubuntu 16
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php5.6
you can install more php5.6 module
sudo apt-get install php5.6-mbstring php5.6-mcrypt php5.6-mysql php5.6-xml php5.6-intl php5.6-intl php5.6-mbstring php-apcu php-uuid php5.6-cgi php5.6-cli php5.6-gd php5.6-ldap php5.6-sqlite3 php-uploadprogress
@Sylyac2000
Sylyac2000 / 1 basic
Created May 22, 2018 22:05 — forked from PhongHuynh93/1 basic
livedata
ARCHITECTURE COMPONENTS - I'M NOT A PURIST BUT ...
http://hannesdorfmann.com/android/arch-components-purist
DIFFERENT LIVEDATA AND OBSERABLE
LiveData seems to be a very simplified version of RxJava’s Observable. LiveData is lifecycle aware so that we as developer don’t have to unsubscribe explicitly as we have to do with RxJava’s Observable. Both implement the Observer pattern.
LiveData doesn’t provide all this fancy functional programming operators as RxJava does although architecture components provides some functional concepts via Transformations helper class such as Transformations.map() and Transformations.switchMap().
https://developer.android.com/topic/libraries/architecture/livedata.html
Unlike a regular observable, LiveData respects the lifecycle of app components, such that the Observer can specify a Lifecycle in which it should observe.
LiveData considers an Observer to be in an active state if the Observer’s Lifecycle is in STARTED or RESUMED state.

Using RxJava and Glide to download multiple GIFs

SOURCE

This guide is for RxJava 1 and Glide v3 (3.8.0).

Have a list of URLs to GIFs, how to download them all in separated threads and proceed when all GIFs are downloaded?

private void download(final List<String> urlList) {
DrawableRequestBuilder drawableRequestBuilder = Glide.with(This
.load(url)
.fitCenter()
.animate(android.R.anim.fade_in);
if (mMediaFragmentListener.getLocalVideoUri() != null) {
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
Context context = getContext();
retriever.setDataSource(context, mMediaFragmentListener.getLocalVideoUri());
Bitmap frame = retriever.getFrameAtTime();
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
https://www.alltechabout.com/document-sharing-sites/
@Sylyac2000
Sylyac2000 / country-dropdown-list.html
Created May 5, 2019 08:25 — forked from olivertappin/country-dropdown-list.html
Country HTML select drop down list
<select name="country">
<option>Afghanistan</option>
<option>Albania</option>
<option>Algeria</option>
<option>American Samoa</option>
<option>Andorra</option>
<option>Angola</option>
<option>Anguilla</option>
<option>Antarctica</option>
<option>Antigua and Barbuda</option>
@Sylyac2000
Sylyac2000 / compact-child-routes
Created May 28, 2019 08:58 — forked from settermjd/compact-child-routes
Simple example of using child routes, using the Segment type, to keep a routing table in Zend Framework 2 simple and compact. For more information, check out http://www.masterzendframework.com/tutorial/child-and-segment-routes.
return array(
'router' => array(
'routes' => array(
'forecaster' => array(
'type' => 'Literal',
'options' => array(
'route' => '/forecaster',
'defaults' => array(
'__NAMESPACE__' => 'Forecaster\Controller',
'controller' => 'Forecaster',