Skip to content

Instantly share code, notes, and snippets.

View Saissaken's full-sized avatar
🌚
Hi!

Juan Saissac Saissaken

🌚
Hi!
View GitHub Profile
@Saissaken
Saissaken / user.reducer.ts
Created September 12, 2018 17:17
NGRX reducer approach TS
import { Action } from '@ngrx/store';
import { IUser } from './user.model';
export namespace UserActions {
export enum ActionTypes {
GET_USER_REQUEST = '[Welcome] Get User Request',
GET_USER_FAILURE = '[Welcome] Get User Failure',
GET_USER_SUCCESS = '[Welcome] Get User Success',
}
@Saissaken
Saissaken / README.md
Created December 18, 2017 00:22 — forked from nickbudi/README.md
Budi's Counter-Strike: Global Offensive config

Budi's CS:GO Config

This is my constantly updated CS:GO autoexec config. Changelogs can be found under revisions here

Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!

After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg

Launch Options

// Rates
rate "307200"
cl_cmdrate "128"
cl_updaterate "128"
cl_interp "0.0"
cl_interp_ratio "1"
cl_interpolate "1"
cl_lagcompensation "1"
net_client_steamdatagram_enable_override "1" // SDR beta
@Saissaken
Saissaken / Update git fork with tags.sh
Last active April 20, 2024 18:10
Update git fork with tags
# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream
datepicker * {
align-content: initial;
align-items: initial;
align-self: initial;
/* all: initial; */
animation: initial;
animation-delay: initial;
animation-direction: initial;
animation-duration: initial;
animation-fill-mode: initial;
# Fork a repo, then create a remote 'upstream' to fetch from the original repo.
git clone https://github.com/userName/Repo New_Repo
cd New_Repo
git remote set-url origin https://github.com/userName/New_Repo
git remote add upstream https://github.com/userName/Repo
git push origin master
git push --all
# optional, remove push url