Skip to content

Instantly share code, notes, and snippets.

View ValentinFunk's full-sized avatar
👋

Valentin ValentinFunk

👋
  • InnoVint, Inc
  • Tarifa, Spain
View GitHub Profile
@ValentinFunk
ValentinFunk / sh_jumppack.lua
Last active July 14, 2017 18:34
Jump Pack higher Jumps
ITEM.baseClass = "base_hat"
ITEM.PrintName = "Jump Pack"
ITEM.Description = "Makes you jump higher!"
ITEM.Price = {
points = 1000,
}
ITEM.static.validSlots = {
"Accessory",
}
@ValentinFunk
ValentinFunk / NetlifyServerPushPlugin.js
Last active May 4, 2024 04:24
Webpack - Generate Netlify HTTP2 Server Push _headers File when using the HtmlWebpackPlugin
/**
* Generate a Netlify HTTP2 Server Push configuration.
*
* Options:
* - headersFile {string} path to the _headers file that should be generated (relative to your output dir)
*/
function NetlifyServerPushPlugin(options) {
this.options = options;
}
@ValentinFunk
ValentinFunk / app.component.ts
Last active July 26, 2017 08:02
Angular2 Router Loading Screen
export class AppComponent {
routerLoading$: Observable<boolean>;
constructor(private router: Router) {
this.routerLoading$ = this.router.events.flatMap(event => {
if (event instanceof NavigationStart) {
return [true];
}
if (event instanceof NavigationEnd ||
event instanceof NavigationCancel ||
event instanceof NavigationError) {
@ValentinFunk
ValentinFunk / UserModule.ts
Last active October 9, 2018 19:26
@ngrx/store and @ng-bootstrap/ng-bootstrap NgbModal
@NgModule({...})
export class UserModule {
constructor(
ngbModal: NgbModal,
modalService: ModalService,
store: Store<AppState>
) {
// Disallow closing the login modal if user is accessing a protected route as first page.
// (else they would get an empty page due to the auth guard)
let loginModalOptions = store.select(x => x.user.loginRequired)
@ValentinFunk
ValentinFunk / index.html
Last active September 4, 2017 14:55 — forked from anonymous/index.html
Get Exchange Rates from ECB, restricted by date, for each date (uses last rate for unknown days) and export as CSV. JSBin: https://jsbin.com/cetihotuzu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/1.2.2/bluebird.js"></script>
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
@ValentinFunk
ValentinFunk / retry-http.ts
Created September 10, 2017 10:57
Retry HTTP in RXJs
function retryHttp<T>(retryCount: number, shouldRetry: (error: { code: number }) => boolean) {
return (request$: Observable<T>): Observable<T> => request$.retryWhen(
errors$ => errors$.flatMap(error => {
if (shouldRetry(error)) {
return Observable.of(true).delay(1000);
}
return Observable.throw({ error: 'Error cannot be retried', originalError: error });
}).take(5)
.concat(Observable.throw(`Request failed after ${retryCount} retries.`))
@ValentinFunk
ValentinFunk / sv_mixin_trailchecker.lua
Created October 11, 2017 14:34
Mixin demonstration for PS2 (place in addons/ps2_customization/lua/ps2/server
local TrailcheckerMixin = {}
function TrailcheckerMixin:included( klass )
local oldThink = klaas.Think
klass.Think = function(self)
oldThink(self)
if IsValid(self.trailEnt) then
local shouldDraw = hook.Run("PS2_VisualsShouldShow", self:GetOwner()) == false
self.trailEnt:SetNoDraw(not shouldDraw)
end
end
@ValentinFunk
ValentinFunk / sv_pointsfixer.lua
Created October 23, 2017 22:28
Pointshop 2 negative points fixer
local function fixPts()
if not Pointshop2 or not Pointshop2.DB or not Pointshop2.DB.ConnectionPromise then
MsgC(Color(255, 0, 0), "ERROR: Pointshop2 is not loaded yet. Please rerun.")
return
end
print("[FIXPTS] -> Fetching minimum values")
Pointshop2.DB.ConnectionPromise:Then(function()
print('[FIXPTS] -> Connected to database')
return Pointshop2.DB.DoQuery('SELECT MIN(points) as minPoints, MIN(premiumPoints) as minPrem FROM ps2_wallet;')
@ValentinFunk
ValentinFunk / sv_mixin_weaponrestrict.lua
Created November 7, 2017 10:10
Restrict Weapons to a certain Team. Place in lua/autorun/server
local RestrictWeaponMixin = {}
function RestrictWeaponMixin:included( klass )
local oldGiveWeapon = klaas.GiveWeapon
klass.GiveWeapon = function(self)
if self:GetOwner():Team() == TEAM_PRISIONER then
if string.find(self.weaponClass, "csgo") then
return oldGiveWeapon(self)
end
self:GetOwner():ChatPrint("[Pointshop 2] Not giving you " .. self:GetPrintName() .. " since you are a prisioner.")
return
@ValentinFunk
ValentinFunk / cl_open.lua
Last active November 14, 2017 15:12
Open Pointshop2 with a key other than the F keys, this example uses F6. Save as lua/autorun/sh_ps2_keywatcher.lua
if SERVER then
AddCSLuaFile()
return
end
local lastDown = 0
local function hkKey()
if input.IsKeyDown( KEY_F6 ) and CurTime() > lastDown + 1 then
lastDown = CurTime()
RunConsoleCommand("pointshop2_toggle")