Skip to content

Instantly share code, notes, and snippets.

View iKlsR's full-sized avatar
😲
daemon.

iKlsR

😲
daemon.
View GitHub Profile
@iKlsR
iKlsR / fix-git-line-endings
Created November 9, 2020 17:03 — forked from ajdruff/fix-git-line-endings
Forces all line endings to LF in your git repo.
#####################
#
# Use this with or without the .gitattributes snippet with this Gist
# create a fixle.sh file, paste this in and run it.
# Why do you want this ? Because Git will see diffs between files shared between Linux and Windows due to differences in line ending handling ( Windows uses CRLF and Unix LF)
# This Gist normalizes handling by forcing everything to use Unix style.
#####################
# Fix Line Endings - Force All Line Endings to LF and Not Windows Default CR or CRLF
@iKlsR
iKlsR / Laravel-Scheduler-Windows.md
Created January 15, 2020 19:32 — forked from Splode/Laravel-Scheduler-Windows.md
Laravel Scheduler on Windows

Run Laravel Scheduled Tasks on Windows

The following are instructions for running scheduled tasks defined in a Laravel project on Windows. The Laravel documentation provides instructions for running scheduled tasks using cron jobs on Linux systems. However, cron jobs are not available on Windows. The built-in Windows Task Scheduler can be used to run scheduled tasks instead.

Create a Scheduled Task

  1. Open Task Scheduler
  2. Select Create Task...
  3. Give the task a name and description
  4. To run the task in the background, select Run whether the user is logged on or not and check the Hidden checkbox.
@iKlsR
iKlsR / redis.php
Created June 16, 2019 11:20 — forked from wuliupo/redis.php
php-redis-on-windows
<?php
$host = 'test.kvstore.aliyuncs.com';
$port = 6379;
$user = 'username';
$pwd = 'password1234';
$key = 'the_stored_key';
$redis = new Redis();
if ($redis->connect($host, $port) == false) {
die($redis->getLastError());
@iKlsR
iKlsR / main.cpp
Created May 2, 2019 18:48 — forked from alexesDev/main.cpp
Redux c++ implementation
#include <mapbox/variant.hpp>
#include <redux.hpp>
struct Increment
{
};
struct Decrement
{
};
@iKlsR
iKlsR / vue.md
Created March 18, 2019 07:33 — forked from DawidMyslak/vue.md
Vue.js and Vuex - best practices for managing your state

Vue.js and Vuex - best practices for managing your state

Modyfing state object

Example

If you have to extend an existing object with additional property, always prefer Vue.set() over Object.assing() (or spread operator).

Example below explains implications for different implementations.

@iKlsR
iKlsR / java_class_launcher.bat
Last active August 29, 2015 14:14
drag and drop a .class file to execute it or set as the app to open
@echo off
REM http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx?mfr=true
start javaw %~n1
@iKlsR
iKlsR / vimcasts_scraper.py
Created December 14, 2014 18:52
download all the videos on vimcasts.org in mp4 format
import json, urllib2
response = urllib2.urlopen("http://media.vimcasts.org/videos/index.json")
data = json.load(response)
number_of_videos = data.keys()
number_of_videos.sort(key=int)
urls = []
file_names = []
@iKlsR
iKlsR / webtext_automated.py
Last active August 29, 2015 14:09
Use your 30 free digicel texts from the comfort of your term
import mechanize, sys
class DigiWebTextDT(object):
def __init__(self):
self.br = mechanize.Browser()
# might want to change the locale for your region
self.br.open("https://webtext.digicelgroup.com/loginForm.do?country_code=JAM&language_code=en")
def get_credentials(self):
pass
@iKlsR
iKlsR / closeallwithoutsaving.jsx
Created October 19, 2014 22:27
close all open ps tabs without prompting to save
function closeCurrentWithoutSaving() {
if (app.activeDocument.length != 0)
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
}
function closeAllWithoutSaving() {
while (documents.length != 0) {
for (var i = 0x00; i < documents.length; i++)
documents[i].close(SaveOptions.DONOTSAVECHANGES);
}
@iKlsR
iKlsR / Pascal.sublime-build
Created May 2, 2014 00:10
Pascal build system for st3
{
"cmd": ["fpc", "${file}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.pas",
"variants": [
{
"name": "Run",
"cmd": ["$file_base_name"],