Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3126 | macOS | 0x6890 | F8 | E0 |
| 3126 | Win x86 | 0xBA11D | 1A | 2A |
| { | |
| "workbench.tree.indent": 32, | |
| "extensions.ignoreRecommendations": true, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| /* --------------------------------------------------------------------------- */ | |
| /* NOTEPAD.EXE MODE ENGAGED */ | |
| "update.mode": "manual", | |
| "workbench.colorTheme": "Notepad", | |
| "workbench.iconTheme": "vscode-icons", |
| #define WIN32_LEAN_AND_MEAN // just say no to MFC | |
| #define INIT_GUID | |
| #include "hge.h" | |
| #include <hgesprite.h> | |
| #include <hgefont.h> | |
| #include <hgecolor.h> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Chris Thomas</string> | |
| <key>name</key> | |
| <string>Mac Classic</string> | |
| <key>settings</key> | |
| <array> |
| root = true | |
| # https://docs.microsoft.com/fr-fr/visualstudio/ide/editorconfig-code-style-settings-reference#formatting-conventions | |
| [*.cs] | |
| csharp_new_line_before_open_brace = none:error | |
| csharp_new_line_before_else = false | |
| csharp_new_line_before_catch = false | |
| csharp_new_line_before_finally = false |
Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3126 | macOS | 0x6890 | F8 | E0 |
| 3126 | Win x86 | 0xBA11D | 1A | 2A |
| " Vim color file | |
| " Maintainer: Maria | |
| " Last Change: 2013 Dec | |
| " This is a Vim dark color scheme with black background and green foreground colors | |
| hi clear | |
| if version > 580 | |
| " no guarantees for version 5.8 and below, but this makes it stop |
| function! GotoDefinition() | |
| let selectedStuff = s:get_visual_selection() | |
| if strlen(selectedStuff)>0 | |
| exe 'vimgrep /' . selectedStuff . '/ **/*' | |
| exe 'copen' | |
| elseif | |
| echo 'Nothing selected. Aborting.' | |
| endif | |
| endfunction GotoDefinition |
| set nocompatible | |
| filetype off | |
| "Bundles | |
| set rtp+=~/.vim/bundle/vundle | |
| call vundle#rc() | |
| Bundle 'gmarik/vundle' | |
| Bundle 'embear/vim-localvimrc' |
| package com.example; | |
| import org.json.JSONArray; | |
| import org.json.JSONException; | |
| import org.json.JSONObject; | |
| import org.json.JSONTokener; | |
| import org.springframework.web.bind.annotation.*; | |
| import java.io.IOException; | |
| import java.net.URL; | |
| import java.util.ArrayList; |
| package com.example; | |
| import org.springframework.web.bind.annotation.RequestMethod; | |
| import org.springframework.web.bind.annotation.RestController; | |
| import se.walkercrou.places.*; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| import org.springframework.web.bind.annotation.RequestParam; | |
| import se.walkercrou.places.exception.NoResultsFoundException; | |
| import java.util.List; | |
| import java.util.Map; |