Skip to content

Instantly share code, notes, and snippets.

View Hi7cl4w's full-sized avatar
:atom:

Manu K Hi7cl4w

:atom:
View GitHub Profile
This file has been truncated, but you can view the full file.
[Adblock Plus]
! Version: 202205102233
! Title: oisd basic
! Last modified: 10 May 2022 22:33 UTC
! Expires: 1 days (update frequency)
! Homepage: https://oisd.nl
! Syntax: Adblock Plus Filter List
||00-gov.cn^
||000.gaysexe.free.fr^
This file has been truncated, but you can view the full file.
[Adblock Plus]
! Version: 202205102311
! Title: oisd full
! Last modified: 10 May 2022 23:11 UTC
! Expires: 1 days (update frequency)
! Homepage: https://oisd.nl
! Syntax: Adblock Plus Filter List
||0-0-0-0-0-0-0-0-0-0-0-0-0-18-0-0-0-0-0-0-0-0-0-0-0-0-0.info^
||0-0-0-0-0-0-0-0-0-0-0-0-0-33-0-0-0-0-0-0-0-0-0-0-0-0-0.info^
#!/bin/sh
############################################################
######################################################################################################################
echo ""
echo "Cake Script Start"
echo ""
######################################################################################################################
### Interfaces ###
@Hi7cl4w
Hi7cl4w / RN_flatList_example.js
Created September 25, 2019 10:09 — forked from SergeyLipko/RN_flatList_example.js
Example of using RN FlatList component with pagination and pull-refreshing
import React from 'react';
import {
View,
Text,
FlatList,
StyleSheet
} from 'react-native';
import { ListItem } from 'react-native-elements';
class Users extends React.Component {
# Customise this file, documentation can be found here:
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs
# All available actions: https://docs.fastlane.tools/actions
# can also be listed using the `fastlane actions` command
# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`
# If you want to automatically update fastlane if a new version is available:
# update_fastlane
@Hi7cl4w
Hi7cl4w / laravel-on-shared-hosting-htaccess.md
Created June 14, 2019 08:13 — forked from bladeSk/laravel-on-shared-hosting-htaccess.md
Deploying Laravel on a shared hosting using only .htaccess

Deploying Laravel on a shared hosting using only .htaccess

Making Laravel work on a shared hosting can be troublesome, because Laravel needs to have its document root set to the public directory. This may not be configurable by a user or even desirable, when the server is hosting multiple websites.

Here's a simple method using only a .htaccess file placed in Laravel's root directory - e.g. alongside app, bootstrap, config, ... No changes whatsoever are necessary to your code.

The file rewrites all the requests so that requesting /file.png would in fact return /public/file.png and anything else is routed to /public/index.php. This also ensures that nothing outside the public folder can be accessed, thereby protecting any sensitive files like .env or database/*.

The simple method

@Hi7cl4w
Hi7cl4w / index.html
Created March 17, 2018 16:22
Nautilus Slideshow
<div class="container">
<section class="nautilus">
<div style="background: url('http://d8559fa83407ca590c9c-26c3b154822345d9dde0204930c49e9c.r68.cf1.rackcdn.com/2860546_a1e73ae4_m.jpeg') center center / cover no-repeat ">
</div>
<div style="background: url('http://www.youthedesigner.com/wp-content/uploads/2013/02/37.jpg') center center / cover no-repeat "></div>
<div style="background: url('http://i.kinja-img.com/gawker-media/image/upload/s--vl1wPe4w--/c_scale,fl_progressive,q_80,w_800/18ioy0rbeb5dxjpg.jpg') center center / cover no-repeat "></div>
<div style="background: url('http://worksdesigngroup.com/wp-content/uploads/2014/01/105855_2_600.jpeg') center center / cover no-repeat "></div>
<div style="background: url('https://founterior.com/wp-content/uploads/2014/02/lamp-product-design-Port-by-Alexander-Taylor.jpg') center center / cover no-repeat "></div>
@Hi7cl4w
Hi7cl4w / index.html
Created March 17, 2018 16:20
Slideshow Vanilla JS w/ CSS Transition
<div class="content-width">
<div class="slideshow">
<!-- Slideshow Items -->
<div class="slideshow-items">
<div class="item">
<div class="item-image-container">
<img class="item-image" src="https://i.pinimg.com/564x/23/a4/86/23a4860b8b70b1eb27f2791b97aaee8e.jpg" />
</div>
<!-- Staggered Header Elements -->
<div class="item-header">
@Hi7cl4w
Hi7cl4w / dual-slideshow-demo.markdown
Created March 17, 2018 16:20
Dual Slideshow Demo
@Hi7cl4w
Hi7cl4w / xcode-build-bump.sh
Created February 26, 2018 11:31 — forked from sekati/xcode-build-bump.sh
Xcode Auto-increment Build & Version Numbers
# xcode-build-bump.sh
# @desc Auto-increment the build number every time the project is run.
# @usage
# 1. Select: your Target in Xcode
# 2. Select: Build Phases Tab
# 3. Select: Add Build Phase -> Add Run Script
# 4. Paste code below in to new "Run Script" section
# 5. Drag the "Run Script" below "Link Binaries With Libraries"
# 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0)