Skip to content

Instantly share code, notes, and snippets.

View ajsb85's full-sized avatar
🖼️
Engaging cognitive processors...

Alexander Salas Bastidas ajsb85

🖼️
Engaging cognitive processors...
View GitHub Profile
@teclib-bot
teclib-bot / stylesheet.css
Last active September 25, 2017 21:11
Stylesheet for Javadoc documentation
/* Javadoc style sheet */
/*
Overall document style
*/
footer h4 {
font-size: 24px;
}
@agentcooper
agentcooper / 0.README.md
Last active May 15, 2025 05:56
Telegram chat backup/export

How to use

  1. Login to https://web.telegram.org
  2. Copy-paste contents of telegram-scripts.js into JS console
  3. Run showContacts() to get the list of contacts with ids
  4. Run saveChat(userId) where userId is the id from step 3

Process can take a while, check console for progress. Occasionall FLOOD_WAIT errors are expected. Once done, browser will download the JSON file.

Motivation

Keybase proof

I hereby claim:

  • I am naylin15 on github.
  • I am naylin15 (https://keybase.io/naylin15) on keybase.
  • I have a public key ASD5sW0uWl9sB4H1rwmg5ehQpiChkRQu8xHzZr2O-6rPyAo

To claim this, I am signing this object:

@iamsaso
iamsaso / index.html
Last active September 21, 2022 11:04
GraphiQL with JWT
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 100%;
margin: 0;
width: 100%;
overflow: hidden;
}
@ajsb85
ajsb85 / inventory.xml
Created June 21, 2017 15:44
iOS Inventory
<?xml version='1.0' encoding='utf-8' standalone='yes'?>
<REQUEST>
<QUERY>INVENTORY</QUERY>
<VERSIONCLIENT>Agent_v1.0</VERSIONCLIENT>
<DEVICEID>0F895B78-6F86-46AD-A263-29273E1EBB0C</DEVICEID>
<CONTENT>
<ACCESSLOG>
<LOGDATE>2017-06-21 17:29:27</LOGDATE>
<USERID>N/A</USERID>
</ACCESSLOG>
### Keybase proof
I hereby claim:
* I am flyve-mdm-bot on github.
* I am flyvemdm (https://keybase.io/flyvemdm) on keybase.
* I have a public key whose fingerprint is 917B 2F8F DA1A B38A B2F3 3CD8 F26C 3C07 5DB8 3D47
To claim this, I am signing this object:
@CodeMyUI
CodeMyUI / index.html
Created May 18, 2017 23:46
Windows Fluent Design Calendar
<main class="calendar-contain">
<section class="title-bar">
<button class="title-bar__burger">
<span class="burger__lines">Toggle Menu</span>
</button>
<span class="title-bar__year">
Calendar > May 2017
</span>
<span class="title-bar__month">
@moemoe89
moemoe89 / .gitlab-ci.yml
Created May 2, 2017 03:13
Example Gitlab CI Setup for Go-Lang
image: golang:1.8.1
variables:
BIN_NAME: go-practice-ci
ARTIFACTS_DIR: artifacts
GO_PROJECT: gitlab.com/go-practice-ci
stages:
- build
- test
@Unitech
Unitech / cat proc-cpuinfo
Last active April 11, 2019 09:44
Benchmark PM2 vs HAPROXY vs NGINX - Simple HTTP Node.js application
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 61
model name : Intel(R) Core(TM) i5-5200U CPU @ 2.20GHz
stepping : 4
microcode : 0x23
cpu MHz : 2457.468
cache size : 3072 KB
@StefanScherer
StefanScherer / Dockerfile
Created April 28, 2017 19:55
Build Golang for Windows in a Windows container
FROM golang:1.8-windowsservercore
WORKDIR /compile
RUN git clone https://github.com/golang/go
WORKDIR /compile/go/src
ENV GOROOT_BOOTSTRAP C:/go
ENV CGO_ENABLED 0
RUN cmd /C all.bat
RUN cp ..\bin\*.exe \go\bin