This file contains 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
# 2023-11-27 MIT LICENSE | |
Here's the open source version of my ChatGPT game MonkeyIslandAmsterdam.com. | |
It's an unofficial image+text-based adventure game edition of Monkey Island in Amsterdam, my home town. | |
Please use it however you want. It'd be nice to see more ChatGPT-based games appear from this. If you get inspired by it, please link back to my X https://x.com/levelsio or this Gist so more people can do the same! | |
Send me your ChatGPT text adventure game on X, I'd love to try it! |
This file contains 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 com.example.app | |
import android.app.Application | |
import android.content.Context | |
import androidx.lifecycle.AndroidViewModel | |
import androidx.lifecycle.SavedStateHandle | |
import androidx.lifecycle.ViewModel | |
import androidx.lifecycle.ViewModelProvider | |
import androidx.lifecycle.ViewModelProvider.AndroidViewModelFactory.Companion.APPLICATION_KEY | |
import androidx.lifecycle.createSavedStateHandle |
This file contains 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
From f07ca2a26dcb0cc797dcc6fc0d2d4f16b89c481e Mon Sep 17 00:00:00 2001 | |
From: Pierre-Hugues Husson <[email protected]> | |
Date: Mon, 14 Mar 2022 09:09:28 -0400 | |
Subject: [PATCH] Add a rickroll button in heads-up notification to rickroll | |
caller | |
Change-Id: Ibe72535fb3e93f69a531723dc96ede05663ee251 | |
--- | |
assets/rick.webm | Bin 0 -> 1232413 bytes | |
.../NotificationBroadcastReceiver.java | 145 ++++++++++++++++++ |
This file contains 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 com.yrezgui.videoplayer | |
import android.annotation.SuppressLint | |
import android.content.Context | |
import android.os.Build.VERSION | |
import android.os.Build.VERSION_CODES | |
import android.os.Environment | |
import android.os.storage.StorageManager | |
import android.os.storage.StorageVolume | |
import androidx.annotation.RequiresApi |
This file contains 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 com.android.samples.fileprovidertest | |
import android.os.Bundle | |
import androidx.activity.viewModels | |
import androidx.appcompat.app.AppCompatActivity | |
import com.android.samples.fileprovidertest.databinding.ActivityMainBinding | |
import kotlinx.coroutines.CoroutineScope | |
import kotlinx.coroutines.Dispatchers | |
import kotlinx.coroutines.launch | |
import okhttp3.OkHttpClient |
This file contains 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
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.text.SpannableString; | |
import android.text.Spanned; | |
import android.text.method.LinkMovementMethod; | |
import android.text.style.ClickableSpan; | |
import android.view.View; | |
import android.widget.TextView; | |
import android.widget.Toast; | |
public class MainActivity extends AppCompatActivity { |
This file contains 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
# 🤖Android 11 WiFi debugging | |
# Connect your device to the same WiFi as your computer | |
# Enable WiFi debugging in developer settings of your device | |
# Disable USB debugging if it's already enabled | |
# Plug your device to computer via USB | |
# You may have to kill adb server | |
adb kill-server | |
adb tcpip 5555 |
This file contains 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
[ | |
{ | |
"id": 1, | |
"name": "Lucas" | |
}, | |
{ | |
"id": 2, | |
"name": "Jérôme" | |
}, | |
{ |
This file contains 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
import React, { Component } from 'react' | |
import classnames from 'classnames' | |
import TaskItem from './TaskItem' | |
import { addTask } from './actions/tasks-actions' | |
import { connect } from 'react-redux' | |
class TasksList extends Component { | |
constructor(props) { | |
super(props) |
This file contains 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
# Setting PATH for Python 2.7 | |
# The orginal version is saved in .bash_profile.pysave | |
export PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}" | |
export NVM_DIR="/Users/yacinerezgui/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm | |
export PATH=/opt/local/bin:/opt/local/sbin:${PATH} | |
export PS1="\W \$ " |
NewerOlder