Skip to content

Instantly share code, notes, and snippets.

View mirjalal's full-sized avatar
👨‍💻
Composing

Mirjalal mirjalal

👨‍💻
Composing
View GitHub Profile
/**
* 비동기로 비트맵 이미지에 Blur효과를 설정하고 필요한 후 처리들을 한다.
*
* @author KangSung-Woo
*/
public class AsyncBlurTask
extends AsyncTask<Bitmap, Integer, Bitmap> {
// 이미지 리사이징 할 최소 사이즈
public static final int DEFAULT_SIZE_PX = 30;
private static final String TAG = AsyncBlurTask.class.getSimpleName();
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Загрузка файлов на сервер</title>
</head>
<body>
<h2><p><b> Форма для загрузки файлов </b></p></h2>
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="filename"><br>
@YouriT
YouriT / README.md
Last active May 9, 2016 13:29
United Nations geoscheme in JSON

United Nations geoscheme in JSON

In the attached united-nations.json you will find a list of all regions/subregions of the world WITHOUT countries.

The map is based on the Wikipedia article

{
  "Africa": [
 "Eastern Africa",
@kingargyle
kingargyle / multifilepicker.java
Created October 19, 2015 18:15
Android 4.4+ Select Multiple Files with UI File Picker
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
// In code that handles the result returned to process the files:
ClipData clipData = intent.getClipData();
@addyosmani
addyosmani / README.md
Last active April 6, 2025 09:15 — forked from 140bytes/LICENSE.txt
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version