View rotate_list.java
/** | |
* Definition for singly-linked list. | |
* public class ListNode { | |
* int val; | |
* ListNode next; | |
* ListNode(int x) { val = x; } | |
* } | |
*/ | |
class Solution { | |
public ListNode rotateRight(ListNode head, int k) { |
View machine.js
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
View Redmine ERP Ticket Links
// ==UserScript== | |
// @name Redmine ERP Ticket Links | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Dennis Pratter | |
// @match https://redmine.nousdigital.com/wktime/* | |
// @match https://redmine.nousdigital.net/wktime/* | |
// @match https://redmine.nousguide.com/wktime/* | |
// @grant none |
View The best Classifier with Machine learning.ipynb

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Potential Maintainers
Maintainers: | |
oxalica: swapview, swapview, swapview |
View Changed Paths
aarch64-linux swapview | |
i686-linux swapview | |
x86_64-linux swapview |
View launcherTemplate.gradle
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN | |
apply plugin: 'com.android.application' | |
dependencies { | |
implementation project(':unityLibrary') | |
implementation 'com.android.support:multidex:1.0.1' | |
} | |
android { |
View storage_class_yaml_code
apiVersion: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: aws-efs | |
provisioner: satyam/aws-efs | |
--- | |
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: efs-joomla |
View Chatbot.py
from nltk.chat.util import Chat , reflections | |
pairs = [ | |
['Hi my name is (.*)', ['Hi %1']], | |
['how are you ? ' , [ ' Thanks for asking I am fine '] ], | |
['what is your name ?' , ['My name is smokey']], | |
['How is the weather?' , ['Weather is nice out here ']], | |
['how do you know about (.*)' , ['i have heard %1 is nice this time of year']], | |
['can you help with something?' , ['Yes , i can help you with anything i am computer']], | |
['Okay , then take care' , ['You too ....... Byeeee.......']] |
View mainTemplate.gradle
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN | |
// Android Resolver Repos Start | |
([rootProject] + (rootProject.subprojects as List)).each { | |
ext { | |
it.setProperty("android.useAndroidX", true) | |
it.setProperty("android.enableJetifier", true) | |
} | |
} | |
([rootProject] + (rootProject.subprojects as List)).each { project -> |
NewerOlder