Skip to content

Instantly share code, notes, and snippets.

View blockspacer's full-sized avatar
:octocat:

Devspace blockspacer

:octocat:
  • Google
  • USA
View GitHub Profile
@EricWF
EricWF / constinit.md
Last active July 16, 2020 09:07
A Proposal to add [[constinit]] to C++
Document Number: P1143r3
Date: 2019-06-18
Project: Programming Language C++, Evolution
Revises: P1143r2
Reply to: [email protected]

Adding the constinit keyword

@alexlib
alexlib / Google_Colaboratory_backup.py
Created June 15, 2018 20:38 — forked from rdinse/Google_Colaboratory_backup.py
Simple Google Drive backup script with automatic authentication for Google Colaboratory (Python 3)
# Simple Google Drive backup script with automatic authentication
# for Google Colaboratory (Python 3)
# Instructions:
# 1. Run this cell and authenticate via the link and text box.
# 2. Copy the JSON output below this cell into the `mycreds_file_contents`
# variable. Authentication will occur automatically from now on.
# 3. Create a new folder in Google Drive and copy the ID of this folder
# from the URL bar to the `folder_id` variable.
# 4. Specify the directory to be backed up in `dir_to_backup`.
@ymesika
ymesika / tornado.yaml
Last active September 10, 2019 08:43
Websockets Demo (Istio v0.7.1 / Istio Nightly Build)
apiVersion: v1
kind: Service
metadata:
name: tornado
labels:
app: tornado
spec:
ports:
- port: 8888
name: http
@natrim
natrim / convert.sh
Last active February 20, 2025 23:19
Simple conversion script that converts Godot html5 export to gzipped version, with decompressing wasm and pck files using pako
#!/bin/bash
### usage ./convert.sh game
## where game is baseName of the export
if [ ! "$1" ]; then
read -p 'Game name: ' game
else
game="$1"
fi
@Neisoweli
Neisoweli / REPORT.md
Last active June 4, 2020 15:51
Lab15.Report

Laboratory work XV

Данная лабораторная работа посвещена изучению инструментов статического и динамического анализа кода

$ open http://cppcheck.sourceforge.net

Tasks

  • 1. Ознакомиться со ссылками учебного материала
@Neisoweli
Neisoweli / REPORT.md
Last active June 5, 2020 08:40
Lab12.Report

Laboratory work XII Build Status

Данная лабораторная работа посвещена изучению специализированного текстового редактора Vim

$ open https://ru.wikipedia.org/wiki/Vim

Tasks

@Neisoweli
Neisoweli / REPORT.md
Last active June 5, 2020 08:41
Lab11.Report

Laboratory work XI Build Status

Данная лабораторная работа посвещена изучению инструментов отладки на примере lldb

$ open https://lldb.llvm.org/tutorial.html

Tasks

@Neisoweli
Neisoweli / REPORT.md
Last active June 5, 2020 08:41
Lab09.Report

Laboratory work IX Build Status

Данная лабораторная работа посвещена изучению процесса создания пакета на примере Github Release

$ open https://help.github.com/articles/creating-releases/

Tasks

@jmound
jmound / refresh.sh
Last active August 7, 2023 10:33
Bash function to refresh all pods in all deployments by namespace
# based on the "patch deployment" strategy in this comment:
# https://github.com/kubernetes/kubernetes/issues/13488#issuecomment-372532659
# requires jq
# $1 is a valid namespace
function refresh-all-pods() {
echo
DEPLOYMENT_LIST=$(kubectl -n $1 get deployment -o json|jq -r .items[].metadata.name)
echo "Refreshing pods in all Deployments"
for deployment_name in $DEPLOYMENT_LIST ; do
@Neisoweli
Neisoweli / REPORT.md
Last active June 5, 2020 08:42
Lab08.Report

Laboratory work VIII Build Status

Данная лабораторная работа посвещена изучению средств пакетирования на примере CPack

$ open https://cmake.org/Wiki/CMake:CPackPackageGenerators

Tasks