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
import java.lang.reflect.Method; | |
public class SettersFiller { | |
public static void main(String[] args) { | |
String adress = "com.example.ClassToSet"; | |
classWrap(adress, 0); | |
} | |
public static int methodIndex = 0; |
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
# initialization file (not found) |
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
// ==UserScript== | |
// @name phpmyadmin refresher | |
// @namespace mu | |
// @include http*/phpmyadmin/* | |
// @include http*/oozoos3o/* | |
// @include http*/index.php?db=* | |
// @version 1.1 | |
// @grant none | |
// @description refresh phpmyadmin tables every defined time | |
// ==/UserScript== |
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
Command Palette | ctrl-shift-p; | |
---|---|---|
Open File | ctrl-p; | |
End line with semicolon | ctrl+semicolon; | |
End line with comma | ctrl+comma; | |
End new line | ctrl-Enter; | |
Easy Block | Ctrl+B; | |
Toggle Developer Tools | ctrl-shift-i; | |
Duplicate Lines | ctrl+shift+d; | |
Delete Line | ctrl+shift+k; | |
Move Line Up | ctrl-up; |
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
{ | |
"version": "0.1.0", | |
"command": "tsc", | |
"isShellCommand": true, | |
"args": [ | |
"-w", "-p", "." | |
], | |
"showOutput": "silent", | |
"isBackground":true, | |
"problemMatcher":"$tsc-watch" |
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
// ==UserScript== | |
// @name Piłka nożna męska i hokej na TVP sport | |
// @namespace https://gist.github.com/senpl | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Michał Urbanek | |
// @match https://sport.tvp.pl/program-tv* | |
// @grant none | |
// ==/UserScript== |
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
https://docs.google.com/presentation/d/1OJcZv7KjOg5fNAHbzOs0jZ2Rmk-824xHOBpk6Pxq6QQ/edit?usp=sharing |
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
Odejmij od zmiennej roznica wartość 20.3 wynik wypisz na konsoli | |
funkcję odejmującą 2 wyrazy, funkcja pobiera 2 parametry, nazywa sie dodawanieDwochLiczb i od 2giego parametru odejmuje wartość 1go parametru. | |
Napisz funkcję, która gdy dostaje łańcuch “hej” odpowiada “ho” , a na wszystkie inne string “nie wiem co odpowiedzieć”. | |
Co robi operator % | |
Co robi operator += | |
Napisz funkcję która pomnoży przez siebie 3 parametry. | |
Czym się różni deklaracja zmiennej od jej definicji | |
Jakiego słowa użyć by zwrócić wartość z funkcji | |
Zdefiniuj poprawnie funkcję o nazwie “różnica” która przyjmuje 3 parametry, z czego 3ci domyślny. | |
Napisz funkcję supFunc która jeśli dostanie parametr parametru to zwróci łańcuch znaków “ok”, a jeśli nie dostanie parametru to wypisze na konsolę “brak parametru” i zwróci pusty string “”. |
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
1. napisz funkcję, która w parametrze przyjmuje słowo i zamienia kolejne litery "abc" ma się zamienić na "cba" | |
2. napisz funkcję która znajdzie na którym miejscu w ciągu znaków jest kropka | |
3. napisz funkcję, która zwróci dzisiejszą datę w formacie amerykańskim i polskim, w zależności od parametru "us" lub "pl" | |
4. napisz funkcję, która oblicza ile jeszcze dni do wakacji (około, nie musi być bardzo dokładna) | |
5. napisz funkcję, która przyjmuje tablicę i wypisuje jej zawartość na konsoli | |
6. napisz funkcję, która przyjmuje 2 parametry, 1 to imie, drugi to tytuł, a jeśli tytuł =1 to niech wypisuje pan, jeśli tytuł=2 to Dr , jeśli tutuł==3 to wypisuje Profesor na konsoli | |
7. napisz funkcję, która przyjmuje w parametrze tablicę i obraca jej klucze w odwrotnej kolejności, czyli pierwszy element ma być ostatnim itd. | |
8. napisać funkcję, która przyjmie obiekt, i wypisze wszystkie jego klucze, oraz wartości | |
9. napisać funkcję która zabierze ciąg znaków w formacie nazwa.rozszerzenie i to co po kropce zamieni na .fun wynik w |
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
pobieramy | |
git clone https://github.com/fernandod1/Form-insert-mysql.git | |
przekopiujemy do bazy test zawartość tego pliku, powinno się poprawnie wykonać. | |
https://github.com/fernandod1/Form-insert-mysql/blob/master/table_form.sql | |
ustawiamy w pliku form.php | |
$mysqlserverhost = "localhost:3306"; | |
$database_name = "test"; |
OlderNewer