Skip to content

Instantly share code, notes, and snippets.

View reverland's full-sized avatar
🌴
get interested in binary analysis

Liu Yuyang reverland

🌴
get interested in binary analysis
View GitHub Profile
@jameskeane
jameskeane / vmx
Last active July 17, 2022 08:20
VMWare Fusion Mac -> Linux horizontal scroll fix
mouse.vusb.enable = "TRUE"
mouse.vusb.useBasicMouse = "FALSE"
mks.mouse.pixelScrollSensitivity = "1"
@BeauBouchard
BeauBouchard / Grandtheftauto5-linux.md
Last active August 20, 2024 13:33
How to install Grand Theft Auto V on Linux (Ubuntu x64 14.04) using wine.

How to install Grand Theft Auto V on Linux (Ubuntu x64 14.04) using wine.

Date Completed: Not done yet ~~ April 23rd 2015

My Test System

  • Video Card: Nvidia GTX 465 (lol right? Game runs shitty)
  • Driver: tested on 331.38, works on 331.38+
  • OS: Ubuntu x64 14.04
  • POL: I used Play on linux 4, I assume most of the capabilities are in winetricks
  • Wine: wine-staging Sun, 19 Apr 2015 version 1.7.41 x64 bit
anonymous
anonymous / id_rsa.md
Created February 12, 2014 07:37

lyy <lyy@arch>

Your id_rsa.pub is:

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCxyyzbu1zPKdHbgGK6qVJ/400K1o+Ua2mFjpN6+fNUqhgveEHwwcWjRPV+GPzKvb4oQDR66YCt0iwAkknEEJxl3HzMUsuPCYKtrBqLPxJMstRGoQuBrpbxkWByaBloDXqo0XVMIc2/OiO2gsCuwWpvQ+ah8YWEfAlqE6la8VfDjHF2loUcGDGJK0ukvCPtMGASECXGmVyJLrbKOXVt74EYarYCb/cG0TrC214lhs2BPg9HgdvE9/6soTYlXdsEtJ4n+wzY9mid8CF3pjYF3XNCmPgmy/H0CHJiAc6eWtXV84OS6iZyvGHDx+YWJQjCGTZyjFCKabJbRMmdTrKGhS8H lyy@arch

Your id_rsa is:

No worry. I'm good so I'll just keep you safe.

@luw2007
luw2007 / 词性标记.md
Last active June 11, 2025 07:59
词性标记: 包含 ICTPOS3.0词性标记集、ICTCLAS 汉语词性标注集、jieba 字典中出现的词性、simhash 中可以忽略的部分词性

词的分类

  • 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
  • 虚词:副词、介词、连词、助词、拟声词、叹词。

ICTPOS3.0词性标记集

n 名词

nr 人名

@bonsaiviking
bonsaiviking / aes.py
Last active February 7, 2025 03:12
A simple/simplistic implementation of AES in pure Python.
#My AES implementation
# By Daniel Miller
def xor(s1, s2):
return tuple(a^b for a,b in zip(s1, s2))
class AES(object):
class __metaclass__(type):
def __init__(cls, name, bases, classdict):
cls.Gmul = {}
@felipeborges
felipeborges / WebkitSample.js
Last active August 26, 2024 14:23
JavaScript (Gjs)(GTK3) Webkit Sample. Run: "gjs WebkitSample.js"
// Updated in August 2022
imports.gi.versions.Gtk = '3.0';
const { Gtk, GObject, WebKit2: WebKit } = imports.gi;
Gtk.init(null);
const WebBrowser = GObject.registerClass(
class WebBrowser extends Gtk.Application {
@jacob414
jacob414 / repr.coffee
Created December 9, 2010 11:17
Quick and dirty Javascript repr() function using CoffeeScript
repr = (o, depth=0, max=2) ->
if depth > max
'<..>'
else
switch typeof o
when 'string' then "\"#{o.replace /"/g, '\\"'}\""
when 'function' then 'function'
when 'object'
if o is null then 'null'
if _.isArray o