- Download the perforce visual tool suite from here: http://www.perforce.com/perforce/downloads/index.html
- Copy only the p4merge.app file into your /Applications/ directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* List of ES3 Incompatibilities introduced by ES5. | |
* | |
*/ | |
/* | |
* From Annex E: | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# Script to check for new GOG Connect games | |
# | |
# Configure your system for sending emails first. I used: | |
# https://www.howtoforge.com/tutorial/configure-postfix-to-use-gmail-as-a-mail-relay/ | |
import requests | |
import browsercookie | |
import json | |
import smtplib | |
from email.mime.text import MIMEText |
Due to so many misinformation, false claims and confusion that goes around the web I've decided to make this quick comparison of all most known backup enabling tools, hackable vita firmwares and which one you should be using and why.
Date of last update: 13.01.2020
NoNpDRM Rips | Vitamin / MaiDumpTool Dumps | |
---|---|---|
All original files untouched | ✅ | ❌ |
Support Retail DLCs | ✅ | ❌ |
Support Ripped (NoNpDRM) DLCs | ✅ | ❌ |
Support Dumped (Vitamin/Mai) DLCs | ✅1 | ✅ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "core:fmt" | |
import "core:math" | |
import "core:math/linalg" | |
import rl "vendor:raylib" | |
main :: proc() { | |
rl.SetConfigFlags({.VSYNC_HINT, .WINDOW_RESIZABLE, .MSAA_4X_HINT}) | |
rl.InitWindow(800, 600, "collision") |