Skip to content

Instantly share code, notes, and snippets.

View twisstosin's full-sized avatar
🎯
ᴍɪssɪᴏɴ : 𝘉𝘳𝘪𝘯𝘨 𝘭𝘪𝘧𝘦 𝘵𝘰 𝘱𝘳𝘰𝘥𝘶𝘤𝘵𝘴 𝘢𝘯𝘥 𝘱𝘳𝘰𝘥𝘶𝘤𝘵𝘴 𝘵𝘰 𝘱𝘦𝘰𝘱𝘭𝘦

Tosin Omotoyinbo twisstosin

🎯
ᴍɪssɪᴏɴ : 𝘉𝘳𝘪𝘯𝘨 𝘭𝘪𝘧𝘦 𝘵𝘰 𝘱𝘳𝘰𝘥𝘶𝘤𝘵𝘴 𝘢𝘯𝘥 𝘱𝘳𝘰𝘥𝘶𝘤𝘵𝘴 𝘵𝘰 𝘱𝘦𝘰𝘱𝘭𝘦
View GitHub Profile
@kamikat
kamikat / layout.xml
Last active September 1, 2021 17:40
NestedScrollView + SwipeRefreshLayout + RecyclerView
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
@learncodeacademy
learncodeacademy / webpack.config.js
Created January 8, 2016 03:55
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"