Skip to content

Instantly share code, notes, and snippets.

@emiremen
emiremen / UnityOdev1.cs
Created August 25, 2023 19:52
TechCareer.net ilk ödev.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DersScript : MonoBehaviour
{
int puan;
float mesafe;
string mesaj;
@emiremen
emiremen / AutoFollowInsta.js
Last active December 28, 2020 15:02
Instagram AutoFollow with JavaScript
setInterval(function onDkdaBirCalis(){
var sayi = 0;
/* Gonderi acma */
setTimeout(function(){
var gonderi = document.querySelectorAll(".NUiEW")[sayi].children[0];
gonderi.click();
/* Begenenleri acma */
setTimeout(function(){
@emiremen
emiremen / Rainbow-Line.html
Created June 1, 2020 22:23
Rainbow Line With HTML/CSS
<html>
<head><title>Rainbow Line</title>
<style type="text/css">*{margin: 0;padding: 0;}
.rainbow{
width: 100%;
height: 8px;
background-repeat:repeat-x;
background: linear-gradient(to right,
#eb5252,
#f78f2f,
@emiremen
emiremen / Animated-Rainbow-Line.html
Created June 1, 2020 22:04
Animated Rainbow Line With HTML/CSS
<html>
<head><title>Rainbow Line</title>
<style type="text/css">*{margin: 0;padding: 0;}
.rainbow{
width: 100%;
height: 8px;
background-repeat:repeat-x;
background: linear-gradient(to right,
#eb5252,
#f78f2f,
@emiremen
emiremen / CatchKenny.java
Last active May 12, 2024 17:37
Android Studio Catch Kenny oyunu
public class MainActivity extends AppCompatActivity {
ImageView myImg;
TextView textView, textView2;
int score;
int screenX, screenY;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);